| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| [ | |
| { "keys": ["ctrl+shift+x"], "command": "tidy_xml" }, | |
| { "keys": ["ctrl+shift+j"], "command": "prettify_json" } | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.petebevin.markdown.MarkdownProcessor | |
| import org.xhtmlrenderer.pdf.ITextRenderer | |
| import org.ccil.cowan.tagsoup.Parser | |
| import org.apache.xalan.xsltc.trax.SAX2DOM | |
| import org.xml.sax.InputSource | |
| buildscript{ | |
| repositories { | |
| mavenCentral() | |
| mavenRepo urls: "http://scala-tools.org/repo-releases" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Enter your configuration details in this file. | |
| */ | |
| // Details of your CouchDB instance. | |
| exports.couchdb = { | |
| userid : '', | |
| password : '', | |
| host : 'http://127.0.0.1', | |
| port : '5984', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset=utf-8> | |
| <meta name=viewport content="width=device-width, initial-scale=1, maximum-scale=1"> | |
| <meta name=apple-mobile-web-app-capable content=yes> | |
| <meta name=apple-mobile-web-app-status-bar-style content=black> | |
| <title>Test fullscreen</title> | |
| <style> | |
| html, body { | |
| margin: 0; | |
| padding: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // options | |
| String imagePath = "img/desandro-avatar.jpg"; | |
| float res = 10; // resolution, dot density | |
| float zoom = 3.0; // proportion to zoom image | |
| boolean isAdditive = true; // true = RGB, false = CMY | |
| float offsetAngle = 1; // affects dot pattern | |
| /* | |
| 0 = no patter | |
| 0.05 = slight offset | |
| 1 = slight offset |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Mathieu 'p01' Henri - http://www.p01.org/releases/ | |
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function crc32(s/*, polynomial = 0x04C11DB7, initialValue = 0xFFFFFFFF, finalXORValue = 0xFFFFFFFF*/) { | |
| s = String(s); | |
| var polynomial = arguments.length < 2 ? 0x04C11DB7 : (arguments[1] >>> 0); | |
| var initialValue = arguments.length < 3 ? 0xFFFFFFFF : (arguments[2] >>> 0); | |
| var finalXORValue = arguments.length < 4 ? 0xFFFFFFFF : (arguments[3] >>> 0); | |
| var table = new Array(256); | |
| var reverse = function (x, n) { | |
| var b = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| USE MYAWESOMEDATABASE | |
| GO | |
| IF NOT EXISTS(SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME= 'Audit') | |
| CREATE TABLE Audit | |
| ( | |
| AuditID [int]IDENTITY(1,1) NOT NULL, | |
| Type char(1), | |
| TableName varchar(128), | |
| PrimaryKeyField varchar(1000), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Playlister</title> | |
| <link rel="stylesheet" href="sp://import/css/adam.css"> | |
| <link rel="stylesheet" href="styles.css"> | |
| <script type="text/javascript" src="js/jquery.min.js"></script> | |
| </head> |