I hereby claim:
- I am charlierm on github.
- I am charlierm (https://keybase.io/charlierm) on keybase.
- I have a public key whose fingerprint is 0E4B 999A 2C98 1E90 4762 86A7 39E4 0F6C 2F18 8FCA
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
asd |
# -*- coding: utf-8 -*- | |
import requests | |
def handler(context, event): | |
return "arse candle" |
import Queue | |
import threading | |
import tinderClient | |
import json | |
import logging | |
logging.basicConfig(level=logging.DEBUG) | |
PRODUCER_THREADS = 3 | |
CONSUMER_THREADS = 10 |
import Queue | |
import threading | |
import tinderClient | |
import json | |
import logging | |
logging.basicConfig(level=logging.DEBUG) | |
PRODUCER_THREADS = 5 | |
CONSUMER_THREADS = 10 |
#include <stdio.h> | |
#include <stdlib.h> | |
struct SLNode { | |
struct SLNode *next; | |
long value; | |
}; | |
void sl_push_front(struct SLNode **list, long v){ | |
//Create new node, add the value. |
#include <iostream> | |
using namespace std; | |
class Singleton | |
{ | |
public: | |
static Singleton* getSingleton(); | |
int getValue(); | |
void setValue(int i); |
public class main{ | |
public static void main(String[] args) { | |
//WORKS | |
SingletonDemo s = SingletonDemo.getInstance(); | |
s.setValue(12); | |
//FAILS | |
SingletonDemo ss = SingletonDemo.getInstance(); | |
System.out.println(ss.getValue()); | |
} | |
} |
#include <iostream> | |
#include <cstdlib> | |
class Node | |
{ | |
public: | |
Node* next; | |
int data; | |
}; |
import java.util.Iterator; | |
public class LinkedList<T>{ | |
private Node head; | |
private int length; | |
public LinkedList(){ | |
this.length = 0; |