(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.
| Useful Command-line Commands on Windows | |
| <a target="_new" href="https://serverfault.com/questions/3780/useful-command-line-commands-on-windows?rq=1">Reference from StackOverflow site</a> | |
| && - Command Chaining | |
| %SYSTEMROOT%\System32\rcimlby.exe -LaunchRA - Remote Assistance (Windows XP) | |
| appwiz.cpl - Programs and Features (Formerly Known as "Add or Remove Programs") | |
| appwiz.cpl @,2 - Turn Windows Features On and Off (Add/Remove Windows Components pane) | |
| arp - Displays and modifies the IP-to-Physical address translation tables used by address resolution protocol (ARP) | |
| at - Schedule tasks either locally or remotely without using Scheduled Tasks | |
| bootsect.exe - Updates the master boot code for hard disk partitions to switch between BOOTMGR and NTLDR |
| {"lastUpload":"2020-04-11T12:55:45.965Z","extensionVersion":"v3.4.3"} |
| // Node.js CheatSheet. | |
| // Download the Node.js source code or a pre-built installer for your platform, and start developing today. | |
| // Download: http://nodejs.org/download/ | |
| // More: http://nodejs.org/api/all.html | |
| // 0. Synopsis. | |
| // http://nodejs.org/api/synopsis.html |
(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.
| /* ******************************************************************************************* | |
| * THE UPDATED VERSION IS AVAILABLE AT | |
| * https://github.com/LeCoupa/awesome-cheatsheets | |
| * ******************************************************************************************* */ | |
| // 0. Synopsis. | |
| // http://nodejs.org/api/synopsis.html |
| <script type="text/javascript"> | |
| (function () { | |
| "use strict"; | |
| // once cached, the css file is stored on the client forever unless | |
| // the URL below is changed. Any change will invalidate the cache | |
| var css_href = './index_files/web-fonts.css'; | |
| // a simple event handler wrapper | |
| function on(el, ev, callback) { | |
| if (el.addEventListener) { | |
| el.addEventListener(ev, callback, false); |
| function spreadsheetToPDF(key) { | |
| var oauthConfig = UrlFetchApp.addOAuthService("spreadsheets"); | |
| var scope = "https://spreadsheets.google.com/feeds" | |
| oauthConfig.setConsumerKey("anonymous"); | |
| oauthConfig.setConsumerSecret("anonymous"); | |
| oauthConfig.setRequestTokenUrl("https://www.google.com/accounts/OAuthGetRequestToken?scope="+scope); | |
| oauthConfig.setAuthorizationUrl("https://accounts.google.com/OAuthAuthorizeToken"); | |
| oauthConfig.setAccessTokenUrl("https://www.google.com/accounts/OAuthGetAccessToken"); |
In this document I am using Sass's SCSS syntax. You can choose to use the indented syntax in sass, if you prefer it, it has no functional differences from the SCSS syntax.
For Less, I'm using the JavaScript version because this is what they suggest on the website. The ruby version may be different.