1 minute read

Hello and welcome to my new blog! This is my first post using Jekyll with the Minimal Mistakes theme. Let me show you what this theme can do.

What to Expect

I’ll be writing about:

  • Technology and development
  • Projects I’m working on
  • Things I find interesting

Text Formatting

You can write text in bold, italics, or strikethrough. You can also use inline code for technical terms.

“The best way to predict the future is to invent it.”

Alan Kay

Code Blocks

Here’s an example of syntax-highlighted code:

def hello_world():
    """A simple greeting function."""
    message = "Hello, World!"
    print(message)
    return message

if __name__ == "__main__":
    hello_world()

And some JavaScript:

const greeting = (name) => {
  console.log(`Hello, ${name}!`);
};

greeting('Reader');

Lists

Unordered

  • First item
    • Nested item one
    • Nested item two
  • Second item
  • Third item

Ordered

  1. First step
  2. Second step
    1. Sub-step A
    2. Sub-step B
  3. Third step

Tables

Feature Status Notes
Responsive Yes Works on all devices
Dark Mode Available Multiple skins
Search Enabled Built-in site search
Comments Optional Disqus, Discourse, etc.

Notices

Pro tip: This is a notice block. Great for highlighting important information.

Warning: Be careful with this one!

Success: You’ve configured everything correctly.

What’s Next

Stay tuned for more content! In the meantime, feel free to explore the About page to learn more about this blog.

Get Started

Updated: