I hereby claim:
- I am robertkraig on github.
- I am krob84 (https://keybase.io/krob84) on keybase.
- I have a public key ASD09TH-Q2Sk9GTgP8WYoBnS_BVGX3LcIdCpf217wi2GRwo
To claim this, I am signing this object:
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"title": "SurveyJS Library json schema", | |
"type": "object", | |
"properties": { | |
"pages": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/page" | |
} |
version: '2' | |
services: | |
api: | |
volumes: | |
- "nfsmount:${CONTAINER_DIR}" | |
volumes: | |
nfsmount: | |
driver: local | |
driver_opts: |
I hereby claim:
To claim this, I am signing this object:
FILE SPACING: | |
# double space a file | |
sed G | |
# double space a file which already has blank lines in it. Output file | |
# should contain no more than one blank line between lines of text. | |
sed '/^$/d;G' |
{ | |
"private": true, | |
"scripts": {}, | |
"dependencies": { | |
"axios": "^0.17", | |
"jquery": "^3.2", | |
"lodash": "^4.17.4", | |
"puppeteer": "^1.0.0", | |
"command-line-args": "^5.0.1", | |
"command-line-usage": "^4.1.0" |
for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr" $branch | head -n 1` \\t$branch; done | sort -r |
rebase
vs merge
).rebase
vs merge
)reset
vs checkout
vs revert
)git rev-parse
)pull
vs fetch
)stash
vs branch
)reset
vs checkout
vs revert
)git reset
vs git rm --cached
)// MIT License - Copyright (c) 2016 Can Güney Aksakalli | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Net.Sockets; | |
using System.Net; | |
using System.IO; | |
using System.Threading; |
using System.Linq; | |
using System.Net; | |
using System.Net.Http; | |
using System.Threading.Tasks; | |
using System.Collections.Specialized; | |
class DataService { | |
public NameValueCollection Query { get; set; } | |
public string Endpoint { get; set; } | |
public FormUrlEncodedContent QueryEncoded { |