Skip to content

Instantly share code, notes, and snippets.

View groundrace's full-sized avatar

groundrace groundrace

  • SciamLab
  • Cyberspace
View GitHub Profile
const puppeteer = require('puppeteer');
(async () => {
const search_string = 'google scraper';
const resultsObj = {search_term: search_string, results:[]};
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://google.com');
@groundrace
groundrace / dataset-management.md
Created March 13, 2018 20:58 — forked from mheadd/dataset-management.md
Sample API calls for creating, updating and deleting things in CKAN via the CKAN API.

Get package list

~$ curl http://www.civicdata.com/api/action/package_list

Get package details

~$ curl http://www.civicdata.com/api/action/package_show?id={package_id}

Upload a file to storage

~$ curl http://www.civicdata.com/api/storage/auth/form/testdata/test.csv -H "Authorization: <API-KEY>"
@groundrace
groundrace / 2d_density_estimation.ipynb
Last active January 27, 2018 11:50
2D Density Estimation
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@groundrace
groundrace / univariate_density.ipynb
Last active January 27, 2018 11:21
Univariate histogram and kernel density estimation
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@groundrace
groundrace / .block
Last active January 2, 2018 07:03 — forked from tlfrd/.block
Diverging bar chart
license: mit
@groundrace
groundrace / webcryptoapi.html
Created April 13, 2016 23:56 — forked from deiu/webcryptoapi.html
Web Crypto API: RSA keygen & export & import & sign & verify & encrypt & decrypt
<html>
<head>
<script>
function generateKey(alg, scope) {
return new Promise(function(resolve) {
var genkey = crypto.subtle.generateKey(alg, true, scope)
genkey.then(function (pair) {
resolve(pair)
})
})
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.
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.