I hereby claim:
- I am BaconSoap on github.
- I am andrewvarnerin (https://keybase.io/andrewvarnerin) on keybase.
- I have a public key whose fingerprint is 578C 95A7 81BD 8474 0BCC A4B9 1B72 847E 379F 939C
To claim this, I am signing this object:
| # Javascript Node CircleCI 2.0 configuration file | |
| # | |
| # Check https://circleci.com/docs/2.0/language-javascript/ for more details | |
| # | |
| version: 2 | |
| jobs: | |
| build-job: | |
| docker: | |
| - image: circleci/node:8.9.3 |
| { | |
| "id": "1a02b4f0f200cb1788de31d993727f287da39639", | |
| "tree_id": "0aa0b6187c1298edca0a6d67b23b43e0c6f8f43c", | |
| "distinct": true, | |
| "message": "fix travis again", | |
| "timestamp": "2017-09-17T16:35:36-04:00", | |
| "url": "https://github.com/BaconSoap/branch-destroyer/commit/1a02b4f0f200cb1788de31d993727f287da39639", | |
| "author": { | |
| "name": "Andrew Varnerin", | |
| "email": "[email protected]", |
| public void ConfigureAuth(IAppBuilder app) | |
| { | |
| app.SetDefaultSignInAsAuthenticationType(CookieAuthenticationDefaults.AuthenticationType); | |
| app.UseCookieAuthentication(new CookieAuthenticationOptions | |
| { | |
| CookieManager = new SystemWebChunkingCookieManager() | |
| }); | |
| var authenticationOptions = new OpenIdConnectAuthenticationNotifications(); |
| import * as React from 'react'; | |
| import { connect } from 'react-redux'; | |
| import { IAppState } from '../IAppState'; | |
| import { doThing } from './reducer' | |
| let mapDispatchToProps = { | |
| doThing | |
| }; | |
| interface IExampleComponentProps { |
| (function(){ | |
| var map; | |
| var nextMarkerNumber = 1; | |
| var catImg = '<img src="http://thecatapi.com/api/images/get?format=src&type=png&size=small">'; | |
| function init() { | |
| // create a new map with no base layer | |
| map = new L.Map("map", { | |
| center: new L.LatLng(42.3964631, -71.1205171), | |
| zoom: 16 |
| (function(){ | |
| var map; | |
| var catImg = '<img src="http://thecatapi.com/api/images/get?format=src&type=png&size=small">'; | |
| function init() { | |
| // create a new map with no base layer | |
| map = new L.Map("map", { | |
| center: new L.LatLng(42.3964631, -71.1205171), | |
| zoom: 16 | |
| }); |
| (function(){ | |
| var map; | |
| function init() { | |
| // create a new map with no base layer | |
| map = new L.Map("map", { | |
| center: new L.LatLng(42.3964631, -71.1205171), | |
| zoom: 16 | |
| }); |
| #!/bin/sh | |
| WINDOWSHOST = "//user@guest-hostname" | |
| SHAREDIR = "~/smb" | |
| # make sure the mount dir on host exists | |
| if [ ! -d "$SHAREDIR/$1" ]; then | |
| mkdir "$SHAREDIR/$1" | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| public static void class ScriptManagerExtensions { | |
| public static RegisterJsonObject(this ScriptManager manager, Page page, Object obj, string varName) { | |
| var serialized = SERIALIZE(obj); //make this use your JSON library | |
| var createVar = "; " + varName + " = " + serialized + ";"; | |
| manager.RegisterClientScriptBlock(page, page.GetType(), varName, createVar, true); | |
| } | |
| } |