From e1c5bcb98584d03b7af6d6f1561b80d2241ad782 Mon Sep 17 00:00:00 2001 From: xAlpharax <42233094+xAlpharax@users.noreply.github.com> Date: Fri, 21 Feb 2025 23:20:43 +0200 Subject: Preapring for going live. Changes to be committed: modified: .gitignore modified: content/about.md new file: content/posts/Generating Functions.md new file: content/posts/Void Linux - A Comfy Guide.md modified: content/posts/_index.md renamed: content/posts/code_test.md -> content/posts/code-syntax-highlighting.md deleted: content/posts/some_cool_stuff.md modified: content/posts/typography.md new file: content/posts/youtube.md renamed: content/posts/How I made this Blog with Zola.md -> content/posts/zola-blog.md modified: static/Alphara.png --- content/posts/code_test.md | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 content/posts/code_test.md (limited to 'content/posts/code_test.md') diff --git a/content/posts/code_test.md b/content/posts/code_test.md deleted file mode 100644 index ed248f9..0000000 --- a/content/posts/code_test.md +++ /dev/null @@ -1,43 +0,0 @@ -+++ -title = "Test code syntax highlight" -date = 2020-10-13 -draft = false - -[taxonomies] -tags = ["test", "code"] - -[extra] -disable_comments = false -permalink = "https://alphara.art/posts/code-test/" -toc = false - -[extra.earlier] -title = "Typography" -permalink = "https://alphara.art/posts/typography/" - -[extra.later] -title = "Henlo Internet!" -permalink = "https://alphara.art/posts/how-i-made-this-blog-with-zola/" -+++ - -```rust -fn factorial(n: u64) -> u64 { - match n { - 0 => 1, - _ => n * factorial(n-1) - } -} -``` - -```typescript -const sum = (n: number) => n * (n + 1) / 2 -``` - -```python -import os ; n_cores = os.cpu_count() // 2 ; - -from concurrent.futures import ThreadPoolExecutor - -with ThreadPoolExecutor(max_workers=n_cores) as executor: - executor.map(render, range(0, len(image_array))) -``` -- cgit v1.2.3