Skip to content

Instantly share code, notes, and snippets.

View darklight721's full-sized avatar
👨‍💻

Roy Evan Sia darklight721

👨‍💻
  • Cebu City, Philippines
  • X @pr00t
View GitHub Profile
# Motion commands
h - move left
j - move down
k - move up
l - move right
w - move to next word
b - move to beginning of word
e - move to end of word
{
"parser": "babel-eslint",
"rules": {
// best practices
"curly": [2, "multi-line"],
"dot-notation": 2,
"dot-location": [2, "property"],
"eqeqeq": [2, "allow-null"],
"guard-for-in": 2,
"no-caller": 2,
function add(...n) {
let t = n.reduce((a, b) => a + b);
let a = add.bind(0, t);
a.valueOf = () => t;
return a;
}
@darklight721
darklight721 / .bash_profile
Last active August 29, 2015 14:21
My bash profile
export PS1="\[\e[1;34m\]\u@\h\[\e[0m\]:\[\e[1;36m\]\W\[\e[0m\]$ "
alias ll="ls -ahlFG"
alias rmd="rm -rf"
alias fsize="stat -f%z"
alias finder="open -a Finder ./"
mcd() { mkdir "$1" && cd "$1"; }
gitr() {
@darklight721
darklight721 / init.coffee
Created December 30, 2014 02:55
Atom command to terminate line with a semicolon
atom.commands.add 'atom-text-editor',
'easy-semicolon:end-line': (event) ->
editor = @getModel()
editor.moveToEndOfLine()
editor.insertText(';')
@darklight721
darklight721 / jquery.tablesorter.js
Last active August 29, 2015 14:10
A jQuery tablesorter plugin
/*
* jquery.tablesorter.js - a small table sorter jquery plugin
* Usage:
* $('table').tablesorter();
* Options:
* $('table').tablesorter({
* defaultSort: [0, 1] // initial sort - [<column index>, <1 (ascending) || -1 (descending)>]
* });
* Action Triggers:
* $('table').trigger('update'); // to update the table when there are changes like addition/removal of <tr>/<td>
@darklight721
darklight721 / package.json
Created August 29, 2015 09:06
Sample webpack config with promise/fetch shimming
{
"name": "SampleWebpack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"webpack": "./node_modules/.bin/webpack",
"bundle": "npm run webpack -- -p",
"start": "npm run webpack -- -d --watch"
},