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
# 1- Make sure you have node installed | |
brew install node | |
# 2- install prettyjson as a global package | |
sudo npm install -g prettyjson |
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
# Add alias to bash shell | |
echo "alias json='python -mjson.tool'" >> ~/.bashrc | |
# Add alias for zsh shell | |
echo "alias json='python -mjson.tool'" >> ~/.zshrc |
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
import java.io.InputStreamReader; | |
import java.net.URI; | |
import java.util.List; | |
import com.google.common.base.Charsets; | |
import com.google.common.collect.Lists; | |
import com.google.common.io.CharStreams; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.NameValuePair; |
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
import com.memetix.mst.language.Language; | |
import com.memetix.mst.translate.Translate; | |
public class ExampleTranslation { | |
public static void main(String[] args) throws Exception { | |
//Replace client_id and client_secret with your own. | |
Translate.setClientId("CLIENT_ID_HERE"); | |
Translate.setClientSecret("CLIENT_SECRET_HERE"); | |
// Translate an english string to spanish |
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
public class Main { | |
static class A { | |
public void foo() { | |
System.out.println("foo - A"); | |
} | |
public void bar() { | |
System.out.println("bar - A"); | |
} |
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
# Array Method for computing fibbonacci number | |
def fib(n) | |
return n if n < 2 | |
vals = [0, 1] | |
(n-1).times do | |
vals.push(vals[-1] + vals[-2]) | |
end | |
return vals.last | |
end |
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
# used to call java code | |
require 'java' | |
# 'java_import' is used to import java classes | |
java_import 'java.util.concurrent.Callable' | |
java_import 'java.util.concurrent.FutureTask' | |
java_import 'java.util.concurrent.LinkedBlockingQueue' | |
java_import 'java.util.concurrent.ThreadPoolExecutor' | |
java_import 'java.util.concurrent.TimeUnit' |
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
num_iterations = 20 | |
num_threads = 4 | |
# Try counting to 1 million on 4 separate threads 20 times | |
total_time = 0.0 | |
num_iterations.times do |iter| | |
threads = [] | |
t_0 = Time.now | |
for i in 1..num_threads | |
threads << Thread.new(i) { |t| |
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
search_seed = ['term1','term2'...'ternN'] # implement this as a queue | |
sentence_count = 0; | |
sentences = [] | |
while(sentence_count < 150000){ | |
# get search term to use for this iteration | |
term = initial_seed.dequeue() | |
# Given a search term, get related sentences | |
new_sentences = getBingSentences(term) |
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
{"type":"entity","image":null,"description":"Barack Obama","children":[{"values":[{"type":"user","image":"http:\/\/a0.twimg.com\/profile_images\/1261305267\/2012_normal.jpg","description":"@President","weight":"0.214285714285714","id":260537964},{"type":"user","image":"http:\/\/a0.twimg.com\/profile_images\/1115589019\/Paul_Barratt_photo_3_normal.jpg","description":"@phbarratt","weight":"0.0714285714285714","id":185614627},{"type":"user","image":"http:\/\/a0.twimg.com\/profile_images\/1189622627\/twitter_normal.jpg","description":"@SenJohnMcCain","weight":"0.1","id":19394188},{"type":"user","image":"http:\/\/a0.twimg.com\/profile_images\/3062422539\/39594d1aa231a04a532a7c98b0951e76_normal.jpeg","description":"@michellemalkin","weight":"0.115384615384615","id":15976697},{"type":"user","image":"http:\/\/a0.twimg.com\/profile_images\/63871979\/twittericon_normal.jpg","description":"@SpaceflightNow","weight":"0.125","id":17217640},{"type":"user","image":"http:\/\/a0.twimg.com\/profile_images\/791192176\/memeo_ii |