(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.
| ;; Required setup for emacs init file | |
| (package-initialize) | |
| (require 'org) | |
| (require 'org-protocol) | |
| ;; Set 'my-org-directory' to the base directory of all of | |
| ;; your org files (with a trailing slash). For me it's: | |
| (setq my-org-directory "/scp:org:/home/orgmode/") | |
| ;; But it could be a local directory for you |
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: cyan; icon-glyph: pray; | |
| /* ********************************************** | |
| by : @supermamon | |
| on : 16 Oct 2021 | |
| ver: 1.0.0 | |
| for: https://www.reddit.com/r/Scriptable/comments/q8r061/make_widget_table_from_data_scraped_from_website/ | |
| ********************************************** */ |
(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.
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |