~/my_blog_

2023-11-05

Welcome to My Terminal Blog

This is my first post in this terminal-styled blog. Here I'll share various thoughts and technical articles.

Example code snippet: print("Hello World!")

2023-11-04

Setting Up a New Project

Today I started a new Python project. Here are the steps I followed:

$ mkdir new-project
$ cd new-project
$ python -m venv venv
$ source venv/bin/activate