I hereby claim:
- I am rhencke on github.
- I am rhencke (https://keybase.io/rhencke) on keybase.
- I have a public key ASCVNoQD1pz5jY0DGfeq7eAt2LoJzyOplkENi_mf1nOy9wo
To claim this, I am signing this object:
| declare @employee varchar(20) | |
| set @employee = '055320'; | |
| WITH Employees (Employee, Level, Boss, Name, BTL) AS ( | |
| SELECT | |
| 1 AS Level, | |
| NULL AS Boss, | |
| EM.Employee, | |
| EM.LastName + ', ' + EM.PreferredName AS Name, | |
| BTL.LastName + ', ' + BTL.PreferredName AS BTL |
| ~/Work/ | |
| env/src/github.com/natmeox/mess (git: github.com/natmeox/mess.git) | |
| mess/ (symlink -> env/src/github.com/natmeox/mess) | |
| main.go (package main) | |
| auth.go (package main) | |
| game.go (package main) | |
| ... | |
| templates/ | |
| index.html |
| // maybe session.local, or maybe session.option.local. Not sure. | |
| var binaryLocal = session.local.binary(function(value) { | |
| // value is the newly requested value for this. | |
| // Barring an error thrown, binaryLocal.value will equal value after the function call ends. | |
| // Do anything needed here, like proceed if client declined, or whatever. | |
| // can throw to decline support (forces false) | |
| // Forces IAC WONT, regardless of if this is a request or response. | |
| // (but tracks which it is internally.) |
| #!/bin/awk -f | |
| # use: print-pkg-build-order.awk <package> [<package>...] | |
| # prints all packages that would be built by building <package>(s), in build order. | |
| BEGIN { | |
| if (!ENVIRON["S"]) { | |
| error("$S is not set. be sure to source config: . ./config") | |
| } | |
| if (ARGC<2) { | |
| error("please provide one or more packages to print the build order for.") | |
| } |
| brew install autoconf leveldb automake python shtool glog libtool popt #maybe more | |
| prerequisites | |
| git clone https://github.com/rescrv/po6.git | |
| git clone https://github.com/rescrv/busybee.git | |
| git clone https://github.com/rescrv/Replicant.git | |
| wget http://cityhash.googlecode.com/files/cityhash-1.1.0.tar.gz | |
| a fix for os x to current MASTER: | |
| https://github.com/mreiferson/e/commit/5b6b369e8a334675c62232f58d291ea4ded243b0 |
| /// <reference path="./typings/angular2/angular2.d.ts" /> | |
| /// <reference path="./typings/node/node.d.ts" /> | |
| /// <reference path="./typings/rx/rx-lite.d.ts" /> | |
| import {Component, View, Injectable, bootstrap, ChangeDetectionStrategy} from 'angular2/angular2'; | |
| import * as proc from 'child_process'; | |
| @Injectable() | |
| class MyService { | |
| val: string; |
| diff --git BUCK BUCK | |
| index 2c6743f..c78029f 100644 | |
| --- BUCK | |
| +++ BUCK | |
| @@ -1,10 +1,22 @@ | |
| prebuilt_jar( | |
| name = 'xmlbeans', | |
| - binary_jar = ':xmlbeans_jar', | |
| + binary_jar = ':xmlbeans_fixed_jar', | |
| +) |
I hereby claim:
To claim this, I am signing this object:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <?scenebuilder-stylesheet darcula.css?> | |
| <?import java.net.URL?> | |
| <?import javafx.geometry.Insets?> | |
| <?import javafx.scene.control.*?> | |
| <?import javafx.scene.layout.*?> | |
| <?import javafx.scene.text.*?> | |
| <StackPane prefHeight="400.0" prefWidth="600.0" styleClass="root" |
| package main | |
| import ( | |
| sdk "github.com/gaia-pipeline/gosdk" | |
| ) | |
| var jobs = sdk.Jobs{ | |
| "CreateUser": sdk.Job{ | |
| Handler: CreateUser, | |
| Title: "Create DB User", |