(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.
(function() { | |
// Do not use this library. This is just a fun example to prove a | |
// point. | |
var Bloop = window.Bloop = {}; | |
var mountId = 0; | |
function newMountId() { | |
return mountId++; | |
} |
(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.
# Rime schema | |
# encoding: utf-8 | |
schema: | |
schema_id: bopomofo | |
name: 注音 | |
version: "1.6" | |
author: | |
- 佛振 <[email protected]> | |
description: | |
## Colours and font styles | |
## Syntax: echo -e "${FOREGROUND_COLOUR}${BACKGROUND_COLOUR}${STYLE}Hello world!${RESET_ALL}" | |
# Escape sequence and resets | |
ESC_SEQ="\x1b[" | |
RESET_ALL="${ESC_SEQ}0m" | |
RESET_BOLD="${ESC_SEQ}21m" | |
RESET_UL="${ESC_SEQ}24m" | |
# Foreground colours |
patch: | |
preset_color_schemes/metro: | |
back_color: 0xffffff | |
border_color: 0x444444 | |
hilited_back_color: 0xffffff | |
hilited_candidate_back_color: 0x444444 | |
hilited_candidate_text_color: 0xffffff | |
hilited_text_color: 0x000000 | |
name: "metro" | |
text_color: 0x000000 |