- JavaScript.is (Sexy)
- Eloquent JavaScript
- Frontend - learn & resources
- Learnjs.io
| #!/usr/bin/env bash | |
| # | |
| # Example usage: | |
| # | |
| # $ VERSION=1.3 sudo ./goinst.sh | |
| if [ "$(id -u)" != "0" ]; then | |
| echo "This script must be run as root" 1>&2 | |
| exit 1 | |
| fi |
As configured in my dotfiles.
start new:
tmux
start new with session name:
-
To install packages, every time pressing '
ctrl+shift+p→Package Control: Install Packageis very cumbersome task... right? -
After fresh installation of ST2, open it and
ctrl+`and hit enter after pasting below line [(1)][1]:
import urllib2,os; pf='Package Control.sublime-package'; ipp=sublime.installed_packages_path(); os.makedirs(ipp) if not os.path.exists(ipp) else None; urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler())); open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read()); print('Please restart Sublime Text to finish installation')-
Restart ST2.
-
Open terminal, and navigate to Sublime's dir under your home folder by below command and create file w/ name
Package Control.sublime-settingsthere in:
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
- node.js
- Installation paths: use one of these techniques to install node and npm without having to sudo.
- Node.js HOWTO: Install Node+NPM as user (not root) under Unix OSes
- Felix's Node.js Guide
- Creating a REST API using Node.js, Express, and MongoDB
- Node Cellar Sample Application with Backbone.js, Twitter Bootstrap, Node.js, Express, and MongoDB
- JavaScript Event Loop
- Node.js for PHP programmers
| // many many codes | |
| document.write('foo bar'); | |
| document.write('</div>'); | |
| // new code | |
| var a = 'bar.js', stamp = +new Date() + '='; | |
| document.write('<script id="foo" src="' + a + '?' + stamp + '"></script>'); | |
| // other code | |
| document.write('<div> other text</div>'); |
| HANDY ONE-LINERS FOR RUBY November 16, 2005 | |
| compiled by David P Thomas <davidpthomas@gmail.com> version 1.0 | |
| Latest version of this file can be found at: | |
| http://www.fepus.net/ruby1line.txt | |
| Last Updated: Wed Nov 16 08:35:02 CST 2005 | |
| FILE SPACING: |
