Inspire Yourself: (1 min only)
My Deck:
JS the better parts
Why Classical inheritance is obsolete
set -g prefix C-a | |
unbind C-b | |
bind C-a send-prefix | |
# force a reload of the config file | |
unbind r | |
bind r source-file ~/.tmux.conf | |
bind | split-window -h | |
bind - split-window -v |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
[user] | |
name = Arindam Paul | |
email = [email protected] | |
[core] | |
editor = vim | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
excludesfile = ~/.gitignore | |
[web] | |
browser = google-chrome | |
[alias] |
vim +BundleInstall! +BundleClean +q | |
---- | |
Bundle 'xsbeats/vim-blade' | |
Bundle 'mattn/emmet-vim' | |
---- | |
set gfn=Monaco\ for\ Powerline:h13 | |
let g:airline#extensions#tabline#enabled = 1 | |
colorscheme ir_black |
set -g prefix C-a | |
unbind C-b | |
bind C-a send-prefix | |
# force a reload of the config file | |
unbind r | |
bind r source-file ~/.tmux.conf \; display "Reloaded!" | |
# Change the default delay |
7f3834d Added the learn more links | |
d74e89d Updated the views with mobile button and conditional AUI injection | |
de75890 Removed assets from the older page | |
1a0f03f Scoping the CSS for mobile only | |
d92fc7a Adding few CSS for mobile, dektop AUI overlap | |
68baf31 Removing asset injection from the view page as RAW calls with http is causing problems | |
e75b9dd Merge branch 'arpaul_aui' into mainline | |
65cdd71 Injecting AUI on the Views | |
02dd32f Change in view to add Dynamic Price Value | |
92f3b93 Injecting AUI on the Views |
* OpenShot – I use a number of video editors on my Ubuntu installation. But the one I find myself using the most often is OpenShot. | |
* Kazam – Despite the issues I've found using it on Ubuntu 12.10, Kazam works really well on Ubuntu 12.04. | |
# Download the font from here, | |
# http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html | |
mkdir ucs | |
tar -xzf ucs-fonts.tar.gz -C ucs | |
cd ucs/submission | |
make | |
# for Ubuntu | |
sudo mv -b *.pcf.gz /usr/share/fonts/X11/misc |
function process(num) { | |
// delay(); | |
console.log(num); | |
} | |
// Synchronus | |
[1,2,3,4].forEach(function(i){ | |
process(i); | |
}); |
Inspire Yourself: (1 min only)
My Deck:
JS the better parts
Why Classical inheritance is obsolete