Skip to content

Instantly share code, notes, and snippets.

View classicemi's full-sized avatar
🎤
focusing

Shuang Wu classicemi

🎤
focusing
View GitHub Profile
@classicemi
classicemi / hangman.js
Created April 29, 2015 08:07
hangman solver
var fs = require('fs'),
request = require('request'),
inquirer = require('inquirer');
var sessionId = '',
playerId = 'username',
options = {
headers: {"Connection": "close"},
url: 'http://www.hangman.com/game/on',
method: 'POST',
@classicemi
classicemi / .vimrc
Last active October 30, 2016 09:12
.vimrc
"======================"
" Vundle Configuration "
"======================"
autocmd BufWritePost $MYVIMRC source $MYVIMRC
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle
call vundle#begin()