Skip to content

Commit 958afc6

Browse files
committed
Init commit ROA 0x32 VOL.50 2025.02
0 parents  commit 958afc6

File tree

1,735 files changed

+266062
-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.

1,735 files changed

+266062
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_posts/
2+
_site/
3+
.*/
4+
/vendor
5+
.DS_Store

404.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: default
3+
---
4+
5+
<style type="text/css" media="screen">
6+
.container {
7+
margin: 10px auto;
8+
max-width: 600px;
9+
text-align: center;
10+
}
11+
h1 {
12+
margin: 30px 0;
13+
font-size: 4em;
14+
line-height: 1;
15+
letter-spacing: -1px;
16+
}
17+
</style>
18+
19+
<div class="container">
20+
<h1>404</h1>
21+
22+
<p><strong>Page not found :(</strong></p>
23+
<p>The requested page could not be found.</p>
24+
</div>

Gemfile

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
source "https://rubygems.org"
2+
# Update gems with `bundle install`. Run Jekyll with `bundle exec`, like:
3+
# bundle exec jekyll serve
4+
5+
# This will help ensure the proper Jekyll version is running.
6+
gem "jekyll", "~> 4.0.0"
7+
8+
# This is the default theme for new Jekyll sites. You may change.
9+
gem "minima", "~> 2.5"
10+
11+
# If you have any plugins, put them here!
12+
group :jekyll_plugins do
13+
gem "jekyll-feed"
14+
gem "octopress-paginate"
15+
end
16+
17+
# Windows and JRuby does not include zoneinfo files,
18+
# so bundle the tzinfo-data gem and associated library.
19+
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
20+
gem "tzinfo"
21+
gem "tzinfo-data"
22+
end
23+
24+
# Performance-booster for watching directories on Windows
25+
gem "wdm", :install_if => Gem.win_platform?

Gemfile.lock

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.0)
5+
public_suffix (>= 2.0.2, < 5.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.1.6)
8+
em-websocket (0.5.1)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0.6.0)
11+
eventmachine (1.2.7)
12+
ffi (1.12.2)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.6.0)
15+
i18n (1.8.2)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (4.0.0)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (>= 0.9.5, < 2)
22+
jekyll-sass-converter (~> 2.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 2.1)
25+
kramdown-parser-gfm (~> 1.0)
26+
liquid (~> 4.0)
27+
mercenary (~> 0.3.3)
28+
pathutil (~> 0.9)
29+
rouge (~> 3.0)
30+
safe_yaml (~> 1.0)
31+
terminal-table (~> 1.8)
32+
jekyll-feed (0.15.1)
33+
jekyll (>= 3.7, < 5.0)
34+
jekyll-sass-converter (2.1.0)
35+
sassc (> 2.0.1, < 3.0)
36+
jekyll-seo-tag (2.6.1)
37+
jekyll (>= 3.3, < 5.0)
38+
jekyll-watch (2.2.1)
39+
listen (~> 3.0)
40+
kramdown (2.3.1)
41+
rexml
42+
kramdown-parser-gfm (1.1.0)
43+
kramdown (~> 2.0)
44+
liquid (4.0.3)
45+
listen (3.2.1)
46+
rb-fsevent (~> 0.10, >= 0.10.3)
47+
rb-inotify (~> 0.9, >= 0.9.10)
48+
mercenary (0.3.6)
49+
minima (2.5.1)
50+
jekyll (>= 3.5, < 5.0)
51+
jekyll-feed (~> 0.9)
52+
jekyll-seo-tag (~> 2.1)
53+
octopress-hooks (2.6.2)
54+
jekyll (>= 2.0)
55+
octopress-paginate (1.2.0)
56+
octopress-hooks
57+
pathutil (0.16.2)
58+
forwardable-extended (~> 2.6)
59+
public_suffix (4.0.6)
60+
rb-fsevent (0.10.3)
61+
rb-inotify (0.10.1)
62+
ffi (~> 1.0)
63+
rexml (3.3.9)
64+
rouge (3.16.0)
65+
safe_yaml (1.0.5)
66+
sassc (2.2.1)
67+
ffi (~> 1.9)
68+
terminal-table (1.8.0)
69+
unicode-display_width (~> 1.1, >= 1.1.1)
70+
tzinfo (2.0.4)
71+
concurrent-ruby (~> 1.0)
72+
tzinfo-data (1.2021.2)
73+
tzinfo (>= 1.0.0)
74+
unicode-display_width (1.6.1)
75+
wdm (0.1.1)
76+
77+
PLATFORMS
78+
ruby
79+
80+
DEPENDENCIES
81+
jekyll (~> 4.0.0)
82+
jekyll-feed
83+
minima (~> 2.5)
84+
octopress-paginate
85+
tzinfo
86+
tzinfo-data
87+
wdm
88+
89+
BUNDLED WITH
90+
2.1.4

README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# PEN⓪
2+
![Agora Flag](./assets/favicon.png) ![RoA Pen](./assets/images/roa-pen0.png)
3+
4+
Preview publishing platform of the [Agora PEN Project](https://github.com/agorahub/AIPs/issues/1).
5+
6+
## Test and Deploy
7+
8+
```
9+
$ gem install bundler jekyll
10+
$ vim _config.yml # Configure to test or deploy.
11+
12+
$ bundle exec jekyll serve
13+
# => Now browse to http://localhost:4000
14+
15+
$ JEKYLL_ENV=production bundle exec jekyll build
16+
# Copy the compiled codes from _site/ to html server.
17+
```
18+
19+
## How to Contribute
20+
21+
### Write Columns
22+
23+
Please follow the [TEMPLATE](./_collections/_columns/0000-00-00-column-template.md), and commit your articles in the [_COLUMNS](./_collections/_columns).
24+
25+
- Commit via upload is recommended
26+
- Direct commit is enabled for editors
27+
- Pull request is required for members
28+
- Non-coders can post articles [HERE](https://github.com/agorahub/pen0/issues/new)
29+
30+
### Draft Heros
31+
32+
The [PEN Board](https://github.com/orgs/agorahub/teams/pen) manages this publication on behalf of the [Agora Community](https://github.com/agorahub).
33+
34+
- Join the Agora - [agorahub/_join](https://github.com/agorahub/_join)
35+
- Start exploring - [agorahub/_meta](https://github.com/agorahub/_meta)
36+
- Join the Board - [@agorahub/pen](https://github.com/orgs/agorahub/teams/pen)
37+
38+
### Improve PEN
39+
40+
- [AIP-PEN Proposal Issue](https://github.com/agorahub/AIPs/issues/1)
41+
- [AIP-PEN Project Board](https://github.com/agorahub/AIPs/projects/1)
42+
- [New Features Waitlist](https://github.com/agorahub/pen0/issues/3)
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
layout: post
3+
title : COLUMN TEMPLATE
4+
author: AUTHOR NAME
5+
date : 0000-00-00 00:00:00 +0800
6+
image : https://github.com/agorahub.png
7+
image_caption: FLAG OF THE REPUBLIC OF AGORA
8+
description: WELCOME TO THE AGORA ZINE.
9+
---
10+
11+
PLEASE READ AND USE THIS COLUMN TEMPLATE. [**CLICK HERE**]({{site.url}}{{site.baseurl}}/about) FOR A FULL GUIDE.
12+
13+
EXCERPT ENDS (<200 WORDS).
14+
15+
<!--more-->
16+
17+
### USE THE TEMPLATE
18+
19+
1- [**DOWNLOAD**](https://github.com/{{site.gh_repo}}/blob/master/_collections/_columns/0000-00-00-column-template.md) AND RENAME: <br>
20+
`YYYY-MM-DD-name-of-post.md`
21+
22+
2- EDIT IT AS YOUR OWN.
23+
24+
### COMMIT YOUR POST
25+
26+
3- [**COMMIT**](https://github.com/{{site.gh_repo}}/blob/master/_collections/_columns/) VIA UPLOAD.†
27+
28+
† MAY NEED A PULL REQUEST. [**VISIT**]({{site.url}}{{site.baseurl}}/about) THE FULL GUIDE.
29+
30+
<!--END-->
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: post
3+
title: "梁二:不栖"
4+
author: Pang
5+
date: 2019-12-18 00:00:00 +0800
6+
image: https://github.com/agorahub/_meta/raw/agoran/theagora/pen0/assets/images/c1/c1-20191217-01.jpg
7+
image_caption: Cycling in the Alps
8+
---
9+
不好意思重发一次,之前在路上无法在文章里放视频。
10+
11+
这段MV是今年春天三月到六月时,我们经过法国和瑞士时拍的,主要记录我们每天扎营做饭以及路上见到的各种人物、动物、风景。
12+
13+
前后9分钟,没有说什么话,但配着Mew的Comforting Sounds,观看时最好带上耳机。
14+
15+
现在看来,那段旅程好像发生在另一个世纪,天真而遥远,每天就是最基本最简单的生活。虽然再过三个月我们又要回到路上,不知道是否还能进入那种无忧无虑的状态。
16+
17+
最后一段是从法国翻越一个山坳到达瑞士,看到云中的城市时,我兴奋地大叫。那天是六月九号。
18+
19+
2019年可能是我人生中最重要的一年。之前每个10年,我都以为自己变化足够大了,可能人到中年,会平稳下来,不再改变观念,不再接受不再愤怒不再恐惧不再茫然。这一年是一个响亮的反证。
20+
21+
新年快乐。
22+
23+
<!--more-->
24+

0 commit comments

Comments
 (0)