Skip to content

Commit e17a670

Browse files
committed
chore: Initial commit
0 parents  commit e17a670

File tree

167 files changed

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

167 files changed

+2277
-0
lines changed

.github/workflows/spellcheck.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# https://www.javierbrea.com/blog/spellcheck-github-action/
2+
3+
name: spellcheck
4+
run-name: run spellcheck
5+
on: [push]
6+
jobs:
7+
check-spelling:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v3
12+
- name: Check Spelling
13+
uses: rojopolis/spellcheck-github-actions@0.29.0
14+
with:
15+
config_path: .spellcheck.yml
16+
task_name: Markdown

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.idea
2+
.vscode
3+
_site
4+
.sass-cache
5+
.jekyll-cache
6+
.jekyll-metadata
7+
vendor
8+
.DS_Store

.spellcheck.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# https://www.javierbrea.com/blog/spellcheck-github-action/
2+
3+
matrix:
4+
- name: Markdown
5+
expect_match: false
6+
apsell:
7+
mode: en
8+
dictionary:
9+
wordlists:
10+
- .wordlist.txt
11+
output: wordlist.dic
12+
encoding: utf-8
13+
pipeline:
14+
- pyspelling.filters.markdown:
15+
markdown_extensions:
16+
- markdown.extensions.extra:
17+
- pyspelling.filters.html:
18+
comments: false
19+
attributes:
20+
- alt
21+
ignores:
22+
- ':matches(code, pre)'
23+
- 'code'
24+
- 'pre'
25+
- 'blockquote'
26+
sources:
27+
- '*.md'
28+
- _config.yml

.wordlist.txt

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
cv
2+
permalink
3+
backend
4+
dracoon
5+
GmbH
6+
endcapture
7+
markdownify
8+
md
9+
sse
10+
APIs
11+
OpenAPI
12+
nfs
13+
ssp
14+
jse
15+
json
16+
gmail
17+
mr
18+
vladas
19+
vlmaier
20+
baseurl
21+
github
22+
https
23+
io
24+
url
25+
github
26+
linkedin
27+
maier
28+
rss
29+
jekyll
30+
taski
31+
gamified
32+
gamification
33+
seo
34+
rollout
35+
kanban
36+
OTH
37+
regensburg
38+
cham
39+
FOS
40+
wakatime
41+
TMA
42+
Brittingstraße
43+
Telemedia
44+
Hasselbach
45+
Kanzlei
46+
de
47+
impressum
48+
WebsitePolicies
49+
pre
50+
legislations
51+
internetcookies
52+
GFM
53+
css
54+
kramdown
55+
dir
56+
Auth
57+
IdP
58+
DevOps
59+
TMG
60+
tl
61+
scalability
62+
SDLC
63+
refactorings
64+
goya
65+
todo
66+
Spotify
67+
Spotify's
68+
Editr
69+
audiobooks

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: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
source "https://rubygems.org"
2+
3+
gem 'nokogiri'
4+
gem 'rack', '~> 2.2.4'
5+
gem 'rspec'
6+
gem "github-pages", "~> 228", group: :jekyll_plugins
7+
gem "minima", "~> 2.5"
8+
group :jekyll_plugins do
9+
gem "jekyll-feed", "~> 0.12"
10+
gem 'jekyll-tagging'
11+
end
12+
13+
platforms :mingw, :x64_mingw, :mswin, :jruby do
14+
gem "tzinfo", ">= 1", "< 3"
15+
gem "tzinfo-data"
16+
end
17+
18+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
19+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]
20+
gem "webrick", "~> 1.8"

0 commit comments

Comments
 (0)