Hello World.

Hello World.

Hi everyone,

Thank you for spending your time reading my blog. My name is Geyoga, and I've been an iOS developer for several years.

This is my first time trying to write a blog post. To be honest, I'm finding it challenging to translate the thoughts in my mind into words it feels much harder than the coding I do in my day-to-day work. But hey, everything has a first time, right?

Earlier this year, I realized that as a software engineer, one of the best ways to share ideas is by writing. We handle thousands of lines of code every day, and it feels natural to transform an idea into a programming language. But when it comes to sharing those same thoughts with people, it suddenly feels difficult.

The main reason I want to learn to write is so I can get better at sharing how I think and communicating my perspective with all of you.

I'm also using this first post as a small test for my blog's structure. Thanks for being here for post number one!


Basic Markdown Syntax

Headers

# Heading level 1 ## Heading level 2 ### Heading level 3 #### Heading level 4 ##### Heading level 5 ###### Heading level 6

Text Formatting

_This text will be italic_ _This will also be italic_ **This text will be bold** **This will also be bold** _You **can** combine them_ ~~This text will be strikethrough~~

Lists

Unordered List

- Item 1 - Item 2 - Item 2a - Item 2b

Ordered List

1. Item 1 2. Item 2 3. Item 3 1. Item 3a 2. Item 3b

Links

[Visit my website](https://example.com)

Images

![alt text for image](/path/to/image.jpg)

Blockquotes

> This is a blockquote. You can use it to highlight a quote or a note.

Code

Inline Code

Use `inline code` for short snippets.

Code Blocks For multi-line code blocks, you can specify the language for syntax highlighting.

```javascript function greet() { console.log("Hello, world!"); } ```

Table

| Header 1 | Header 2 | Header 3 | | :------- | :------: | -------: | | Align | Center | Right | | Cell | Cell | Cell |

Horizontal Rule

---