I hereby claim:
- I am imryan on github.
- I am imryan (https://keybase.io/imryan) on keybase.
- I have a public key whose fingerprint is 6FCB A25E AABD B463 C0BB 04FD 3688 04C6 B8E1 9A08
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
// Type | |
let cht = "qr" | |
// Size | |
let chs = "180x180" | |
// Transaction message | |
let chl = "ethereum:\(walletAddress)?amount=\(amount)&message=\(message)" // URL-encode | |
// Final URL |
Verifying my Blockstack ID is secured with the address 14ygJVHjdmvvCxaucHqdbXYXa87EQzY5J3 https://explorer.blockstack.org/address/14ygJVHjdmvvCxaucHqdbXYXa87EQzY5J3 |
# insomnia.py | |
# by Ryan Cohen | |
import urllib2 | |
import json | |
import sys | |
FIRST_ORDER_ID = 5521566 | |
START_ID = 5520000 | |
MULTIPLIER = 10000 |
#!/usr/bin/env ruby -w | |
class String | |
def starts_with?(prefix) | |
prefix.respond_to?(:to_str) && self[0, prefix.length] == prefix | |
end | |
end | |
HEADER_REGEX = /^#import\s+["<](.*)[">]/ |
I hereby claim:
To claim this, I am signing this object:
import java.text.NumberFormat; | |
import java.util.Locale; | |
import java.util.Scanner; | |
public class ConsoleCalc { | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
String line = sc.nextLine(); |
function greet() { | |
var sleep = require('sleep'); | |
var letters = [ "M", "E", "R", "R", "Y", " ", | |
"C", "H", "R", "I", "S", "T", "M", "A", "S" ]; | |
for (var i = 0; i < letters.length; i++) { | |
sleep.usleep(100900); | |
process.stdout.write(letters[i] + " "); | |
} | |
} |
import ctypes | |
def eject(): | |
opens = 0 | |
closes = 0 | |
while (True): | |
# Open disk tray | |
ctypes.windll.WINMM.mciSendStringW(u"open D: type cdaudio alias d_drive", None, 0, None) |
import java.util.*; | |
public class Coinflip { | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
int sideNo = 0; | |
String side = ""; | |
String landedSide = ""; |