Skip to content

Instantly share code, notes, and snippets.

@alxjrvs
alxjrvs / 0_reuse_code.js
Created August 18, 2014 20:39
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@alxjrvs
alxjrvs / .zshrc
Last active August 29, 2015 14:01
# for golang
# mkdir $HOME/go
# mkdir -p $GOPATH/src/github.com/user
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin

### How would your project help to further humanities research?

(e.g. it will make more content and data openly available for researchers to use, it will produce novel insights into humanities data through visualisations...) *

GITenberg will improve the quality of Public Domain transcriptions of books by treating books like open source code. The GITenberg project has compiled an archive of 40,000 public domain ebooks, and by applying open source software tools and techniques to these texts,

.sidebar-nav-fixed {
position:fixed;
top:100;
left:0;
}
@alxjrvs
alxjrvs / article.rb
Created April 12, 2012 15:47 — forked from Achillefs/article.rb
Sample Article class posting to a Wordpress blog via wp-json-api
require 'rubygems'
require 'open-uri'
require 'json'
require 'net/http'
# Please note that the vanilla wp-json-api plugin does not support user authentication for create_post.
# Check out my fork for authentication support: https://github.com/Achillefs/wp-json-api
class Article
API_URI = 'http://lf.alxjrvs.com/api/'
API_USER = 'alxjrvs'