Skip to content

Instantly share code, notes, and snippets.

# This file should contain all the record creation needed to seed the database with its default values.
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
#
# Examples:
#
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
# Mayor.create(name: 'Emanuel', city: cities.first)
Spree::Core::Engine.load_seed if defined?(Spree::Core)
Spree::Auth::Engine.load_seed if defined?(Spree::Auth)
colorscheme railscasts
" hide toolbar
set guioptions-=T
" set lines=55 columns=100
set guifont=DejaVu\ Sans\ Mono:h13
set nonumber
set hidden
xnoremap p pgvy
@fajrif
fajrif / .gitconfig
Last active February 9, 2016 06:32
[user]
name = Fajri Fachriansyah
email = fajri82@gmail.com
[alias]
co = checkout
c = config --list
b = branch
d = diff --color
ds = diff --stat --color
s = status
@fajrif
fajrif / vim macros
Created September 20, 2012 11:36
APKT perubahan data export script
[DirectMethod]
public void BuildReport(string gridID)
{
try
{
if (((DataSet)Session["DaftarLaporLebih1Kali"]).Tables.Contains(gridID))
{
string HTMLoutput;
String xml = ((DataSet)Session["DaftarLaporLebih1Kali"]).GetXml();
xml = "<?xml version='1.0' encoding='utf-8'?>\n" + xml;
@fajrif
fajrif / ajaxify-html5.js
Created February 6, 2012 04:43 — forked from balupton/README.md
Ajaxify a Website with the HTML5 History API using History.js, jQuery and ScrollTo
// https://gist.github.com/854622
(function(window,undefined){
// Prepare our Variables
var
History = window.History,
$ = window.jQuery,
document = window.document;
// Check to see if History.js is enabled for our Browser
[user]
name = Fajri Fachriansyah
email = fajri82@gmail.com
[alias]
co = checkout
c = config --list
b = branch
d = diff --color
ds = diff --stat --color
s = status
@fajrif
fajrif / gist:1328735
Created October 31, 2011 20:10
git rm remote repo
# remove file from stage
git rm --cached --ignore-unmatch <filename>
# to remove the file from the entire repo history
git filter-branch --index-filter 'git rm --cached --ignore-unmatch <filename>' HEAD
# to force update to remote repo, so the remote repo have the same history
@fajrif
fajrif / gist:1265203
Created October 5, 2011 18:12
git clone specific tag
git clone <repo-address>
git tag -l
git checkout <tag-name>
git branch -D master
git checkout -b master
@fajrif
fajrif / gist:1222825
Created September 16, 2011 18:59
update fork with original repo
git remote add <remote_name> <original-repo>
# => add remote refs named (whatever) to targeted the original repo
git fetch <remote_name>
git merge <remote_name>/<branch-name>
# => safely gathers any commits from original repo and stores them in your local repo
** if auto-merging conflict, use `git diff --color` to check/edit the files
and commit it first before push to the remote repo
@fajrif
fajrif / my usual git command
Created June 23, 2011 12:25
my usual git command
git init
# => initialize local repository
git add .
# => add all files/folders into the staging area
git add -A
# => add all files/folders into the staging area
# => (include the changes in the entire tree)