Skip to content

Commit c54ddf0

Browse files
committed
blog
1 parent 86bfbd2 commit c54ddf0

File tree

107 files changed

+2479
-16000
lines changed

Some content is hidden

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

107 files changed

+2479
-16000
lines changed

.editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_size = 2
9+
indent_style = space
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true

.gitignore

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Ignore docs files
2+
_gh_pages
3+
_site
4+
.ruby-version
5+
.sass-cache
6+
.jekyll-cache
7+
8+
# Numerous always-ignore extensions
9+
*.diff
10+
*.err
11+
*.orig
12+
*.log
13+
*.rej
14+
*.swo
15+
*.swp
16+
*.zip
17+
*.vi
18+
*~
19+
20+
# OS or Editor folders
21+
.DS_Store
22+
._*
23+
Thumbs.db
24+
.cache
25+
.project
26+
.settings
27+
.tmproj
28+
*.esproj
29+
nbproject
30+
*.sublime-project
31+
*.sublime-workspace
32+
.idea
33+
34+
# Komodo
35+
*.komodoproject
36+
.komodotools
37+
38+
# grunt-html-validation
39+
validation-status.json
40+
validation-report.json
41+
42+
# Folders to ignore
43+
node_modules
44+
45+
# Ruby gems
46+
*.gem

404.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: default
3+
title: "404: Page not found"
4+
permalink: 404.html
5+
---
6+
7+
<div class="page">
8+
<h1 class="page-title">404: Page not found</h1>
9+
<p class="lead">Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. <a href="{{ "/" | relative_url }}">Head back home</a> to try finding it again.</p>
10+
</div>

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "https://rubygems.org"
2+
gemspec
3+
4+
gem 'jekyll-compose', group: [:jekyll_plugins]

Gemfile.lock

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
PATH
2+
remote: .
3+
specs:
4+
not-pure-poole (0.1.0)
5+
jekyll (~> 3.9)
6+
jekyll-feed (~> 0.13)
7+
jekyll-gist (~> 1.5)
8+
jekyll-paginate (~> 1.1)
9+
jekyll-seo-tag (~> 2.6)
10+
jekyll-sitemap (~> 1.4)
11+
kramdown-parser-gfm (~> 1.1)
12+
13+
GEM
14+
remote: https://rubygems.org/
15+
specs:
16+
addressable (2.7.0)
17+
public_suffix (>= 2.0.2, < 5.0)
18+
colorator (1.1.0)
19+
concurrent-ruby (1.1.7)
20+
em-websocket (0.5.2)
21+
eventmachine (>= 0.12.9)
22+
http_parser.rb (~> 0.6.0)
23+
eventmachine (1.2.7)
24+
faraday (1.0.1)
25+
multipart-post (>= 1.2, < 3)
26+
ffi (1.13.1)
27+
forwardable-extended (2.6.0)
28+
http_parser.rb (0.6.0)
29+
i18n (0.9.5)
30+
concurrent-ruby (~> 1.0)
31+
jekyll (3.9.0)
32+
addressable (~> 2.4)
33+
colorator (~> 1.0)
34+
em-websocket (~> 0.5)
35+
i18n (~> 0.7)
36+
jekyll-sass-converter (~> 1.0)
37+
jekyll-watch (~> 2.0)
38+
kramdown (>= 1.17, < 3)
39+
liquid (~> 4.0)
40+
mercenary (~> 0.3.3)
41+
pathutil (~> 0.9)
42+
rouge (>= 1.7, < 4)
43+
safe_yaml (~> 1.0)
44+
jekyll-compose (0.12.0)
45+
jekyll (>= 3.7, < 5.0)
46+
jekyll-feed (0.15.0)
47+
jekyll (>= 3.7, < 5.0)
48+
jekyll-gist (1.5.0)
49+
octokit (~> 4.2)
50+
jekyll-paginate (1.1.0)
51+
jekyll-sass-converter (1.5.2)
52+
sass (~> 3.4)
53+
jekyll-seo-tag (2.6.1)
54+
jekyll (>= 3.3, < 5.0)
55+
jekyll-sitemap (1.4.0)
56+
jekyll (>= 3.7, < 5.0)
57+
jekyll-watch (2.2.1)
58+
listen (~> 3.0)
59+
kramdown (2.3.0)
60+
rexml
61+
kramdown-parser-gfm (1.1.0)
62+
kramdown (~> 2.0)
63+
liquid (4.0.3)
64+
listen (3.2.1)
65+
rb-fsevent (~> 0.10, >= 0.10.3)
66+
rb-inotify (~> 0.9, >= 0.9.10)
67+
mercenary (0.3.6)
68+
multipart-post (2.1.1)
69+
octokit (4.18.0)
70+
faraday (>= 0.9)
71+
sawyer (~> 0.8.0, >= 0.5.3)
72+
pathutil (0.16.2)
73+
forwardable-extended (~> 2.6)
74+
public_suffix (4.0.6)
75+
rake (12.3.3)
76+
rb-fsevent (0.10.4)
77+
rb-inotify (0.10.1)
78+
ffi (~> 1.0)
79+
rexml (3.2.4)
80+
rouge (3.23.0)
81+
safe_yaml (1.0.5)
82+
sass (3.7.4)
83+
sass-listen (~> 4.0.0)
84+
sass-listen (4.0.0)
85+
rb-fsevent (~> 0.9, >= 0.9.4)
86+
rb-inotify (~> 0.9, >= 0.9.7)
87+
sawyer (0.8.2)
88+
addressable (>= 2.3.5)
89+
faraday (> 0.8, < 2.0)
90+
91+
PLATFORMS
92+
ruby
93+
94+
DEPENDENCIES
95+
bundler (~> 2.1)
96+
jekyll-compose
97+
not-pure-poole!
98+
rake (~> 12.0)
99+
100+
BUNDLED WITH
101+
2.1.4

LICENSE.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Released under MIT License
2+
3+
Copyright (c) 2013 Mark Otto.
4+
Copyright (c) 2020 Songzi Vong.
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
7+
8+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
9+
10+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)