| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
| ⌃ ` | python console |
| ⌘⇧N | new window (useful for new project) |
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
| /** | |
| * # Full Site to Markdown Extractor (Bookmarklet) | |
| * | |
| * A browser bookmarklet that converts the current page — and optionally other same-origin pages you pick — into clean Markdown, copied straight to your clipboard. | |
| * | |
| * ## Features | |
| * | |
| * - Converts headings, paragraphs, lists (nested), blockquotes, code blocks, tables, and links to Markdown. | |
| * - Lets you pick additional same-origin pages (via a link-selection modal) to bundle into one combined Markdown document. | |
| * - Optional toggles: include images, include inline content links, include links on page section headings, include a "pages selected" index. |
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
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
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
| // const a = [1, [], [2, 3, [4], | |
| // [5], | |
| // [1, 2, 3, 4, [5, [6], | |
| // [4], [], | |
| // ]] | |
| // ], 3, 6]; | |
| // const b = [1, 2, 3]; | |
| /** | |
| * Function to flat arrays |
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
| app.directive('infiniteScroll', [ | |
| '$rootScope', '$window', '$timeout', function($rootScope, $window, $timeout) { | |
| return { | |
| link: function(scope, elem, attrs) { | |
| var checkWhenEnabled, handler, scrollDistance, scrollEnabled; | |
| $window = angular.element($window); | |
| elem.css('overflow-y', 'scroll'); | |
| elem.css('overflow-x', 'hidden'); | |
| elem.css('height', 'inherit'); | |
| scrollDistance = 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <!-- Title & Meta --> | |
| <title>Frontend tests</title> | |
| <meta charset="utf-8"> | |
| <!-- Stylesheets --> | |
| <link rel="stylesheet" href="lib/mocha/mocha.css"> | |
| </head> |
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
| #!/usr/bin/env python |
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
| // ---------------------------------------------------------- | |
| // A short snippet for detecting versions of IE in JavaScript | |
| // without resorting to user-agent sniffing | |
| // ---------------------------------------------------------- | |
| // If you're not in IE (or IE version is less than 5) then: | |
| // ie === undefined | |
| // If you're in IE (>=5) then you can determine which version: | |
| // ie === 7; // IE7 | |
| // Thus, to detect IE: | |
| // if (ie) {} |