The Transformer Family Version 2.0 Many new Transformer architecture improvements have been proposed since my last post on “The Transformer Family” about three years ago. Here I did a big refactoring and enrichment of that 2020 post — restructure the hierarchy of sections and improve many ...
When django, nextjs and Laravel failed me... So, I decide to create my web dev framework when all the big jargons couldn't help me.
Multi-cursor code editing: An animated introduction An animated and interactive intro to multi-cursor editing using Command D and clever text navigation techniques.
Rate Limiting Next.js API Routes using a Cloudflare Service Worker A simple solution combining Next.js middleware and Cloudflare (Workers, Workers Routes, Rate Limiting Rules)
Cores don’t like to share This post is part of a series – go here for the index. Two posts ago, I explained write combining and used a real-world example to show how badly it can go wrong if you’re not careful. …
Exploring MusicCaps, the evaluation data released to accompany Google’s MusicLM text-to-music model Google Research just released MusicLM: Generating Music From Text. It’s a new generative AI model that takes a descriptive prompt and produces a “high-fidelity” music track. Here’s the paper (and …
🤔 Why did the new GraphQL API take 1.5 years to be released? - GraphQL API for WordPress A story that took a long time to be written
Night and Fog (1955) by Alain Resnais: Mahler Symphony No.6 ENG sub Same Video in 1080p !!https://youtu.be/fJ2m5Qj1eLI
.NET GC Internals - 03. Concurrent Mark phase The third episode of the .NET GC Internals series explaining a real in-depth knowledge how .NET GC works. This episode is about the Concurrent Mark phase, di...
How to Get an Enum Member as a String in C# - Code Maze In this article, we'll see how to get an enum member as a string in C#, instead of getting its underlying integer value.