I hereby claim:
- I am yageek on github.
- I am yageek (https://keybase.io/yageek) on keybase.
- I have a public key whose fingerprint is 6319 4D4A 44C9 B95C 17C5 7B72 8C79 AD2F BFFA 774C
To claim this, I am signing this object:
# Path to your oh-my-zsh installation. | |
export ZSH=$HOME/.oh-my-zsh | |
export LC_CTYPE=en_US.UTF-8 | |
export LC_ALL=en_US.UTF-8 | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="amuse" |
// Adapted from Cocoa Drawing Guide's "Create a CGPathRef fram an NSBezierPath Object" | |
func CGPathFromNSBezierPath(nsPath: NSBezierPath) -> CGPath! { | |
if nsPath.elementCount == 0 { | |
return nil | |
} | |
let path = CGPathCreateMutable() | |
var didClosePath = false | |
package backend | |
import ( | |
"encoding/json" | |
"net/http" | |
"time" | |
"github.com/codegangsta/negroni" | |
"github.com/gorilla/mux" |
class GetStopsOperation: GroupOperation { | |
let completion: (inner: () throws -> Void) -> Void | |
init(context: NSManagedObjectContext, completion: (inner: () throws -> Void) -> Void) { | |
self.completion = completion | |
// Line Operations | |
let getLinesCall = API.GetLinesColors |
I hereby claim:
To claim this, I am signing this object:
public final class JSONSerializationProcedure<T: JSONObject>: Procedure, ResultInjection { | |
public var requirement: PendingValue<URLRequest> = .pending | |
public var result: PendingValue<HTTPRequirement<Data>> = .pending | |
private var object: ResourceResult<T> | |
public init(object: ResourceResult<T>) { | |
self.object = object | |
super.init() |
--- stdout | |
OPT_LEVEL = Some("0") | |
TARGET = Some("armv7-linux-androideabi") | |
HOST = Some("x86_64-apple-darwin") | |
TARGET = Some("armv7-linux-androideabi") | |
TARGET = Some("armv7-linux-androideabi") | |
HOST = Some("x86_64-apple-darwin") | |
CC_armv7-linux-androideabi = None | |
CC_armv7_linux_androideabi = None | |
TARGET_CC = None |
static JavaVM * m_android_vm = nullptr; | |
extern "C" | |
jint JNICALL JNI_OnLoad(JavaVM *vm, void *) { | |
__android_log_print(ANDROID_LOG_DEBUG, "TestBluetooth", "JNI LOAD"); | |
static bool initialised = false; | |
if (initialised) { | |
return initialised; | |
} |
// To the extent possible under law, the Yawning Angel has waived all copyright | |
// and related or neighboring rights to orhttp_example, using the creative | |
// commons "cc0" public domain dedication. See LICENSE or | |
// <http://creativecommons.org/publicdomain/zero/1.0/> for full details. | |
package main | |
import ( | |
// Things needed by the actual interface. | |
"golang.org/x/net/proxy" |
require('font-awesome/css/font-awesome.css'); | |
document.body.innerHTML = '<i class="fa fa-fw fa-question"></i>'; |