- bootstrap with typeahead
- jquery
This will use bootstrap with typeahead to create an autocomplete search.
| { | |
| "person":{ | |
| "firstname":"Mike", | |
| "lastname":"lovely", | |
| "favs":{ | |
| "animal":"cat", | |
| "activity":"cycling" | |
| } | |
| }, | |
| "comment":"i'm so tired" |
| echo "linux users don't hate me but i love it" | |
| echo "set completion-ignore-case On" >> ~/.inputrc |
| export=$PATH:/Application/ColdFusion10/cfusion/bin |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| ;; if indent-tabs-mode is off, untabify before saving | |
| (add-hook 'write-file-hooks | |
| (lambda () (if (not indent-tabs-mode) | |
| (untabify (point-min) (point-max))) | |
| nil )) |
| chrome.tabs.query({active:true,windowType:"normal"},function(d){console.debug(d[0].id);}) |
| if [ $# -eq 0 ]; then | |
| echo "usage: trashit <files...>" >&2 | |
| exit 2; | |
| fi | |
| for file in "$@"; do | |
| # get just file name | |
| destfile="`basename \"$file\"`" | |
| suffix=''; | |
| i=0; |
| create role myapp with createdb login password 'password1' |