This file contains hidden or 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 <math.h> | |
| #include <iostream> | |
| #include <string> | |
| #include <sstream> | |
| // Written by Owen O'Malley ([email protected]) | |
| // compile with: g++ -O sqrt.cc -lcln -lm | |
| #define WANT_OBFUSCATING_OPERATORS | |
| #include <cln/integer.h> |
This file contains hidden or 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
| create table github ( | |
| actor: string, | |
| actor_attributes: struct < | |
| blog: string, | |
| company: string, | |
| email: string, | |
| gravatar_id: binary, | |
| location: string, | |
| login: string, | |
| name: string, |
This file contains hidden or 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/python | |
| import base64 | |
| import hmac | |
| import hashlib | |
| import httplib | |
| import json | |
| import random | |
| import string | |
| import sys |
This file contains hidden or 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
| diff --git src/examples/org/apache/hadoop/examples/Sort.java src/examples/org/apache/hadoop/examples/Sort.java | |
| index a028009..40c7647 100644 | |
| --- src/examples/org/apache/hadoop/examples/Sort.java | |
| +++ src/examples/org/apache/hadoop/examples/Sort.java | |
| @@ -20,13 +20,18 @@ package org.apache.hadoop.examples; | |
| import java.io.IOException; | |
| import java.net.URI; | |
| -import java.util.*; | |
| +import java.util.ArrayList; |
NewerOlder