Welcome to the new day-z.io blog!

This is a place where I'll blog about anything interesting I've been working on recently. It's mostly for myself, but I'm sure a few Internet strangers will stumble across it from time-to-time.

You're likely to find anything from security research to ai and microcontroller projects here. Generally, it will be whatever I'm working on or find interesting at the time.

Fun fact, I write these blogs in markdown and then have a neat little Python script that turns it all to HTML for me!

Here's a sneak peak of how the blogs will be formatted:

Section Heading

Use ## for main section headings. These become <h2> tags.

Regular paragraphs are separated by blank lines. You can use bold text and italic text as needed.

Subsection Heading

Use ### for subsections. These become <h3> tags.

Here's a link example: link text

Lists

Unordered lists:

Ordered lists:

  1. First step
  2. Second step
  3. Third step

Blockquotes

This is a blockquote. Use it for quotes, callouts, or emphasized text.

Code

Inline code looks like this and is useful for mentioning functionnames or variablenames.

Code blocks use triple backticks with a language identifier:

def hello_world():
    """A simple example function."""
    print("Hello, world!")
    return True

# Call the function
hello_world()
const greeting = (name) => {
    console.log(`Hello, ${name}!`);
};

greeting("world");
#include <stdio.h>

int main(void) {
    printf("Hello, world!\n");
    return 0;
}

Images

Images use the standard markdown syntax with an optional caption in quotes:

Alt text describing the image
This text becomes the caption

Now I had better go and find something interesting to do so I can blog about it!