Blog
Loading Data with Python into PostgreSQL with Psycopg 3
Explore the best way to import messy data from remote source into PostgreSQL using Python and Psycopg3. The data is big, fetched from a remote source, and needs to be cleaned and transformed.
Building an HTTP PDF Generation Service in Go Using HTML Templates and WeasyPrint
In this article you’ll learn how to integrate WeasyPrint with Golang to build a robust invoice-generating application. We walk through the installation, project setup, template design, view logic and PDF production, giving you a complete blueprint to deliver downloadable or printable invoices in your Golang project.
Create PDF files with Django & Weasyprint
In this article you’ll learn how to integrate WeasyPrint with Django to build a robust invoice-generating application. We walk through the installation, project setup, template design, view logic and PDF production, giving you a complete blueprint to deliver downloadable or printable invoices in your Django project.
Fast & Efficient Bulk Create with Django and PostgreSQL
Building scalable back‑ends requires smart data ingestion. This guide shows how to stream large API datasets into PostgreSQL with Django’s bulk_create and the database COPY command. It compares performance and memory use and explains why streaming is essential for handling remote, messy and big data
Stream videos with Go and Http
Learn how to build a simple video‑streaming server in Go. The article explores HTTP range requests and the <video> element, contrasts HTTP, WebSocket and WebRTC approaches, and demonstrates handling Range headers to serve specific byte ranges for smooth playback
Real Time Chat System With Golang, Redis and Server Side Events
Server‑Sent Events provide a lightweight way to push live updates over a single HTTP connection. This post explains SSE’s benefits—simplicity, automatic reconnection and efficiency and walks through building a real‑time chat using Go and Redis Pub/Sub
Embedding a Vuetify Frontend into a Go Web Server
Vuetify adds a Material Design look to Vue apps, and Go 1.25’s embed package lets you ship static assets in a single binary. Here you’ll see how to serve a Vuetify SPA from Go using net/http, Gin and Fiber, with pros and cons of each method
Django & DRF Model Generic Auth Stuff
Tracking who created or updated a record is vital for auditing. This article shows how to automatically populate created_by and updated_by fields in Django REST Framework by leveraging HiddenFields, reducing boilerplate and improving data integrity
Integrate Django and Vite based Frontend
Want modern JavaScript without abandoning Django’s monolithic structure? This guide demonstrates how to use Vite to bundle Vue or React components inside a Django project, enabling hot‑module reloading and future‑proof asset management
Pushing real-time updates to clients with Server-Sent Events (SSEs)
Long‑running tasks often need to send status updates back to the browser. This tutorial introduces Server‑Sent Events as a simple, one‑way streaming alternative to WebSockets, highlighting features like automatic reconnection and event IDs