I hereby claim:
- I am auronmatrix on github.
- I am a21n (https://keybase.io/a21n) on keybase.
- I have a public key ASCmTzDUMta-F6VonB2oJiTY67L1i4-fdKyU4-VlvJgx0go
To claim this, I am signing this object:
| #!/bin/bash | |
| function recursiveCheck() { | |
| for d in * ; do | |
| if [ $d == "node_modules" ] ; then | |
| #echo "Skipping $PWD" | |
| else if [ -d "$d" ]; then | |
| cd "$d" | |
| #echo "Checking $PWD" | |
| if [ -f "package.json" ]; |
| # RS256 | |
| # private key | |
| openssl genrsa -out rs256-4096-private.rsa 4096 | |
| # public key | |
| openssl rsa -in rs256-4096-private.rsa -pubout > rs256-4096-public.pem | |
| # ES512 | |
| # private key | |
| openssl ecparam -genkey -name secp521r1 -noout -out ecdsa-p521-private.pem | |
| # public key |
| #!/bin/bash | |
| for d in */ ; do | |
| cd $d | |
| if [ -d .git ]; | |
| then | |
| TAG=$(git describe --abbrev=0 --tags 2>/dev/null) | |
| if [[ $TAG =~ ^v ]]; | |
| then | |
| echo "$d : $TAG" |
I hereby claim:
To claim this, I am signing this object:
| // Add function to set required google event parameters | |
| stopPropagation : function (e){ | |
| if(!e){ | |
| e=window.event; | |
| } | |
| e.cancelBubble=true; | |
| if(e.stopPropagation){ | |
| e.stopPropagation(); | |
| } |
| public async Task<HttpResponseMessage> Post(string name) | |
| { | |
| var response = "Success!"; | |
| var httpResponse = new HttpResponseMessage(HttpStatusCode.OK); | |
| httpResponse.Headers.ConnectionClose = true; | |
| string body = Request.Content.ReadAsStringAsync().Result; | |
| // Do your thing with the body content | |
| // Update the response |