Skip to content

Instantly share code, notes, and snippets.

View edelgado's full-sized avatar

Enrique Delgado edelgado

View GitHub Profile
@edelgado
edelgado / txt-to-google-keep-notes.py
Created August 7, 2019 21:47 — forked from sliceofbytes/txt-to-google-keep-notes.py
Add Text Files as Google Keep Notes
#Import a directory of text files as google keep notes.
#Text Filename is used for the title of the note.
import gkeepapi, os
username = 'username@gmail.com'
password = 'your app password'
keep = gkeepapi.Keep()
success = keep.login(username,password)
@edelgado
edelgado / config.json
Created October 19, 2016 17:05 — forked from anonymous/config.json
Bootstrap Customizer Config
{
"vars": {
"@gray-base": "#000",
"@gray-darker": "#818181",
"@gray-dark": "#C3C3C3",
"@gray": "#C3C3C3",
"@gray-light": "#F6F6F6",
"@gray-lighter": "#FFFFFF",
"@brand-primary": "#048A97",
"@brand-success": "#5cb85c",
@edelgado
edelgado / rbenv-install-ruby-1_9_3_p_484_gcdata
Last active December 22, 2015 14:41 — forked from philou/rbenv-patch
This script uses a patch from the rvm repo to patch a ruby-build package before installing it with rbenv. It uses ruby 1.9.3-p484 with gcdata patch, but it should work with any ruby / patch as long as they are compatible.
#!/bin/sh
mkdir /tmp/ruby-build-patch
cd /tmp/ruby-build-patch
# download and patch the ruby sources
wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p484.tar.gz
tar xzf ruby-1.9.3-p484.tar.gz
cd ruby-1.9.3-p484
curl https://raw.githubusercontent.com/wayneeseguin/rvm/master/patches/ruby/1.9.3/p125/gcdata.patch | patch -p1