I hereby claim:
- I am jurby on github.
- I am jurby (https://keybase.io/jurby) on keybase.
- I have a public key ASDYYvXpFAaMWzLvNZxgCClfYjWfQyyYlrwOTj3Ngswa0go
To claim this, I am signing this object:
| { | |
| "Logging": { | |
| "LogLevel": { | |
| "Default": "Debug", | |
| "System": "Information", | |
| "Microsoft": "Information" | |
| }, | |
| "Console": { | |
| "IncludeScopes": true, | |
| "LogLevel": { |
| export GITHUB_USER=freeCodeCamp | |
| export REPO=guide | |
| export COMMIT_HASH=6f35bcd61103545136a3ed130124da9822b761ed | |
| #export GITHUB_USER=calcsam | |
| #export REPO=gatsby-image-performance-benchmarking | |
| #export COMMIT_HASH=d2d358ed54ade68c057333666777fd56bef5ebf2 | |
| #export COMMIT_HASH=f05103a1c3e0b25ea4beafd63b6df72953d657b2 | |
| sudo -E su |
| //this is an example of background animation from my weather comparsion app | |
| //you can get early build of app at http://zowni.com | |
| //full source of background.js below | |
| const React = require('react'); | |
| const Svg = React.createFactory(require('react-native-svg').Svg); | |
| const {interpolate} = require('d3-interpolate'); | |
| //... | |
| /** |
| #r "Newtonsoft.Json" | |
| #r "System.Configuration" | |
| #r "Microsoft.IdentityModel.Clients.ActiveDirectory.dll" | |
| using System.Net; | |
| using System.Configuration; | |
| using System.Security.Claims; | |
| using System.Net.Http.Headers; | |
| using Newtonsoft.Json; | |
| using Microsoft.IdentityModel.Clients.ActiveDirectory; |
| nginx/ | |
| !nginx/.gitkeep | |
| !nginx/logs/.gitkeep | |
| src/ | |
| tmp/ |
| FROM golang:1.6.2 | |
| COPY . /go | |
| RUN go get github.com/nats-io/nats | |
| RUN go build api-server.go | |
| EXPOSE 8080 | |
| ENTRYPOINT ["/go/api-server"] |
I hereby claim:
To claim this, I am signing this object:
| /* | |
| * Copyright (c) 2011 Berk D. Demir <bdd@mindcast.org> | |
| * | |
| * Permission to use, copy, modify, and distribute this software for any | |
| * purpose with or without fee is hereby granted, provided that the above | |
| * copyright notice and this permission notice appear in all copies. | |
| * | |
| * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
| * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
| * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| /* | |
| get SSH.NET (BSD License: http://sshnet.codeplex.com/license) | |
| with NuGet: | |
| >Install-Package SSH.NET -Version 2013.4.7 | |
| or just get the dll from here: http://j.mp/sshNet | |
| */ | |
| using System; |
| public RetailStreamHandler(IDocumentRepository<ShoppingCart> cartRepository) | |
| { | |
| _cartRepository = cartRepository; | |
| Get["/cart"] = x => GetListing(); | |
| Post["/cart"] = x => PostNewShoppingCart(Request.Body.FromJson<ShoppingCartForm>()); | |
| Get["/cart/{id}"] = x => GetById(x.id); | |
| } | |
| [RequiresAuthentication] | |
| public virtual Response PostNewShippingCart(ShoppingCartForm form) |