Building HasteKit: A LLM Gatway & Agent SDK For Golang From Scratch
Learn what it takes to build an LLM & Agent SDK for Golang and a LLM Gateway to swap model providers easily and get deep observability.
Learn what it takes to build an LLM & Agent SDK for Golang and a LLM Gateway to swap model providers easily and get deep observability.
The idea of unblocking the main thread by offloading heavy computations to WebWorkers is fascinating to any web developer. However, sending large data to Web Workers can be a challenge, as it can cause performance issues and slow down the application. In this blog post, we will explore how to send large data to Web Workers efficiently.
Making API calls using Axios and Redux-Observable is useful for polling an API , request cancellation, making sequential or parallel requests.
This article shows how to use a Python virtual environment in VSCode, without having to change the pythonPath in VSCode settings.
Building a simple tool for DB Migrations in Go that can run up and down migrations and list status of each migrations.
Learn how to develop a website with dark mode feature or multiple themes using CSS variables. CSS variables is the easiest way to create a multi-theme app.
Provides 5 ways to live reload go applications. The article covers tools Air, Gin, Nodemon and Fresh to add live reloading to your go application.
Want to make your own Google zero gravity pages? This short and simple guide will demonstrate how to create your own google gravity pages
In passwordless phone number authentication, user needs to remember only their phone number. We will use AWS Cognito and Amplify to implement it.
In Golang, one can pass the database connection to the controller as a global variable or by creating a separate struct or by creating a repository interface and passing it to the controller.