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
| // Model: https://github.com/OpenUserJs/OpenUserJS.org/blob/master/models/script.js | |
| // Generator: http://www.json-generator.com/ | |
| // Template: | |
| [ | |
| '{{repeat(100)}}', | |
| { | |
| id: '{{index()}}', | |
| guid: '{{guid()}}', | |
| name: '{{company()}}', |
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
| OpenUserJS.org@0.1.3 c:\Users\Admin\Code\Git\OpenUserJS.org | |
| ├── async@0.8.0 | |
| ├─┬ aws-sdk@2.0.0-rc.15 | |
| │ ├── aws-sdk-apis@2.0.8 | |
| │ ├─┬ xml2js@0.2.4 | |
| │ │ └── sax@0.6.0 | |
| │ └── xmlbuilder@0.4.2 | |
| ├─┬ connect-mongo@0.4.1 | |
| │ └─┬ mongodb@1.3.23 | |
| │ ├── bson@0.2.5 |
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
| /** | |
| ** ______ _ _____ _ _ _ | |
| ** | _ \ | | / ___| | | (_) | | | |
| ** | | | |__ _ _ __| | __ \ `--. ___ | | __ _ _ __ _ _______ __| | | |
| ** | | | / _` | '__| |/ / `--. \/ _ \| |/ _` | '__| |_ / _ \/ _` | | |
| ** | |/ / (_| | | | < /\__/ / (_) | | (_| | | | |/ / __/ (_| | | |
| ** |___/ \__,_|_| |_|\_\ \____/ \___/|_|\__,_|_| |_/___\___|\__,_| | |
| ** | |
| ** Quassel Theme | |
| ** |
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
| @rem @echo off | |
| @rem --------- | |
| @rem Variables | |
| @rem --------- | |
| @rem Input/Ouput Root Directories | |
| set "source_dir=C:\Users\Admin\Code\Git\quassel" | |
| set "build_dir=C:\Users\Admin\Code\Git\quassel\build" |
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
| module.exports = | |
| ### | |
| === Commands | |
| ### | |
| onStuffCommand: -> | |
| console.log 'stuff' | |
| ### | |
| === PackageManager Hooks |
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 'mouseWheelScroll', ($timeout) -> | |
| return { | |
| restrict: 'A' | |
| # require: '^$ionicScroll' | |
| link: ($scope, $element, $attrs) -> | |
| scrollCtrl = $element.controller('$ionicScroll') | |
| console.log scrollCtrl | |
| unless scrollCtrl | |
| return console.error('mouseWheelScroll must be attached to a $ionicScroll controller.') |
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
| ; Dolphin Hotkeys | |
| ; | |
| ; FEATURES: | |
| ; * Bind L2 on a Dualshock controller to Tab, which | |
| ; will unthrottle the frame rate. Aka Turbo key. | |
| ; * Autosave every minute to Save Slots 4-8. | |
| ; * Manually save with the Dualshock select button. | |
| SetTimer, AutoSaveTicker, 60000 |
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 devtools = atom.getCurrentWindow().getDevToolsWebContents(); | |
| var f = function() { | |
| WebInspector.inspectorView._tabbedPane.selectTab('timeline'); | |
| }; | |
| var fString = f.toString(); | |
| fString = fString.substring(fString.indexOf('{') + 1, fString.lastIndexOf('}')); | |
| devtools.executeJavaScript(fString); | |

