Latest Posts (11 found)
Karboosx 3 days ago

Google Apps Script is amazing for automation

Ever heard of Google Apps Script? You're missing out! This free Google tool lets you automate tasks across all Google apps with custom JS scripts, no servers needed. I'll show you how I use it to magically update my nerdiflix site every time I add a video to a YouTube playlist. It's like having your own digital assistant for all the boring stuff!

0 views
Karboosx 1 months ago

Building Your Own Web Framework - The Basics

Ever wondered what happens under the hood when you use frameworks like Symfony or Laravel? We'll start building our own framework from scratch, covering the absolute basics - how to handle HTTP requests and responses. This is the foundation that everything else builds on.

0 views
Karboosx 1 months ago

Homemade tracking system without use of third-party libs like Google Analytics

Tired of sending your analytics data to Google? Build with me a simple, self-hosted tracking system from scratch that respects user privacy, detects bots, and keeps everything on your own servers.

0 views
Karboosx 2 months ago

Improving Train Meal Ordering Systems Without Internet

Train meal ordering apps require internet, but trains often don't have it. Here's how to make them work offline using local servers and JWT authentication

0 views
Karboosx 2 months ago

Building a Simple Search Engine That Actually Works

You don't need Elasticsearch for most projects. I built a simple search engine from scratch that tokenizes everything, stores it in your existing database, and scores results by relevance. Dead simple to understand and maintain.

25 views
Karboosx 2 months ago

Use OTP instead of email verification link

Why are we still forcing users to click annoying verification links? That flow is broken. There's a much smoother, simpler, and just-as-secure solution: Use OTP codes instead.

4 views
Karboosx 3 months ago

Become Unbannable from Your Email/Gmail

You don't own your email; you rent it. This vulnerability leaves your entire digital life at risk. Read how to seize back control of your most critical online asset by switching providers and setting up your own unbannable email server.

0 views
Karboosx 4 months ago

Compilers and VM's are easy too!

You built the parser, now let's make it fast. This guide shows you how to replace a slow interpreter with a simple compiler and Virtual Machine (VM), turning your code into efficient bytecode that executes at high speed.

1 views
Karboosx 4 months ago

Continuous Delivery - The easy way

Skip the complex setups. Here's how to build a simple CD pipeline for your website using nothing but a GitHub webhook and a bash script.

0 views
Karboosx 4 months ago

A Few Tricks to Make LLMs Hallucinate Less

How do you stop your LLM from going off the rails? You can't, but you can build a better system around it. Here are my go-to techniques for making AI apps more reliable.

0 views
Karboosx 4 months ago

In-house parsers are easy!

Ever wanted to build your own programming language? It sounds like a huge project, but I'll show you it's not as hard as you think. In this post, we'll build one from scratch, step-by-step, covering everything from the Tokenizer and Parser to a working Interpreter, with all the code in clear PHP examples.

0 views