📡 You're offline — showing cached content
New version available!
Quick Access
#programming

Posts tagged: programming

16 articles found

Python List Comprehensions and Generator Expressions: Complete Guide
Python Beginner
Python List Comprehensions and Generator Expressions: Complete Guide

Master Python list comprehensions, dict/set comprehensions, generator expressions — syntax, nested comprehensions, and when to use each.

PHP Error Handling: Exceptions, Try-Catch and Custom Exceptions
PHP Beginner
PHP Error Handling: Exceptions, Try-Catch and Custom Exceptions

Master PHP exception handling — try-catch-finally, custom exception classes, global error handlers, and production-safe error logging.

JavaScript ES6+ Features: Destructuring, Spread, Optional Chaining and More
JavaScript Beginner
JavaScript ES6+ Features: Destructuring, Spread, Optional Chaining and More

Master ES6+ JavaScript features — destructuring, spread/rest, optional chaining, nullish coalescing, template literals used in every modern codebase.

Hash Tables: How They Work and Collision Resolution
Interview Prep Intermediate
Hash Tables: How They Work and Collision Resolution

Understand hash tables from scratch — hash functions, chaining vs open addressing, load factor, and solving Two Sum, Group Anagrams with Python.

Laravel Eloquent ORM: Relationships, Eager Loading and Query Builder
JavaScript Intermediate
Laravel Eloquent ORM: Relationships, Eager Loading and Query Builder

Master Laravel Eloquent — all relationship types, solving the N+1 query problem with eager loading, scopes, mutators and advanced query builder.

Python Context Managers and the with Statement Explained
Python Intermediate
Python Context Managers and the with Statement Explained

Master Python context managers — __enter__ __exit__, contextlib.contextmanager, ExitStack, and real-world uses for file handling, DB connections and timing.