Migrate From Bootstrap 5 to Pico CSS Right Now
TLDR; Bootstrap seems to incorporate the least favorable aspects of both Pico CSS and Tailwind CSS. So I’ll be using Pico CSS for quick prototypes and Tailwind CSS for more complex systems.
TLDR; Bootstrap seems to incorporate the least favorable aspects of both Pico CSS and Tailwind CSS. So I’ll be using Pico CSS for quick prototypes and Tailwind CSS for more complex systems.
Explanation of how DDL in Waiting for table metadata lock status caused the table to be locked.
Scheduled batch jobs are convinient, but has it’s own challenges. Explore shortcomings of scheduled task and investigate alternetives.
Today, we explore what IP is, why IPv4 is running out, and how it’s still being used despite this depletion!
Inheritance is a fundamental concept in object-oriented programming (OOP). It allows creations of a new class based on an existing class, promoting polymorphism and code reuse. However, while inheritance can be powerful, it is also almost always wrong. Let’s discuss the pitfalls of inheritance with some simple example. What is Inheritance? Inheritance allows a class…
In my project, I encountered a significant issue where it would take roughly 20 minutes to test, build, and publish the project. Since every engineer does this at least a couple of times a day, it quickly became a substantial pain point and a waste of time. Determined to resolve this, I embarked on a…
Table of Contents CloudFront CloudFront is AWS’s Content Delivery Network (CDN). A CDN is a special system designed to deliver static content more efficiently. If all content is served from a specific server, the physical distance between the client and that server would increase the latency involved in delivering the content. However, a CDN like…
The topic of code style and readability is a challenging one. Today, I explore if there were more scientific studies on the matter.
Relaying Access Token on Multi-threaded OpenAPI Generator Client without Concurrency and Security Problems
Table of Contents Managing Dependency Versions in Gradle When developing software, you rarely write all the code from scratch. Usually, libraries or frameworks are leveraged, allowing developers to use numerous features without building everything from the ground up. These codes can face various issues, such as deprecated features, regressions, or version conflicts between dependencies. Hence,…