Noon - 3.PM.
- Portfolio
- Code Snippets
- Ruby Lesson
- Repair Linux Parition
- The Ponies svg tilemap
- Github Markdown Wiki Link compatability with gollum
| [ | |
| { "keys": ["ctrl+q"], "command": "toggle_comment", "args": { "block": false } }, | |
| { "keys": ["ctrl+shift+q"], "command": "toggle_comment", "args": { "block": true } }, | |
| { "keys": ["ctrl+shift+w"], "command": "close" }, | |
| { "keys": ["ctrl+space"], "command": "auto_complete" }, | |
| { "keys": ["ctrl+space"], "command": "replace_completion_with_auto_complete", "context": | |
| [ | |
| { "key": "last_command", "operator": "equal", "operand": "insert_best_completion" }, | |
| { "key": "auto_complete_visible", "operator": "equal", "operand": false }, | |
| { "key": "setting.tab_completion", "operator": "equal", "operand": true } |
| // ==UserScript== | |
| // @name New Script | |
| // @include http://mlp-fim-wallpapers.deviantart.com/ | |
| // @exclude http://mlp-fim-wallpapers.deviantart.com/ | |
| // ==/UserScript== | |
| console.log('Deviant Art Pony Wallappers!'); | |
| galleryPages = document.querySelectorAll('.tv150'); | |
| thumbNails = document.querySelectorAll('.thumb'); |
Noon - 3.PM.
| # Lets get the apt stuff taken care of first. | |
| sudo add-apt-repository -y ppa:webupd8team/sublime-text-3 | |
| sudo add-apt-repository -y ppa:numix/ppa | |
| sudo apt-get update | |
| sudo apt-get install --yes \ | |
| sublime-text-installer \ | |
| numix-gtk-theme \ | |
| numix-icon-theme-circle \ | |
| curl \ | |
| ttf-inconsolata |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <interface> | |
| <!-- interface-requires gtk+ 3.0 --> | |
| <object class="GtkListStore" id="myliststore"> | |
| <columns> | |
| <!-- column-name code --> | |
| <column type="gchararray"/> | |
| <!-- column-name legible --> | |
| <column type="gchararray"/> | |
| </columns> |
| from itertools import izip, product, tee | |
| # Logic functions: take and return iterators of truth values | |
| def AND(a, b): | |
| for p, q in izip(a, b): | |
| yield p and q | |
| def OR(a, b): | |
| for p, q in izip(a, b): |
| # Configuration file for /sbin/dhclient, which is included in Debian's | |
| # dhcp3-client package. | |
| # | |
| # This is a sample configuration file for dhclient. See dhclient.conf's | |
| # man page for more information about the syntax of this file | |
| # and a more comprehensive list of the parameters understood by | |
| # dhclient. | |
| # | |
| # Normally, if the DHCP server provides reasonable information and does | |
| # not leave anything out (like the domain name, for example), then |
| .git/objects/pack$ PACKFILE=pack-<...>.pack ; mv $PACKFILE $PACKFILE.repack; git unpack-objects -r < $PACKFILE.repack |