My very first post
Introduction
This is my first blog post. I’m excited to share my thoughts and experiences with you.
Goals
My goal with this blog is to provide valuable insights and information on various topics. I hope to inspire and educate my readers, and encourage them to share their own perspectives and experiences.
Markdown test area
Testing markdown
Testing markdown formatting for blog posts.
This is a Test. This is also a test. This is the test.
Task list
- Create a personal web page
- Publish it
- Solve global warming
List
| ID | Value | Description |
|---|---|---|
| 0x42 | Mülheim | City I was born |
Test image
Here we have an embedded image:

Test source code highlighting
Some code highlighting tests:
C++
#include <iostream>
#include <vector>
int main() {
std::vector<int> numbers = {1, 2, 3, 4, 5};
for (const auto& n : numbers) {
std::cout << n << std::endl;
}
return 0;
} Go
package main
import "fmt"
func main() {
messages := []string{"Hello", "from", "Go!"}
for i, msg := range messages {
fmt.Printf("%d: %s\n", i, msg)
}
} Rust
fn main() {
let numbers = vec![1, 2, 3, 4, 5];
let doubled: Vec<i32> = numbers.iter().map(|n| n * 2).collect();
println!("{:?}", doubled);
}Published on August 3, 2021 · 1 min read