Skip to content

Instantly share code, notes, and snippets.

@dtheodor
dtheodor / install_mariadb_columnstore_centos_7_2.md
Last active December 3, 2018 23:48
Install MariaDB 1.08 Columnstore on Centos 7.2
@devin-petersohn
devin-petersohn / blog_post_20181025_modin.ipynb
Last active November 13, 2018 13:22
Modin blog - October 25, 2018
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@xbb
xbb / gscrape.js
Created April 2, 2011 15:06
simple google scraper test with phantomjs
var Gscrape = function(domain) {
var domain = domain || 'com',
searchURL = 'http://www.google.' + domain + '/search?q=',
searchInProgress = false,
cache = {
error: '',
success: true,
pages: 0,
urls: {}
};
@aurora-mareviv
aurora-mareviv / RStartAndroid.R
Created September 30, 2014 22:35
Script to start playing with R on Android
###########################################
### COMMANDS TO START WITH R ON ANDROID ###
###########################################
# Under GNU-GPL license
# R in Android installed via the apps "GNURoot" and "GNURoot Wheezy", and sources.list updated with the newest CRAN repositories.
# I strongly recommend to set the working directory of R to a folder that can be accessed from Android such as /sdcard
setwd("/sdcard/R")