I hereby claim:
- I am cshtdd on github.
- I am camilin87 (https://keybase.io/camilin87) on keybase.
- I have a public key whose fingerprint is E96A FDA6 5B38 4269 52EB EFC6 22E2 BE7F 4BBE 3543
To claim this, I am signing this object:
# Binary tree | |
# 1. value (int) | |
# 2. left node (Tree or nil) | |
# 3. right node (Tree or nil) | |
class Tree | |
attr_accessor :value | |
attr_accessor :left_node | |
attr_accessor :right_node |
#!/bin/ruby | |
class Node | |
attr_accessor :value | |
attr_accessor :left | |
attr_accessor :right | |
def initialize(value) | |
self.value = value | |
end |
/* | |
# This is a sample C program | |
# It proves what happens when referencing the | |
# memory address of a stack variable declared inside a function | |
# compile and run the program | |
gcc -o program1 p.c && ./program1 | |
*/ |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# desired java versions | |
JAVA_VERSION_11=11.0.1-open | |
JAVA_VERSION_10=10.0.2-open | |
JAVA_VERSION_9=9.0.4-open | |
JAVA_VERSION_8=8.0.192-zulu | |
#!/bin/bash | |
echo "Start Export Process" | |
echo "Log into Keybase..." | |
keybase login | |
echo "Exporting your PGP keys..." | |
keybase pgp export -o keybase.public.key | |
keybase pgp export -s -o keybase.private.key |
I hereby claim:
To claim this, I am signing this object:
//paste the contents of this file on a scala console and inspect the results | |
abstract class Token | |
case class TNum(n: Double) extends Token | |
case class TOpenP() extends Token | |
case class TCloseP() extends Token | |
case class TSum() extends Token | |
case class TDiff() extends Token | |
case class TMult() extends Token | |
case class TDiv() extends Token |
javascript: | |
var affiliateId = "YOUR_AFFILIATE_ID"; | |
var l = window.location.href; | |
var urlPieces = l.split("/"); | |
var productId = getProductId("dp"); | |
if (!productId){ | |
productId = getProductId("product"); | |
} |
/* | |
loop-sample.cpp | |
*/ | |
#include <iostream> | |
using namespace std; | |
/* | |
# Build with the following command |