Attention: if you attempt to fork this gist, github will think that you are a spammer and you will have to confirm that you are human with them. Apparantly there are too many links in this list. Also I update it rather frequently (see revisions on the left), so it's probably wise to not fork it anyway.
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
| $desc 'layer', | |
| name: 'Layer 1' | |
| color: $enum 'color.none' | |
| visible: true | |
| mode: $enum 'blendMode.dissolve' | |
| opacity: $int 171 | |
| layerID: $int 4 | |
| itemIndex: $int 2 | |
| count: $int 4 | |
| preserveTransparency: false |
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
| { | |
| "always_show_minimap_viewport": true, | |
| "auto_complete_commit_on_tab": true, | |
| "color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", | |
| "ensure_newline_at_eof_on_save": true, | |
| "fold_buttons": false, | |
| "folder_exclude_patterns": | |
| [ | |
| ".svn", | |
| ".git", |
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
| { | |
| "status":"ok", | |
| "user": { | |
| "username": "example", | |
| "fist_name": "John", | |
| "last_name": "Doe", | |
| "preferences": { | |
| "font_face": "Meslo LG S DZ", | |
| "font_size": 14.0, | |
| "trim_trailing_white_space_on_save": true, |
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
| #include <windows.h> | |
| #include <stdio.h> | |
| BOOL CALLBACK EnumWindowsProc(HWND hWnd, long lParam) { | |
| char buff[255]; | |
| if (IsWindowVisible(hWnd)) { | |
| GetWindowText(hWnd, (LPSTR) buff, 254); | |
| printf("%s\n", buff); | |
| } |
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
| # Place this script in the parent of symlinked folders | |
| ST_SETTINGS="$HOME/Library/Application Support/Sublime Text 2" | |
| ST_DROPBOX="`pwd`" | |
| echo "Creating ST2 settings folder (if does not exist)" | |
| mkdir -p "$ST_SETTINGS" | |
| echo "Symlinking folders" | |
| for dir in "Packages" "Installed Packages" "Pristine Packages"; | |
| do ln -s "$ST_DROPBOX/$dir" "$ST_SETTINGS/$dir"; |
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 lang=en> | |
| <head> | |
| <meta charset=utf-8> | |
| <title>blah</title> | |
| </head> | |
| <body> | |
| <p>I'm the content</p> | |
| </body> | |
| </html> |
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
| var total = {}; | |
| var progress = {}; | |
| var sum = function() { | |
| var tmp = 0; | |
| for (var i in progress) | |
| if (i != 'total') | |
| tmp += progress[i]; | |
| progress.total = tmp; | |
| tmp = 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
| { | |
| "PhotoshopRFLW": { | |
| "version": 0.2, | |
| "doc": { | |
| "version": "1.1.0", | |
| "timeStamp": 1393457484.487, | |
| "count": 18, | |
| "id": 1174, | |
| "file": "/Users/zuse/Desktop/Untitled-1.psd", | |
| "bounds": { |
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
| POST /_search | |
| { | |
| "query": { | |
| "filtered": { | |
| "query": { | |
| "match_all": {} | |
| }, | |
| "filter": {} | |
| } | |
| } |