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:
| #include <memory> | |
| #include <string> | |
| #include <vector> | |
| #include <assert.h> | |
| using namespace std; | |
| enum Type { tEmpty, tNum, tVar, tFrac, tProd, tSum }; | |
| enum Precedence { precStart, precSum, precFrac, precAtom }; |
| extern crate mio; | |
| use mio::unix::EventedFd; | |
| use std::fs::File; | |
| use mio::{Token, PollOpt, Ready, Poll, Events}; | |
| //use mio_uds::UnixStream; | |
| use std::os::unix::io::{FromRawFd}; | |
| use std::io::{Read, Write}; |
| // | |
| // Simplify.swift | |
| // | |
| // Simplification of a 3D-polyline. | |
| // A port of https://github.com/hgoebl/simplify-java for Swift | |
| // | |
| // | |
| // The MIT License (MIT) | |
| // | |
| // Created by Lachlan Hurst on 10/02/2015. |
| require('font-awesome/css/font-awesome.css'); | |
| document.body.innerHTML = '<i class="fa fa-fw fa-question"></i>'; |
| // 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" |
| 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; | |
| } |
| --- 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 |
| 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() |
I hereby claim:
To claim this, I am signing this object:
| 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 |