This application does not collect any personal information.
Internet access is only used to retrieve ads from the web.
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Jed Schmidt <http://jed.is> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Jed Schmidt <http://jed.is> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
| { | |
| "color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme", | |
| "font_size": 11, | |
| "translate_tabs_to_spaces": true, | |
| "draw_white_space": "all", | |
| "trim_trailing_white_space_on_save": true, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ] |
| <snippet> | |
| <content><![CDATA[ | |
| \$(${1:selector}).click(function(e) { | |
| e.preventDefault(); | |
| e.stopPropagation(); | |
| ${2://handler} | |
| }); | |
| ]]></content> | |
| <tabTrigger>click</tabTrigger> |
| #!/usr/bin/env node | |
| var _ = require("lodash"), | |
| util = require('util'), | |
| spawn = require('child_process').spawn, | |
| fs = require("fs"), | |
| p = require("path"), | |
| ansi = require("ansi"), | |
| cursor = ansi(process.stdout), | |
| program = require("commander"), |
| /* | |
| Pig Latin interpreter | |
| by Ben Buckman, July 20 2012 | |
| Rules: | |
| - All words beginning with a consonant have their first letter moved to the end of word followed by 'ay'. | |
| Example: Hello -> Ellohay | |
| - All words beginning with a vowel have their first letter moved to the end moved to the word followed by 'hay'. | |
| Example: Another -> Notherahay |
| // starfield.js | |
| ig.module( | |
| 'game.starfield' | |
| ) | |
| .requires( | |
| 'impact.system', | |
| 'impact.background-map' | |
| ) | |
| .defines(function() { | |
| var colors = ['#fff', '#555', '#f8ceda']; |