Logo
Login
Tech Posts 31382
100daysofcode 100daysofdevops 100pay 10mistakes 10yearworkanniversary 11 11labs 11tly 11ty 127001

Dev Blog A constructive and inclusive blog for software developers. With you every step of your journey.

Built with modern PHP and MySQL. Open source software that powers developer blogs and other inclusive communities.

Made with love and PHP. Dev Blog ยฉ 2024.

What is an IIFE in JavaScript and Why Would You Use It?

In JavaScript, you might have seen a function that seems to call itself right after it's defined. Thatโ€™s called an IIFE, short for Immediately Invoked Function Expression. It might look weird at fir...
28.03.2025 0 Read More

Memoization and Caching: Are they the same in JavaScript?

At first glance, Memoization and Caching might seen like the same thing. After all, both techniques involve saving results to avoid doing the same work again. But while they are related, they're not e...
31.03.2025 0 Read More

Deep Dive - How Chunked Transfer Encoding Works

Deep Dive - How Chunked Transfer Encoding Works
Chunked transfer encoding is a key HTTP/1.1 feature that allows servers to stream data incrementally without knowing the total size of the response upfront. Itโ€™s particularly useful in streaming API...
04.04.2025 0 Read More

Programming Paradigms Explained with Code Examples

When you're learning to code or expanding your knowledge, you'll often hear the term "programming paradigms" but what does that actually mean?A programming paradigm is a way to approach problem-solvin...
04.04.2025 0 Read More

What happens when both try and finally return in JavaScript?

What do you think will happen if we run this code? โ›ถfunction test() { try { throw new Error("oops"); } catch (e) { return 'catch'; } finally { return 'finally'; } } console.log(...
06.04.2025 0 Read More

How JavaScript Gets Updated: ECMAScript, V8 and Your Runtime Explained

I remember when I started coding in JavaScript, I used to think: "Okay... so JavaScript gets updated like any language... just update and that's it." But that's not exactly how things work here. JavaS...
13.04.2025 0 Read More
Loading...
#reading
What are some of the top AI-powered tools developers are using these days?
0
Authentication vs Authorization: Understanding the Difference
0
Boost Node.js Performance with Worker Threads ๐Ÿš€ | Multithreading Explained!
0
Trees and loc
0
๐Ÿง โœจ ๐—š๐—ฒ๐—ป๐—ฒ๐—ฟ๐—ฎ๐˜๐—ฒ ๐—œ๐—บ๐—ฎ๐—ด๐—ฒ๐˜€ ๐˜‚๐˜€๐—ถ๐—ป๐—ด ๐—”๐—œ ๐˜„๐—ถ๐˜๐—ต .๐—ก๐—˜๐—ง
0
#popular
Mastering OpenAIโ€™s new Agents SDK & Responses API [Part 1]
0
Beginner's Guide to the Model Context Protocol (MCP)
0
What is Model Context Protocol (MCP): Explained in detail
0
A Step-by-Step Guide to Install DeepSeek-V3-0324 Locally
0
The Great AI Agent Protocol Race: Function Calling vs. MCP vs. A2A
0