Blog
Random thoughts about my expertise and hobby. It should be informational for yall sussy bakas.
Advent of Code 2024 - Part 1
7 min read--- viewsDec 21, 2024
It’s that time of the year again—Advent of Code is here! Let us jump into my solutions for Day 1 and Day 2, which consist of algorithmic puzzles in Rust. This blog, together with my code, will give you an insight into the various challenges, how I attempted to solve them, and the code which was written to solve them all.
Custom Next.js routing for i18n
5 min read--- viewsApr 20, 2024
i18n (internationalization) helps make websites accessible to users from different cultures and geographic locations, both technically and practically. This blog will present you some ways to do it with Next.js
The 2023 Retrospective
7 min read--- viewsDec 31, 2023
2023 is a very awesome year for me, literal character development.
SwiftUI Programmatic Routing with NavigationStack
6 min read--- viewsDec 25, 2023
We can utilize observation and implement programmatic routing with NavigationStack.
Utilizing Axios interceptors
3 min read--- viewsDec 5, 2022
Axios is a very feature-rich HTTP Client. One of its feature is interceptors. Here is how to use it nicely
Virtual Environment in Python
4 min read--- viewsOct 22, 2022
Working with virtual environment in Python is tedious for some people, here is a simple tips.