IMPORTANT NOTE: Tested in macOS
For use this bash it needs run in the $HOME folder and execute this command:
~ sudo chmod +x install_vim.sh
Then:
~ ./install_vim.sh
### | |
Manejador de eventos | |
@class event_listener | |
@main test/index | |
@author Luis Sardon | |
### | |
yOSON.AppCore.addModule "event_listener", (Sb) -> | |
st = { | |
listeners: [] |
IMPORTANT NOTE: Tested in macOS
For use this bash it needs run in the $HOME folder and execute this command:
~ sudo chmod +x install_vim.sh
Then:
~ ./install_vim.sh
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
function current_branch() { | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || return | |
echo ${ref#refs/heads/} | |
} | |
function gpull() { | |
git pull origin $(current_branch) | |
} | |
function gpush() { |
"set guifont=PowerlineSymbols:h15 | |
set guifont=Liberation_Mono_for_Powerline:h10 | |
let g:Powerline_symbols = 'fancy' | |
let g:airline_powerline_fonts = 1 | |
set encoding=utf-8 | |
"set term=rxvt-unicode-256color | |
set t_Co=256 | |
set fillchars+=stl:\ ,stlnc:\ | |
"set term=xterm-256color | |
set term=xterm |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
/** @jsx React.DOM */ | |
var STATES = [ | |
'AL', 'AK', 'AS', 'AZ', 'AR', 'CA', 'CO', 'CT', 'DE', 'DC', 'FL', 'GA', 'HI', | |
'ID', 'IL', 'IN', 'IA', 'KS', 'KY', 'LA', 'ME', 'MD', 'MA', 'MI', 'MN', 'MS', | |
'MO', 'MT', 'NE', 'NV', 'NH', 'NJ', 'NM', 'NY', 'NC', 'ND', 'OH', 'OK', 'OR', | |
'PA', 'RI', 'SC', 'SD', 'TN', 'TX', 'UT', 'VT', 'VA', 'WA', 'WV', 'WI', 'WY' | |
] | |
var Example = React.createClass({ |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.