Hey Pals !

It has been a long time goal for me to have a personal blog and atlast it is live now. Hope i will write frequently.

I am using hugo static site generator and github pages to host this blog.

If you are curious about the theme which i am using feel free to checkout tranquilpeak

Since I am new to using static site generators I am going to test the features in the rest of the blog feel free to stop reading if you are not here for it.

Alerts

Hello World !

வணக்கம்

Ha! utf-8 support.

அபாயம்

None

Text Hightlighting

Red color highlight.

Red color highlight.

Red color highlight.

Images

Random Face Sculpt Using Blender 3D Random Face Sculpt Using Blender 3D

Github Gists

Code Snippets

test
1
2
3
4
5
6
7
8
from flask import Flask
app=Flask(__name__)
@app.route('/')
def main():
	return "Hey There!"

if __name__=="__main__":
    app.run()