Skip to content
#

beta

Here are 516 public repositories matching this topic...

writefreely
colin-axner
colin-axner commented Oct 9, 2020

on latest develop, if I run:

go test
ERROR: 2020/10/09 16:43:21 oauth.go:148: viewOauthInit error: pretend unable to write state error
--- FAIL: TestViewOauthCallback (0.00s)
    --- FAIL: TestViewOauthCallback/success (0.00s)
        oauth_test.go:248: 
            	Error Trace:	oauth_test.go:248
            	Error:      	Received unexpected error:
            	            	/logi
calebschoepp
calebschoepp commented May 6, 2021

It would be handy if the port could be defined via flag in addition to the ATMO_HTTP_PORT env variable.

When I was deploying an application I wrote with Atmo to Heroku I had a lot of trouble with this. Heroku expects you to use an arbitrary port found in the env variable PORT. What I wanted to do was something like atmo --port $PORT. In the end I had to write a little bash script that exp

cohix
cohix commented Oct 26, 2021

Another idea, the tests could be condensed quite a bit, for example:

func TestDefaultRules(t *testing.T) {
	rules := defaultHTTPRules()

	tests := []struct {
		name string
		url  string
	}{
		{"http allowed", "http://example.com"},
		{"https allowed", "https://example.com"},
		{"IP allowed", "http://100.11.12.13"},
	}

	for _, test := range tests {
		t.Run(test.name, func(t 
0xShamil
0xShamil commented Oct 15, 2021

In the current implementation, the waiting time between two consecutive downloads is constant. A slightly better approach might be to introduce a small random jitter to change the waiting time in each download by a small margin (say 1 to 5 seconds), to make it difficult for the automation detection algorithms to kick-in.

(Apologies for not submitting a PR along with this request, I barely know

pvutov
pvutov commented Feb 8, 2021

Good first issue because no Unity-specific programming is involved.

Our unit config files allow a c-style #include directive, which lets us break them up into small reusable pieces. Example:

{
    #include "DefaultMobility",
    #include "DefaultHeloArmor",
    "LabelIcon": "D",
    "CategoryKey": "HEL",
    "Name": "AH64D Apache",
    "Price": 20,
}

ConfigReader.cs has s

cohix
cohix commented Jun 13, 2021

Something to collect multiple pods, like in cases where you need to watch multiple message types and need to keep references to multiple pods.

Something like:

pods := g.PodGroup()

pods.New().On(...)
pods.New().OnType(...)

It would still be safe since pods retains the pod object so you don't have to if you don't want to.

Python-based portfolio / stock widget which sources data from Yahoo Finance and calculates different types of Value-at-Risk (VaR) metrics and many other (ex-post) risk/return characteristics both on an individual stock and portfolio-basis, stand-alone and vs. a benchmark of choice (constructed with wxPython)

  • Updated Feb 17, 2021
  • Python
TomRhysMarshall
TomRhysMarshall commented Aug 6, 2020

Hi,

Very simple issue. When you start up HNN two windows appear ('param' and 'model schematics'), plus a little dialogue box that says 'Welcome to HNN! Default parameter file loaded. Press 'Run simulation' to display simulation output.' with a little 'run' button on it.

First time I started HNN that dialogue box opened offscreen, so I didn't know it was there. Because I didn't click 'run', n

Improve this page

Add a description, image, and links to the beta topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the beta topic, visit your repo's landing page and select "manage topics."

Learn more