(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.
| const safari = Application('Safari') | |
| const tabs = safari.windows[0].tabs | |
| const list = [] | |
| for (let i = 0; i < tabs.length; i++) { | |
| const url = tabs[i].url() | |
| if (url) { | |
| list.push(url) | |
| } | |
| } |
| use "random" | |
| use "collections" | |
| class CreationFactory | |
| let _desired: String | |
| new create(d: String) => | |
| _desired = d | |
| fun apply(c: String): Creation => |
| --- Makefile 2015-09-06 03:34:04.000000000 +0000 | |
| +++ Makefile.old 2015-09-06 03:34:33.000000000 +0000 | |
| @@ -19,10 +19,10 @@ CFLAGS = -c -O2 -pipe \ | |
| ifeq ($(shell uname), Linux) | |
| OS = Linux | |
| - CFLAGS += -m32 | |
| - PICOLISP-FLAGS = -m32 -rdynamic | |
| + #CFLAGS += -m32 | |
| + PICOLISP-FLAGS = -rdynamic |
(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.