Tanay Karnik
189 words, 1 minute read
Hello World
Oct 15, 2023

Many people have a different idea about a first post. For me, I thought it would be a good idea to dive in and test out how different elements of this blog look.

So here goes.

Headings#

Let’s see how headings work.

What’s a Subheading?#

Subheadings can help organize my thoughts.

Now, this is Getting Deep#

Hmm, some posts can also make use of sub-subheadings.

Quotes#

I’ve heard that quotes can make your text more impactful. Let’s give it a try.

“Sometimes a hypocrite is nothing more than a man in the process of changing.”

  • Dalinar Kholin, from the Stormlight Archive by Brandon Sanderson

Code#

I’m a developer so let’s see how codeblocks look.

1
function add(x) {
2
return function (y) {
3
return x + y;
4
};
5
}
6
console.log(add(3)(5)); // Outputs 8

1
def greet(name):
2
print(f"Hello, {name}!")

Images#

They say a picture is worth a thousand words.

Laptop Dark Background

Lists#

What about lists? Can I create both ordered and unordered lists?

  • Here’s an unordered list
  • Another item
  • Third item, for good measure
  1. This is an ordered list
  2. Second Item
  3. Third Item

I wonder how hyperlinks work here. Here’s a link to my Twitter.

Finally, let’s divide the content with a horizontal line.


Great! It’s coming together quite nicely. Now, I just need to start writing some real content.