Skip to content

Instantly share code, notes, and snippets.

View yknx4's full-sized avatar

Jade Alejandra Ornelas yknx4

View GitHub Profile
source 'https://rubygems.org'
#### RUBY VERSION ####
ruby '2.3.1'
#### RAILS VERSION ####
gem 'rails', '4.1.5'
# TODO: once we migrate to rails 4.2 let's get rid of this gem
gem 'activejob_backport'
We can't make this file beautiful and searchable because it's too large.
In the banker's bed,"Williams, Cathy."
New Testament words.,"Barclay, William, lecturer in the University of Glasgow."
"Poets, farewell! ","Wilson, Edmund, 1895-1972."
"The world grows round my door; the story of The Kampong, a home on the edge of the tropics,","Fairchild, David, 1869-1954."
"Puerto Rican authors: a biobibliographic handbook,","Hill, Marnesba D."
"Memoirs of the life and services of Daniel Drake, M.D., physician, professor, and author; with notices of the early settlement of Cincinnati. And some of its pioneer citizens.","Mansfield, Edward Deering, 1801-1880."
Final harvest: Emily Dickinson's poems.,"Dickinson, Emily, 1830-1886."
Three times a bridesmaid,"Marsh, Nicola."
Meter means measure: the story of the metric system,"Hirsch, S. Carl."
"Fabulous Hoosier, a story of American achievement,","Fisher, Jane (Watts)"
We can't make this file beautiful and searchable because it's too large.
best_title,best_author
European artists III : signatures and monograms from 1800 : a directory,"Castagno, John, 1930-"
"Pregnancy day by day : an illustrated daily countdown to motherhood, from conception to childbirth and beyond",""
Just listen : discover the secret to getting through to absolutely anyone,"Goulston, Mark."
Egyptian fakes : masterpieces that duped the art world and the experts who uncovered them,"Fiechter, Jean-Jacques."
"The successful retirement guide : hundreds of suggestions on how to stay intellectually, socially, and physically engaged for the best years of your life","Price, R. Kevin, 1947-"
Gallows Lane : an Inspector Devlin mystery,"McGilloway, Brian, 1974-"
The fruit of her hands : the story of Shira of Ashkenaz,"Cameron, Michelle."
Dreaming in French : a novel,"McAndrew, Megan."
The convict's sword : a mystery of eleventh-century Japan,"Parker, I. J. (Ingrid J.)"
@yknx4
yknx4 / post-checkout
Created October 31, 2016 15:45
9.2 compatible
#!/bin/sh
# --- Command line
PREVIOUS_HEAD="$1"
NEW_HEAD="$2"
IS_BRANCH_CHECKOUT="$3"
# --- Constants
SEPARATOR="/"
MAIN_BACKUP="_backup"
@yknx4
yknx4 / post-checkout
Created October 28, 2016 22:03
Automatic database backup on branch creation with Post Checkout Git Hook
#!/bin/sh
# --- Command line
PREVIOUS_HEAD="$1"
NEW_HEAD="$2"
IS_BRANCH_CHECKOUT="$3"
# --- Constants
SEPARATOR="/"
MAIN_BACKUP="_backup"
#!/bin/sh
# --- Command line
PREVIOUS_HEAD="$1"
NEW_HEAD="$2"
IS_BRANCH_CHECKOUT="$3"
# --- Constants
SEPARATOR="/"
MAIN_BACKUP="_backup"
#!/bin/sh
# --- Command line
previous_head="$1"
new_head="$2"
branch_checkout="$3"
# --- Constants
separator="/"
master_branch="master"
#!/bin/sh
wget -O ./.git/hooks/post-checkout https://gist.githubusercontent.com/yknx4/7c2eba07fa8ea33250fe185cfc31b362/raw/372f73ab532ea92df1c950fb137821d432bfef77/post-checkout
chmod +x ./.git/hooks/post-checkout
#!/bin/sh
# --- Command line
previous_head="$1"
new_head="$2"
branch_checkout="$3"
# --- Constants
separator="/"
master_branch="master"
#!/bin/sh
# --- Command line
previous_head="$1"
new_head="$2"
branch_checkout="$3"
# --- Constants
separator="/"
master_branch="master"