Alexander Mills
Alexander Mills
is this library available from a cdn? how to download?
this should be
this should allow for `npm install -g bats` to work
this is what I get: ```bash $ bats test/src/dev/bats/a.test.sh --tap-json Bats 0.4.0 Usage: bats [-c] [-p | -t] [ ...] ``` this is what I should get: ```bash $ bats...
in the readme it says "install from source'....I don't see any other way to install this sucker besides installing from source. one thing we could do, is make this into...
looks like this is a dep of a dep in our project...when running `go run .` it's doing some go find/gets and we get: ``` cm safe push: gopkg.in/russross/blackfriday.v2: go.mod...
ORANGE
can you support Orange? thanks
Should we just do this? ```js const React = require("react-native"); const firebase = require("firebase"); // Initialize Firebase const firebaseConfig = { apiKey: "", authDomain: "", databaseURL: "", storageBucket: "", };...
I see this in the docs: ```golang // Create a new token object, specifying signing method and the claims // you would like it to contain. token := jwt.NewWithClaims(jwt.SigningMethodHS256, jwt.MapClaims{...
This used to work with an older version of jwt-go: ```golang if tokenString, err = token.SignedString(config.JwtRSAKey); err != nil { return ctr.WriteErrResponse(500, err) } ``` where our config.JwtRSAKey looked like:...