(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #!groovy | |
| # Best of Jenkinsfile | |
| # `Jenkinsfile` is a groovy script DSL for defining CI/CD workflows for Jenkins | |
| node { | |
| } |
| /* SETTINGS */ | |
| var l=''; | |
| var p=''; | |
| var area = 'https://www.ingress.com/intel?ll=35.5841133,139.4988137&z=14'; | |
| var v = 20000; //Delay between capturing screenshots, in milliseconds (1000 ms = 1 s) | |
| var reloadtime = 60000 * 120; | |
| var width = 900; //Picture width | |
| var height = 500; //Picture height | |
| var folder = './'; //Folder where to save screenshots, with / (or \) on the end. '.' means current folder. | |
| phantom.injectJs('settings.js'); |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| ----- Esc ----- | |
| Quick change directory: Esc + c | |
| Quick change directory history: Esc + c and then Esc + h | |
| Quick change directory previous entry: Esc + c and then Esc + p | |
| Command line history: Esc + h | |
| Command line previous command: Esc + p | |
| View change: Esc + t (each time you do this shortcut a new directory view will appear) | |
| Print current working directory in command line: Esc + a | |
| Switch between background command line and MC: Ctrl + o | |
| Search/Go to directory in active panel: Esc + s / Ctrl + s then start typing directory name |