Skip to content

Commit c1d6871

Browse files
committed
Add 'blog/' from commit '597c8a7acd83d5983749c12c7acf2cd6cd517c4d'
git-subtree-dir: blog git-subtree-mainline: e1c23a7 git-subtree-split: 597c8a7
2 parents e1c23a7 + 597c8a7 commit c1d6871

File tree

128 files changed

+7837
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+7837
-0
lines changed

blog/.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.DS_Store
2+
Thumbs.db
3+
db.json
4+
debug.log
5+
node_modules/
6+
public/
7+
.deploy/

blog/_config.yml

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
# Hexo Configuration
2+
## Docs: http://hexo.io/docs/configuration.html
3+
## Source: https://github.com/tommy351/hexo/
4+
5+
# Site
6+
title: RIME | 中州韻輸入法引擎
7+
subtitle: 中州韻輸入法 思想用鍵盤表達
8+
description: Le blog de la Rime
9+
author: 佛振@式恕堂
10+
email: chen.sst@gmail.com
11+
language: zh
12+
13+
# URL
14+
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
15+
url: http://rime.github.io
16+
root: /
17+
permalink: :year/:month/:day/:title/
18+
tag_dir: tags
19+
archive_dir: archives
20+
category_dir: categories
21+
code_dir: downloads/code
22+
23+
# Directory
24+
source_dir: source
25+
public_dir: public
26+
27+
# Writing
28+
new_post_name: :title.md # File name of new posts
29+
default_layout: post
30+
auto_spacing: false # Add spaces between asian characters and western characters
31+
titlecase: false # Transform title into titlecase
32+
external_link: true # Open external links in new tab
33+
max_open_file: 100
34+
multi_thread: true
35+
filename_case: 0
36+
render_drafts: false
37+
post_asset_folder: false
38+
relative_link: false
39+
highlight:
40+
enable: true
41+
line_number: true
42+
tab_replace:
43+
44+
# Category & Tag
45+
default_category: uncategorized
46+
category_map:
47+
tag_map:
48+
49+
# Archives
50+
## 2: Enable pagination
51+
## 1: Disable pagination
52+
## 0: Fully Disable
53+
archive: 2
54+
category: 2
55+
tag: 2
56+
57+
# Server
58+
## Hexo uses Connect as a server
59+
## You can customize the logger format as defined in
60+
## http://www.senchalabs.org/connect/logger.html
61+
port: 4000
62+
server_ip: 0.0.0.0
63+
logger: false
64+
logger_format:
65+
66+
# Date / Time format
67+
## Hexo uses Moment.js to parse and display date
68+
## You can customize the date format as defined in
69+
## http://momentjs.com/docs/#/displaying/format/
70+
date_format: MMM D YYYY
71+
time_format: H:mm:ss
72+
73+
# Pagination
74+
## Set per_page to 0 to disable pagination
75+
per_page: 10
76+
pagination_dir: page
77+
78+
# Disqus
79+
disqus_shortname: rimeime
80+
81+
# Extensions
82+
## Plugins: https://github.com/tommy351/hexo/wiki/Plugins
83+
## Themes: https://github.com/tommy351/hexo/wiki/Themes
84+
theme: freewill
85+
exclude_generator:
86+
#- home
87+
88+
# Deployment
89+
## Docs: http://hexo.io/docs/deployment.html
90+
deploy:
91+
type: github
92+
repository: git@github.com:rimeime/rimeime.github.io.git
93+
branch: master

blog/package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "hexo-site",
3+
"version": "2.8.3",
4+
"private": true,
5+
"dependencies": {
6+
"hexo-renderer-ejs": "*",
7+
"hexo-renderer-marked": "*",
8+
"hexo-renderer-stylus": "*",
9+
"hexo-tag-bootstrap": "0.0.6"
10+
}
11+
}

blog/scaffolds/draft.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
title: {{ title }}
2+
tags:
3+
---

blog/scaffolds/page.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
title: {{ title }}
2+
date: {{ date }}
3+
---

blog/scaffolds/photo.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
layout: {{ layout }}
2+
title: {{ title }}
3+
date: {{ date }}
4+
tags:
5+
---

blog/scaffolds/post.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
title: {{ title }}
2+
date: {{ date }}
3+
tags:
4+
---

blog/source/_posts/hello-world.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
title: 中州韻輸入法 思想用鍵盤表達
2+
date: 2013-04-28 15:01:49
3+
tags:
4+
---
5+
6+
寫輸入法的目的是更舒服地用鍵盤寫字。
7+
而今博客開張了。[Rime](http://rime.github.io) 終於有了用武之地。

blog/source/_posts/luna-pinyin.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
title: 中秋與朙月拼音
2+
date: 2013-09-19 21:25:33
3+
tags:
4+
---
5+
6+
中秋之夜,可想在部落格上寫二句。
7+
8+
於是 `vim ~/Library/Rime/squirrel.custom.yaml` 寫下
9+
10+
```YAML
11+
patch:
12+
style/color_scheme: luna
13+
```
14+
15+
部署後,按 `Control+~` 切換到【朙月拼音】。
16+
17+
![此刻正在寫字的朙月拼音](/images/mingyue-pinyin-2013-09-19.png)
18+
19+
<!-- more -->
20+
21+
兩年前的中秋,【朙月拼音】[第一個版本](https://code.google.com/p/rimeime/downloads/detail?name=luna-pinyin-dev-251.zip)開發完成。
22+
23+
當此時,用 C++ 重寫的 librime 剛剛具備輸入法基礎框架及詞表查詢部份,搭配定名爲【小狼毫】的 Windows 輸入法前端程序,竟然真的可以打字了。
24+
25+
![早期的朙月拼音](/images/mingyue-pinyin-sep-2011.jpg)
26+
27+
當此時,一輪明月,寄託了這小小的一份激動。
28+
29+
每當深夜裏將鍵盤收入行囊,匆匆踏過月明地,映入眼中的卻是滿滿的希望。
30+
31+
![《究極筆記》記錄着最初的朙月拼音](/images/mingyue-pinyin.jpg)

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy