This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Lucky guys : two people ascending to hapiness, the worst ! | |
- Looked the wrong way: falling in the endless pit while searching for a potential lover | |
- Lack of priorities : falling in the endless pit while already in love | |
- Good bye, my love: one of two mutual lovers falls in the endless pit | |
- Love triangle : someones loves someone who loves someone else who loves the first | |
- The third wheel : someone loves one of the two people ascending to hapiness | |
- Schadenfreude : someone loves someone who loves someone else who dies, well deserved ! | |
- The enemy of my enemy : someone loves someone who loves someone else who loves someone else who dies | |
- Forever alone : the last one alive |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
class DotOp { | |
}; | |
class LhsDotOp { | |
public: | |
int value; | |
explicit LhsDotOp(int value) : value(value) {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
echo '****** Installing BigQuery ******' | |
sudo easy_install bigquery | |
echo '****** Installing gcutil ******' | |
curl https://google-compute-engine-tools.googlecode.com/files/gcutil-1.7.1.tar.gz | tar xvzpf - | |
echo "export PATH=\${PATH}:${PWD}/gcutil-1.7.1" >> ~/.bash_profile | |
source ~/.bash_profile | |
gcutil help | |
echo '****** Installing gsutil ******' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.*; | |
import java.net.*; | |
import java.util.*; | |
import com.sun.net.httpserver.*; | |
public class Reddit implements Serializable { | |
public String title; | |
public URL url; | |
public int rating; | |
public int id; | |
public static String htmlentities(String s) { |