(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.
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 |
## 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 |
# Rime schema | |
# encoding: utf-8 | |
schema: | |
schema_id: bopomofo | |
name: 注音 | |
version: "1.6" | |
author: | |
- 佛振 <[email protected]> | |
description: | |
(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++; | |
} |
https://code.google.com/p/leveldb/
# Rime schema settings | |
# encoding: utf-8 | |
schema: | |
schema_id: fuzzy_cangjie5 | |
name: 倉頡〔通配符〕 | |
version: "0.1" | |
author: | |
- 發明人 朱邦復先生 | |
- 雪齋加入通配符 |
# Rime dictionary | |
# encoding: utf-8 | |
# | |
# kuankhiunn - 廣韻羅馬字 | |
# | |
# 基於Polyhedron、有女同車整理的《廣韻全字表》製作 | |
# 拼寫方案採用有女同車羅馬字,佛振根據有女同車的修改意見改編 | |
# | |
--- |
# Rime schema | |
# encoding: utf-8 | |
schema: | |
name: "蒼頡檢字法" | |
schema_id: cangjie6 | |
author: | |
- "發明人 朱邦復先生、沈紅蓮女士" | |
dependencies: | |
- luna_pinyin |
#weasel.custom.yaml | |
patch: | |
"preset_color_schemes/Solarized_Lite": | |
author: "五磅兔 [email protected], based on Aben's 曬經石\solarized_Rock, original artwork by ethanschoonover‘s solarized" | |
back_color: 0xe3f6fd #底色 | |
border_color: 0xd5e8ee #边框色 | |
candidate_text_color: 0x837b65 #候选项颜色 | |
comment_text_color: 0xd28b26 #编码提示颜色 | |
hilited_back_color: 0xd5e8ee #编码底色 | |
hilited_candidate_back_color: 0x98a12a #首选项高亮背景色 |