Similar Posts
About Taxum, or why I wrote my own NodeJS Framework
ByAdilWhere I came from I’ve started out as a PHP developer, using Zend Framework for a large part of my career. Quite a few years ago my projects started shifting to NodeJS, starting with ExpressJS like many others. I very quickly switched from raw JavaScript to TypeScript due to the improved DX experience and type…
I Built a VS Code Extension to Stop the Copy-Paste Madness
ByAdilHey devs! I just shipped v0.2.1 of RangeLink, a VS Code/Cursor extension that fixes something that’s been driving me (and probably you) crazy. The Problem I use Claude Code running in a terminal inside Cursor daily. And the constant copy-pasting between terminal and editor? Exhausting. One day, after the hundredth copy-paste, I got frustrated and…
Coding Challenge Practice – Question 49
ByAdilThe task is to implement flattenThunk to chain functions together. The boilerplate code function flattenThunk(thunk) { // your code here } A thunk is a function that takes a callback. Thunks can nest, which means the callback can return another thunk. The goal of the flattenThunk is to chain and flatten these nested thunks so…
Can’t think of a good password for every account? It’s not your fault – you can also blame the websites themselves, a new study says
ByAdilReport finds widespread weak password enforcement across major websites, exposing users and industries to increased automated attacks. 🎬 Watch the Video
Could the AI bubble be real? This sage of the 2008 market crash and central character of The Big Short, certainly thinks so
ByAdilMichael Burry’s large bearish bets on major AI firms revive fears of inflated valuations and deepen debate about a potential bubble. 🎬 Watch the Video
Interfacing with Wasm from Kotlin
ByAdilYou may have heard you can compile Kotlin → Wasm but did you know you can call Wasm from Kotlin? Why would you want to do that? It may sound odd but theres genuine reasons why you would want to do this. WebAssembly is a compilation target of almost every single language you can think…