Skip to content

Commit 30edbdf

Browse files
authored
Merge pull request #1 from automaticdai/master
move from Hugo to Jekyll
2 parents 16caf32 + 76b6cbc commit 30edbdf

File tree

72 files changed

+886
-389
lines changed

Some content is hidden

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

72 files changed

+886
-389
lines changed

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
themes/
2-
public/
1+
_site
2+
.sass-cache
3+
.jekyll-cache
4+
.jekyll-metadata
5+
vendor

404.html

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

Gemfile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
source "https://rubygems.org"
2+
# Hello! This is where you manage which Jekyll version is used to run.
3+
# When you want to use a different version, change it below, save the
4+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5+
#
6+
# bundle exec jekyll serve
7+
#
8+
# This will help ensure the proper Jekyll version is running.
9+
# Happy Jekylling!
10+
gem "jekyll", "~> 4.3.4"
11+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12+
gem "minima", "~> 2.5"
13+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
14+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
15+
# gem "github-pages", group: :jekyll_plugins
16+
# If you have any plugins, put them here!
17+
group :jekyll_plugins do
18+
gem "jekyll-feed", "~> 0.12"
19+
end
20+
21+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
22+
# and associated library.
23+
platforms :mingw, :x64_mingw, :mswin, :jruby do
24+
gem "tzinfo", ">= 1", "< 3"
25+
gem "tzinfo-data"
26+
end
27+
28+
# Performance-booster for watching directories on Windows
29+
gem "wdm", "~> 0.1", :platforms => [:mingw, :x64_mingw, :mswin]
30+
31+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
32+
# do not have a Java counterpart.
33+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

Gemfile.lock

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
bigdecimal (3.1.8)
7+
colorator (1.1.0)
8+
concurrent-ruby (1.3.4)
9+
em-websocket (0.5.3)
10+
eventmachine (>= 0.12.9)
11+
http_parser.rb (~> 0)
12+
eventmachine (1.2.7)
13+
ffi (1.17.0-x64-mingw-ucrt)
14+
forwardable-extended (2.6.0)
15+
google-protobuf (4.28.3-x64-mingw-ucrt)
16+
bigdecimal
17+
rake (>= 13)
18+
http_parser.rb (0.8.0)
19+
i18n (1.14.6)
20+
concurrent-ruby (~> 1.0)
21+
jekyll (4.3.4)
22+
addressable (~> 2.4)
23+
colorator (~> 1.0)
24+
em-websocket (~> 0.5)
25+
i18n (~> 1.0)
26+
jekyll-sass-converter (>= 2.0, < 4.0)
27+
jekyll-watch (~> 2.0)
28+
kramdown (~> 2.3, >= 2.3.1)
29+
kramdown-parser-gfm (~> 1.0)
30+
liquid (~> 4.0)
31+
mercenary (>= 0.3.6, < 0.5)
32+
pathutil (~> 0.9)
33+
rouge (>= 3.0, < 5.0)
34+
safe_yaml (~> 1.0)
35+
terminal-table (>= 1.8, < 4.0)
36+
webrick (~> 1.7)
37+
jekyll-feed (0.17.0)
38+
jekyll (>= 3.7, < 5.0)
39+
jekyll-sass-converter (3.0.0)
40+
sass-embedded (~> 1.54)
41+
jekyll-seo-tag (2.8.0)
42+
jekyll (>= 3.8, < 5.0)
43+
jekyll-watch (2.2.1)
44+
listen (~> 3.0)
45+
kramdown (2.4.0)
46+
rexml
47+
kramdown-parser-gfm (1.1.0)
48+
kramdown (~> 2.0)
49+
liquid (4.0.4)
50+
listen (3.9.0)
51+
rb-fsevent (~> 0.10, >= 0.10.3)
52+
rb-inotify (~> 0.9, >= 0.9.10)
53+
mercenary (0.4.0)
54+
minima (2.5.2)
55+
jekyll (>= 3.5, < 5.0)
56+
jekyll-feed (~> 0.9)
57+
jekyll-seo-tag (~> 2.1)
58+
pathutil (0.16.2)
59+
forwardable-extended (~> 2.6)
60+
public_suffix (6.0.1)
61+
rake (13.2.1)
62+
rb-fsevent (0.11.2)
63+
rb-inotify (0.11.1)
64+
ffi (~> 1.0)
65+
rexml (3.3.9)
66+
rouge (4.5.1)
67+
safe_yaml (1.0.5)
68+
sass-embedded (1.80.6-x64-mingw-ucrt)
69+
google-protobuf (~> 4.28)
70+
terminal-table (3.0.2)
71+
unicode-display_width (>= 1.1.1, < 3)
72+
tzinfo (2.0.6)
73+
concurrent-ruby (~> 1.0)
74+
tzinfo-data (1.2024.2)
75+
tzinfo (>= 1.0.0)
76+
unicode-display_width (2.6.0)
77+
wdm (0.2.0)
78+
webrick (1.9.0)
79+
80+
PLATFORMS
81+
x64-mingw-ucrt
82+
83+
DEPENDENCIES
84+
http_parser.rb (~> 0.6.0)
85+
jekyll (~> 4.3.4)
86+
jekyll-feed (~> 0.12)
87+
minima (~> 2.5)
88+
tzinfo (>= 1, < 3)
89+
tzinfo-data
90+
wdm (~> 0.1)
91+
92+
BUNDLED WITH
93+
2.5.10

_config.yml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
#
11+
# If you need help with YAML syntax, here are some quick references for you:
12+
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
13+
# https://learnxinyminutes.com/docs/yaml/
14+
#
15+
# Site settings
16+
# These are used to personalize your new site. If you look in the HTML files,
17+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
18+
# You can create any custom variable you would like, and they will be accessible
19+
# in the templates via {{ site.myvariable }}.
20+
21+
title: YF Robotics Lab
22+
23+
description: >- # this means to ignore newlines until "baseurl:"
24+
Write an awesome description for your new site here. You can edit this
25+
line in _config.yml. It will appear in your document head meta (for
26+
Google search results) and in your feed.xml site description.
27+
baseurl: "" # the subpath of your site, e.g. /blog
28+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
29+
twitter_username: yfrobotics
30+
github_username: yfrobotics
31+
32+
# Build settings
33+
theme: minima
34+
plugins:
35+
- jekyll-feed
36+
37+
# Exclude from processing.
38+
# The following items will not be processed, by default.
39+
# Any item listed under the `exclude:` key here will be automatically added to
40+
# the internal "default list".
41+
#
42+
# Excluded items can be processed by explicitly listing the directories or
43+
# their entries' file path in the `include:` list.
44+
#
45+
# exclude:
46+
# - .sass-cache/
47+
# - .jekyll-cache/
48+
# - gemfiles/
49+
# - Gemfile
50+
# - Gemfile.lock
51+
# - node_modules/
52+
# - vendor/bundle/
53+
# - vendor/cache/
54+
# - vendor/gems/
55+
# - vendor/ruby/
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: post
3+
title: "Welcome to Jekyll21212"
4+
date: 2024-11-12 03:51:06 +0000
5+
categories: jekyll update3
6+
---
7+
# 写在云飞机器人实验室改版之际
8+
9+
云飞实验室自2010年成立至今,风风雨雨已十载。
10+
11+
在这十年里,我结交了很多志同道合的朋友,也看到很多与我一样的内容创作者,途中因为工作、生活与家庭,最后逐渐减低更新频率,或是不得不彻底放弃。这是我们无论如何不得不面对的现实 — 我们或多或少有着一种理想主义,却在很多时候向现实蛰伏。
12+
13+
我亦是如此。从2015年博士开始后,我便少有时间再更新博客。随着时间的更迭,内容也慢慢变得陈旧,逐渐的开始流失一大部分忠实的读者。然而初心未变,很多人、包括我自己,依然希望可以继续看见优质的机器人技术内容,以及蓬勃发展的机器人开源事业。还有一些想要发声,却没有渠道的人。仅是他们的感悟或灼见,也许便能开拓出新的视角与思路。
14+
15+
如何改变这种情况?我想到了一个方法,就是“众人拾柴火焰高”,通过社区化的运作来提供可持续的、高频的、合作性的内容输出,即我称为“**面向社区的**” (Community Oritented, or CO). 之前并非没有人尝试,但并不成功。然而我认为现在这个时间点尤其合适,或许能满足“天时”的必要非充分条件:一是内容创作的水平在不断提高,大量个人博客以及优质的知乎回答可以印证这一点;二是机器人本身在不断成为主流化:仓储运输、自动驾驶、抗疫医疗都能看见机器人的身影;三是中文开源在进步,从之前的低质量论坛,不断向国际接轨,并产生了很多优秀的开源项目。
16+
17+
正是基于这些我的观察,才更加确信了此时应该对云飞实验室进行调整。改版后的云飞机器人实验室分为以下三个主要板块:
18+
19+
技术文章:主要接受机器人领域相关的技术文章投稿;
20+
开源项目:面向机器人开源以及DIY机器人项目;
21+
机器人维基:对机器人知识与信息的系统化整理,在GitHub上进行公共编辑。
22+
一个人的力量再大,也比不上两个人、以及更多无穷无尽的人一起努力的结果。我并不期望所有人可以接受这种近乎无私、只能带来个人内心满足的分享与贡献方式,但我想,哪怕只有再多一个人参与到这个项目中,那或许也是一种理想的传承,便是新的光亮。
23+
24+
Best Regards,
25+
戴晓天
26+
27+
2020年10月18日

0 commit comments

Comments
 (0)