https://play.google.com/store/getreviews?reviewType=0&pageNum=1&id=com.github.mobile&reviewSortOrder=2&xhr=1
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
<html><head><link rel="stylesheet" href="http://sindresorhus.com/github-markdown-css/github-markdown.css"/></head><body><article class="markdown-body"> | |
<h1 id="analysing-fcq-data">Analysing FCQ Data</h1> | |
<p>Here is the data set for FCQ. You can get FCQ data from <a href="http://www.colorado.edu/fcq/">FCQ</a>.</p> | |
<pre> | |
var data = loader.json('examples/fcq/fcq.2014.json', {multiLines: true}) | |
var fields = _.keys(data[0]).join(', ') | |
</pre> | |
<h2 id="exploring-lodash">Exploring lodash</h2> | |
<p><a href="https://lodash.com">lodash</a> is A JavaScript utility libray to manipulate data. Let's do it.</p> |
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
"{0: '', 1: u'painters', 2: u'indulgence', 4: u'visual', 5: u'fantasy', 7: u'appreciation', 9: u'different', 10: u'historic', 11: u'architectural', 12: u'styles', 15: u'seen', 18: u'1840', 19: u'architects', 20: u'dream', 23: u'series', 25: u'paintings', 28: u'last', 31: u'mohicans', 33: u'made', 35: u'three', 36: u'year', 37: u'trip', 39: u'europe', 41: u'1829', 45: u'better', 46: u'known', 49: u'trip', 50: u'four', 51: u'years', 52: u'earlier', 56: u'journeyed', 59: u'hudson', 60: u'river', 63: u'catskill', 64: u'mountains', 65: u'ftp', 66: u'name', 68: u'this_painter', 71: u'oxbow', 74: u'voyage', 76: u'life', 77: u'series'}" |
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
var request = require('request'); | |
var cheerio = require('cheerio'); | |
// Set the headers | |
var headers = { 'User-Agent': 'Wild/0.0.1' | |
, 'Content-Type': 'application/x-www-form-urlencoded' | |
} | |
// Configure the request | |
var options = { url: 'https://play.google.com/store/getreviews' |
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
from scipy import array | |
from scipy.special import psi as digam | |
from math import exp | |
words = ["cat", "dog", "hamburger", "iron", "pig"] | |
beta = array([[.26, .185, .185, .185, .185], | |
[.185, .185, .26, .185, .185], | |
[.185, .185, .185, .26, .185]]) | |
gamma = [2.0, 2.0, 2.0] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
var request = require('request'); | |
var cheerio = require('cheerio'); | |
// Set the headers | |
var headers = { 'User-Agent': 'Wild/0.0.1' | |
, 'Content-Type': 'application/x-www-form-urlencoded' | |
} | |
// Configure the request | |
var options = { url: 'https://play.google.com/store/getreviews' |
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
$ curl -H "Content-Type: application/json" -X POST -d '{"regex": ".setTag\\([^,|^\\(]*,[^,]*\\)", "ext":"java", "local_repo_root": "demo_set", "max":100}' http://sangheestyle.com:8080/api/search/commits -o result.json |