Skip to content

Instantly share code, notes, and snippets.

" jeffjar's .vimrc
" PLUGIN MANAGER =========================================
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim' " itself
@jeffiar
jeffiar / .bashrc
Last active August 3, 2020 23:16
dotfiles
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
HISTCONTROL=ignoreboth
HISTSIZE=
HISTFILESIZE=
shopt -s histappend
@jeffiar
jeffiar / generated-text.txt
Created April 3, 2016 20:36
Fake spoons text.
We thought process that member those who are unaware, the Immunity runs from the sign we put up on the evenings during the best!
Finally, in this post), and we have to address the end. And what are we kidding we have a friend of his personal rule of one day, we want push Ethan Christina Tani the Sunday morning, dizzy and who is supposed to his friends. By sitting a short 2 to 3 hour span he was based on this crash last minutes and you'll just happen sooner out of chance to his partner. And came out of bed right now is quite seriously mispredicting that he had no idea where you don't leash is severe case of TFTI, and shoot with her take off today's story of one another.
Verdict: Go to school, we saw a bajillion unread emails. This is the remaining in the basic teenager, and wearing an incoming at Panda Express in Valley Fair. So the game since it is a process -- a double kill.
- To be immune, you must have the underclassmen on campus, you need to cut something: even in death.
- If you are vulne

Introduction to Fun Facts Column

Are girls or guys better at surviving in spoons? Was the quota was really necessary to "keep the game at a good pace", or did the Goderators just wanna watch us suffer? Well, we'll find out all in due time! In this column, we'll be crunching some numbers to find out some deeper truths about the nature of the game. Hope you all enjoy it.

Basic facts about spoons

Let's start out with some simple statistics about how many people are playing the game, and how many are still alive:

265 people out of our class of 465 participated in spoons. So 57% of the class of 2016 is playing (or was playing) spoons.

@jeffiar
jeffiar / download_songs.py
Created January 23, 2016 07:33
download the lyrics for all of an artist's songs from genius
from bs4 import BeautifulSoup
import requests
import itertools
import sys
import os
def get_lyrics(url):
page = requests.get(url)
soup = BeautifulSoup(page.text, "lxml")
lyrics = soup.lyrics.getText()
@jeffiar
jeffiar / min-char-rnn.py
Last active September 17, 2015 00:16 — forked from karpathy/min-char-rnn.py
Minimal character-level language model with a Vanilla Recurrent Neural Network, in Python/numpy
"""
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy)
BSD License
"""
import numpy as np
# data I/O
data = open('input.txt', 'r').read() # should be simple plain text file
chars = list(set(data))
data_size, vocab_size = len(data), len(chars)
@jeffiar
jeffiar / .vimrc
Last active May 5, 2018 18:54
my vimrc
" VUNDLE SETTINGS =========================================
" -easy packaging of plugins
"------------------------------------------------------------
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim' " itself