Learn how to use your Google account with Opencode via the opencode-gemini-auth plugin, and what changed after Google deprecated Gemini Code Assist consumer account access on June 18, 2026. The OAuth flow now only works for Gemini Code Assist Standard and Enterprise subscriptions, while the Gemini API key flow is unaffected. [...]
antigravity-claude-proxy, an open source project by Badri Narayanan S, masterfully links Google’s Antigravity with Anthropic’s Claude Code, letting you run Claude models powered by your Antigravity tokens in Claude Code. [...]
With the release of version 19.2, a new hook named `useEffectEvent` was introduced in React. As the name suggests, it is for the "events" defined inside `useEffect`. But what exactly is an "Event" and how does it affect the "Effect"? That's what I intend to discuss here in this post. [...]
OpenAI shut down the Assistants API on August 26, 2026. If your integration still depends on it, here's a step-by-step guide to migrate your code to the Responses API, with the before and after of every concept, from assistants to prompts and threads to conversations. [...]
SQL Server is not natively supported on macOS and thus, there is only one option to use it on macOS, and that is via Docker. In this tutorial, I will setup and configure SQL Server database on macOS via Docker, demonstrate how to connect to the database, and also show how to backup and restore the DB. [...]
In this tutorial, I will demonstrate how you can use custom API keys from multiple AI providers and use any models associated with them in GitHub Copilot Chat VSCode extension. BYOK now works on all Copilot plans, including Business and Enterprise, and even without a Copilot plan at all. [...]
In this guide, I'll walk you through an approach of utilizing disk cache while using the HTML transform method of the eleventy image plugin. Disk cache is a persistent cache which allows you to not re-optimize every single image at every single build. However, there are some caveats which I ran into while using it with the HTML transform method. [...]
DeepSeek's API is OpenAI-compatible, which makes it easy to plug their models into almost any tool. In this guide, I walk through using DeepSeek via their own API platform and via OpenRouter, plus how to get reliable structured JSON output out of a reasoning model. The same setup works for whatever the current DeepSeek model is, not just R1. [...]
Astro, which is a meta-framework and uses Vite, can be integrated with the React compiler to improve the performance of your React application — and that's exactly what I will be showing you how to. React compiler is now stable and compatible with versions of React 17+ with the help of react-compiler-runtime. [...]
If you get "zsh: command not found: nvm" in a new terminal window, or node works in one terminal but not another after using nvm, the cause is usually the nvm loader lines being overridden in your shell profile or a missing default alias. Here's how to fix both. [...]
At the time of this writing, Google Chrome has started shipping experimental AI features such as "built-in AI" in Chrome's Dev/Canary channels. In this tutorial, you will get to know how you can try the built-in AI model in chrome dev. [...]
Hono, as per the docs, was originally built for Cloudflare Workers. It's an application framework designed to work the best for cloudflare pages and workers as well as javascript runtimes Deno and Bun. Although not built specifically for Node, an adapter can be used to run it in Node. [...]
In this tutorial, you will learn how to run PostgreSQL in a Docker container, map its port so tools on your machine can connect to it, persist data using volumes, and manage it with docker compose. [...]
For quite some time, I was searching for a way to self host google fonts because the google fonts API's network request increased the render blocking time more than I expected. [...]
You can specify the background color of body in a global stylesheet, but it's not easy to update the background color dynamically for different pages in your website. So, I went on to code a hacky but working patch using CSS custom properties. [...]
Terser is a javascript compressor and mangler supporting ES6+ specification. In this tutorial, you will get to know how to use terser to minify or compress javascript. [...]
Writing CSS from scratch along with adding vendor prefixes can be a daunting task if done manually. Vendor-prefixes can be easily added using the autoprefixer plugin of PostCSS. [...]
Vercel is a platform to host frontend applications and static sites but you can also host an Express application using serverless functions. In this tutorial, I will show how you can create an express.js app from scratch and deploy it to vercel. [...]
While you can generate QR codes for URLs in browsers such as Chrome, it's always interesting to learn how you can make your own version of a simple QR code generator. So, here we go. [...]
In this tutorial, we are trying to recreate Google's text input field animation and design from scratch with the help of CSS as well as JavaScript. [...]
Ever tired of writing multiple lines of similar HTML? If you are, then you can automate the process by using template literals in JavaScript. Let's see how we can do that. [...]
Notification badges annoy me most of the times by popping up every now and then and I am pretty sure most of you experience similar thing, but anyways, let's see how we can create a notification badge using CSS. [...]