Skip to content

Commit 3055d9d

Browse files
committed
hi
1 parent a8e101d commit 3055d9d

File tree

114 files changed

+12306
-2304
lines changed

Some content is hidden

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

114 files changed

+12306
-2304
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Files generated by Jekyll
2+
_site
3+
.sass-cache/
4+
.jekyll-cache/
5+
.jekyll-metadata
6+
7+
# Files generated by Bundler
8+
.bundle/
9+
vendor/
10+
11+
# Gems
12+
*.gem
13+
14+
# Files generated by OS
15+
.DS_Store
16+
.DS_Store?
17+
._*
18+
.Spotlight-V100
19+
.Trashes
20+
ehthumbs.db
21+
Thumbs.db
22+
_posts/2018-10-20-markdown-posts.md
23+
ideas

404.html

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,7 @@
11
---
22
layout: default
3+
permalink: /404.html
4+
title: 404 - Page not found
35
---
46

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>
7+
<img src="{{site.url}}{{site.baseurl}}/assets/404.jpg">

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 74 deletions
This file was deleted.

Gemfile

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
1-
# frozen_string_literal: true
2-
31
source "https://rubygems.org"
4-
gemspec
52

6-
gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]
7-
gem "kramdown-parser-gfm" if ENV["JEKYLL_VERSION"] == "~> 3.9"
3+
gem "jekyll"
4+
gem "webrick"
5+
gem 'kramdown'
6+
gem 'json'
7+
gem 'rouge'
8+
gem 'kramdown-parser-gfm'
9+
gem 'kramdown-math-katex'
10+
gem 'jekyll-paginate'
11+
gem 'jekyll-sitemap'
12+
gem 'jekyll-seo-tag'
13+
gem 'jekyll-feed'
14+
gem 'csv'
15+
gem 'logger'
16+
gem 'base64'
17+
gem 'bigdecimal'

Gemfile.lock

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
base64 (0.2.0)
7+
bigdecimal (3.1.9)
8+
colorator (1.1.0)
9+
concurrent-ruby (1.3.4)
10+
csv (3.3.2)
11+
em-websocket (0.5.3)
12+
eventmachine (>= 0.12.9)
13+
http_parser.rb (~> 0)
14+
eventmachine (1.2.7)
15+
execjs (2.10.0)
16+
ffi (1.17.0)
17+
ffi (1.17.0-x86_64-darwin)
18+
forwardable-extended (2.6.0)
19+
http_parser.rb (0.8.0)
20+
i18n (1.14.6)
21+
concurrent-ruby (~> 1.0)
22+
jekyll (4.2.2)
23+
addressable (~> 2.4)
24+
colorator (~> 1.0)
25+
em-websocket (~> 0.5)
26+
i18n (~> 1.0)
27+
jekyll-sass-converter (~> 2.0)
28+
jekyll-watch (~> 2.0)
29+
kramdown (~> 2.3)
30+
kramdown-parser-gfm (~> 1.0)
31+
liquid (~> 4.0)
32+
mercenary (~> 0.4.0)
33+
pathutil (~> 0.9)
34+
rouge (~> 3.0)
35+
safe_yaml (~> 1.0)
36+
terminal-table (~> 2.0)
37+
jekyll-feed (0.17.0)
38+
jekyll (>= 3.7, < 5.0)
39+
jekyll-paginate (1.1.0)
40+
jekyll-sass-converter (2.2.0)
41+
sassc (> 2.0.1, < 3.0)
42+
jekyll-seo-tag (2.8.0)
43+
jekyll (>= 3.8, < 5.0)
44+
jekyll-sitemap (1.4.0)
45+
jekyll (>= 3.7, < 5.0)
46+
jekyll-watch (2.2.1)
47+
listen (~> 3.0)
48+
json (2.8.2)
49+
katex (0.10.0)
50+
execjs (~> 2.8)
51+
kramdown (2.4.0)
52+
rexml
53+
kramdown-math-katex (1.0.1)
54+
katex (~> 0.4)
55+
kramdown (~> 2.0)
56+
kramdown-parser-gfm (1.1.0)
57+
kramdown (~> 2.0)
58+
liquid (4.0.4)
59+
listen (3.9.0)
60+
rb-fsevent (~> 0.10, >= 0.10.3)
61+
rb-inotify (~> 0.9, >= 0.9.10)
62+
logger (1.6.5)
63+
mercenary (0.4.0)
64+
pathutil (0.16.2)
65+
forwardable-extended (~> 2.6)
66+
public_suffix (6.0.1)
67+
rb-fsevent (0.11.2)
68+
rb-inotify (0.11.1)
69+
ffi (~> 1.0)
70+
rexml (3.3.9)
71+
rouge (3.30.0)
72+
safe_yaml (1.0.5)
73+
sassc (2.4.0)
74+
ffi (~> 1.9)
75+
terminal-table (2.0.0)
76+
unicode-display_width (~> 1.1, >= 1.1.1)
77+
unicode-display_width (1.8.0)
78+
webrick (1.9.0)
79+
80+
PLATFORMS
81+
arm64-darwin-24
82+
x86_64-darwin
83+
84+
DEPENDENCIES
85+
base64
86+
bigdecimal
87+
csv
88+
jekyll
89+
jekyll-feed
90+
jekyll-paginate
91+
jekyll-seo-tag
92+
jekyll-sitemap
93+
json
94+
kramdown
95+
kramdown-math-katex
96+
kramdown-parser-gfm
97+
logger
98+
rouge
99+
webrick
100+
101+
BUNDLED WITH
102+
2.5.18

0 commit comments

Comments
 (0)