Skip to content

Instantly share code, notes, and snippets.

@RodrigoPrior
RodrigoPrior / pandas_df_to_numpy_array_in_HDF5.ipynb
Created September 7, 2014 00:55
Tutorial: Pandas Dataframe to Numpy Array and store in HDF5
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#!/bin/bash
usage()
{
cat << EOF
usage: $0 options
This script set ownership for all table, sequence and views for a given database
Credit: Based on http://stackoverflow.com/a/2686185/305019 by Alex Soto
@RodrigoPrior
RodrigoPrior / Vagrantfile
Created January 27, 2012 00:31
Vagrant PHP Dev
Vagrant::Config.run do |config|
config.vm.customize do |vm|
vm.name = "PHP dev"
vm.memory_size = 512
end
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "ubuntu32"
# Assign this VM to a host only network IP, allowing you to access it
@RodrigoPrior
RodrigoPrior / list_regex_id.py
Created November 9, 2012 03:35
retrieve multiple pages and find string in it
#!/usr/bin/python
import re,urllib2,urllib
list_ids = ( '1', '2', '3')
url = 'https://<url>/<path>/file.php?id='
regex = '[0-9]{2}\/[0-9]{11}\-[0-9]'
@RodrigoPrior
RodrigoPrior / .gitignore
Created November 26, 2012 18:04 — forked from claudiosanches/.gitignore
GIT: Include empty directories
# Ignore everything in this directory
*
# Except this file
!.gitignore
@RodrigoPrior
RodrigoPrior / openvibe_compile_emotivReserach_ubuntu15.x
Created October 24, 2015 01:36
Como compilar openvibe 1.1.x com o emotiv EmotivResearch_2.0.0.20 no ubuntu15.x
# Objetivo
Configurar o openvibe para compilar os drivers do emotiv epoc.
Obs.: todas estas etapas dependem da compra e instalação do Emotiv SDK Ubuntu.
## Referencias
http://openvibe.inria.fr/how-to-connect-emotiv-epoc-with-openvibe/
https://github.com/tbronchain/openemo
#!/bin/sh
##
# basic script to backup entire drive and backup securely
# backup a mysql database using lvm snapshot tool
##
# stop mysql
/usr/sbin/service mysql stop
#!/bin/sh
# This script will migrate schema and data from a SQLite3 database to PostgreSQL.
# Schema translation based on http://stackoverflow.com/a/4581921/1303625.
# Some column types are not handled (e.g blobs).
SQLITE_DB_PATH=$1
PG_DB_NAME=$2
PG_USER_NAME=$3