Skip to content

Commit c7d0b35

Browse files
ok
Signed-off-by: Andy-Python-Programmer <[email protected]>
1 parent 22835fc commit c7d0b35

34 files changed

+195
-44
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
[submodule "oceanic-zen"]
2-
path = "themes/oceanic-zen"
3-
url = "https://github.com/barlog-m/oceanic-zen"

config.toml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,26 @@ compile_sass = true
66

77
# Whether to build a search index to be used later on by a JavaScript library
88
build_search_index = true
9-
theme = "oceanic-zen"
9+
theme = "serene"
1010

1111
[markdown]
1212
# Whether to do syntax highlighting
1313
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
1414
highlight_code = true
1515

1616
[extra]
17-
author = "Andy"
18-
github = "Andy-Python-Programmer"
19-
# Put all your custom variables here
17+
name = "Andy"
18+
links = [
19+
{ name = "GitHub", icon = "ri-github-line", url = "https://github.com/Andy-Python-Programmer" },
20+
]
21+
22+
avatar = "https://avatars.githubusercontent.com/u/62820092?v=4"
23+
id = "Andy-Python-Programmer#4223"
24+
bio = "14 year old programmer and free software enthusiast"
25+
26+
#=========================================================================================
27+
# Footer
28+
#=========================================================================================
29+
footer_copyright_name = "Andy"
30+
footer_copyright_year = "2022"
31+
footer_credits = true

content/_index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
+++
2-
sort_by = "date"
3-
+++
2+
template = 'home.html'
3+
4+
[extra]
5+
lang = 'en'
6+
+++

content/blog/_index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
+++
2+
sort_by = "date"
3+
template = "blog.html"
4+
page_template = "post.html"
5+
insert_anchor_links = "none"
6+
generate_feed = true
7+
8+
[extra]
9+
lang = 'en'
10+
show_post_num = 10
11+
+++

content/code/mutex_vs_rwlock.md renamed to content/blog/mutex_vs_rwlock.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
+++
2-
title = "Mutex VS RwLock"
3-
date = 2022-04-06
2+
title = ""
3+
date = 2022-01-01
4+
5+
[taxonomies]
6+
categories = ["Mutex vs RWLock"]
7+
tags = ["rust", "mutex", "rwlock", "locking", "c", "c++"]
8+
9+
[extra]
10+
lang = "en"
11+
toc = true
412
+++
513

614
The difference between `Mutex` and a `RwLock` is that `RwLock<T>` requires more bounds for `T` to

content/code/_index.md

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

content/opinions/_index.md

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

content/opinions/c.md

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

content/opinions/microkernels.md

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

content/opinions/rust.md

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

0 commit comments

Comments
 (0)