New Bun APIs S3 And PostgreSQL: The Future of Programming Languages
We are witnessing the evolution of programming languages. In this article we examine through new Bun APIs, where is the ecosystem headed
We are witnessing the evolution of programming languages. In this article we examine through new Bun APIs, where is the ecosystem headed
The last two years have been quite an adventure for me. Beware, dear reader, as I reflect on my past two years in both mental and technical aspects and also share my plans for the future. The Mental Aspect In February 2023, a massive earthquake hit the eastern part of
"Discover TigerBeetle, the high-performance, distributed financial accounting database optimized for mission-critical safety and consistency. Learn how it simplifies financial transaction services and explore a new Testcontainers module for TigerBeetle in Golang.
One of the never-ending debates in software development is the use of ORMs vs. query builders vs. writing raw SQL. An art-level approach to managing SQL queries is hiding in plain sight, and I am here to share it. ORM vs. Query Builder vs. Raw SQL Before we go into
The application runtime should not depend on the environment, but the configuration should. If you've ever written the following code, this post is for you: function doSomething(){ if (process.env.NODE_ENV === "development"){ return { foo: 1 }; } return { foo: 2 }; } Why Is That A Problem? Once you