Tagged articles
27 articles
Page 1 of 1
Java Tech Enthusiast
Java Tech Enthusiast
Feb 16, 2026 · Databases

10 Must‑Know MySQL Advanced Techniques to Supercharge Performance

This article presents eleven practical MySQL advanced techniques—including execution‑plan analysis, sophisticated indexing, window functions, CTEs, JSON handling, partitioning, join optimizations, user variables, online DDL, and generated columns—each explained with real‑world examples, code snippets, and performance caveats to help developers move from basic usage to mastery.

Advancedindexingmysql
0 likes · 20 min read
10 Must‑Know MySQL Advanced Techniques to Supercharge Performance
Python Programming Learning Circle
Python Programming Learning Circle
Sep 24, 2025 · Fundamentals

Master Python Decorators: From Basics to Advanced Patterns

This comprehensive guide walks you through Python decorators, covering basic function decorators, parameterized decorators, class-based decorators, decorator factories, real-world applications such as routing, permission checks, and caching, and concludes with best practices, pitfalls, and a roadmap for deeper learning.

AdvancedTutorialcode
0 likes · 11 min read
Master Python Decorators: From Basics to Advanced Patterns
Test Development Learning Exchange
Test Development Learning Exchange
Jun 28, 2025 · Fundamentals

Master Python Decorators: 10 Advanced Techniques Explained

This article introduces Python decorators, explains their core concept, and walks through ten advanced usage patterns—including parameterized, stacked, class‑based, stateful, memoization, conditional, error‑handling, factory, and method decorators—complete with clear code examples and expected outputs.

AdvancedDecoratorcode
0 likes · 7 min read
Master Python Decorators: 10 Advanced Techniques Explained
Test Development Learning Exchange
Test Development Learning Exchange
Feb 13, 2025 · Fundamentals

Python Function Fundamentals: Arguments, Lambdas, Decorators, and Advanced Techniques

This tutorial showcases Python function fundamentals such as default and keyword arguments, *args and **kwargs, lambda expressions, higher‑order functions, decorators (with and without parameters), closures, scope modifiers, type hints, and utility modules like functools, inspect, and operator, providing concise code examples for each concept.

Advancedargumentsdecorators
0 likes · 8 min read
Python Function Fundamentals: Arguments, Lambdas, Decorators, and Advanced Techniques
php Courses
php Courses
Feb 10, 2025 · Backend Development

PHP Tips: Writing More Efficient and Concise Code

This article presents practical PHP syntactic sugar, hidden features, best practices, and advanced techniques—including null‑coalescing, short ternary, arrow functions, the spaceship operator, generators, match expressions, traits, and performance optimizations—to help developers of all levels write cleaner, faster, and more maintainable code.

AdvancedPHPbest practices
0 likes · 8 min read
PHP Tips: Writing More Efficient and Concise Code
Python Programming Learning Circle
Python Programming Learning Circle
Nov 23, 2024 · Fundamentals

Advanced Python Concepts: Exception Handling, Collections, itertools, Lambdas, Decorators, Generators, Threads, Dunder Methods, Logging, and Context Managers

This article introduces ten advanced Python topics—including exception handling, the collections and itertools modules, lambda functions, decorators, generators, threading, dunder methods, logging, and context managers—providing explanations, code examples, and practical tips to help developers deepen their programming skills and prepare for interviews.

AdvancedCollectionsGenerators
0 likes · 13 min read
Advanced Python Concepts: Exception Handling, Collections, itertools, Lambdas, Decorators, Generators, Threads, Dunder Methods, Logging, and Context Managers
Deepin Linux
Deepin Linux
Nov 2, 2024 · Fundamentals

Curated List of C++ Open‑Source Projects for Learning from Beginner to Advanced

This article presents a curated collection of C++ open‑source projects ranging from beginner-friendly tutorials and simple games to intermediate libraries and advanced frameworks, offering detailed descriptions, difficulty levels, and GitHub links to help developers progressively enhance their coding skills and understand complex system design.

AdvancedBeginnerC++
0 likes · 29 min read
Curated List of C++ Open‑Source Projects for Learning from Beginner to Advanced
Practical DevOps Architecture
Practical DevOps Architecture
Sep 29, 2024 · Databases

Comprehensive Oracle Database Tutorial Series (Download, Installation, SQL Basics, PL/SQL, and Advanced Topics)

This article provides a detailed list of 51 video tutorials covering Oracle database download, installation, basic SQL operations, DML/DQL commands, PL/SQL programming, advanced features, and related database administration topics, offering a complete learning path for Oracle practitioners.

AdvancedInstallationOracle
0 likes · 6 min read
Comprehensive Oracle Database Tutorial Series (Download, Installation, SQL Basics, PL/SQL, and Advanced Topics)
Python Programming Learning Circle
Python Programming Learning Circle
Apr 28, 2024 · Fundamentals

13 Lesser‑Known Python Tricks for Cleaner and More Efficient Code

This article introduces thirteen lesser‑known Python tricks—including ternary operators, enumerate, zip, list comprehensions, lambda functions, any/all, itertools, generators, decorators, argument unpacking, dynamic imports, dictionary comprehensions, and mutable collections—each explained with concise examples to help developers write cleaner, more efficient code.

AdvancedPythonTutorial
0 likes · 10 min read
13 Lesser‑Known Python Tricks for Cleaner and More Efficient Code
Python Programming Learning Circle
Python Programming Learning Circle
Apr 22, 2024 · Fundamentals

Advanced Python Concepts: Exception Handling, Collections, itertools, Decorators, Generators, and More

This tutorial covers a range of advanced Python topics—including exception handling, the collections module, itertools utilities, lambda functions, decorators, generators, threading, dunder methods, logging, and context managers—to help developers deepen their programming expertise and apply these techniques in real projects.

AdvancedCollectionsGenerators
0 likes · 13 min read
Advanced Python Concepts: Exception Handling, Collections, itertools, Decorators, Generators, and More
Test Development Learning Exchange
Test Development Learning Exchange
Apr 13, 2024 · Fundamentals

Advanced Python Techniques: 10 In-Depth Code Examples

This article presents ten advanced Python techniques—including list comprehensions, lambda functions, decorators, context managers, generators, metaclasses, asyncio coroutines, enums, slicing, and exception handling—each illustrated with detailed code examples to help readers deepen their mastery of Python programming.

AdvancedDecoratorLambda
0 likes · 6 min read
Advanced Python Techniques: 10 In-Depth Code Examples
Programmer DD
Programmer DD
Apr 27, 2022 · Fundamentals

8 Little‑Known Java APIs That Can Supercharge Your Code

This article introduces eight lesser-known but highly useful Java APIs—including DelayQueue, the “B” DateTimeFormatter pattern, StampedLock, LongAccumulator, HexFormat, binarySearch, BitSet, and Phaser—explaining their purpose, usage, and providing code snippets that demonstrate how they can simplify concurrency, time handling, and data manipulation.

APIAdvancedconcurrency
0 likes · 9 min read
8 Little‑Known Java APIs That Can Supercharge Your Code
Python Programming Learning Circle
Python Programming Learning Circle
Mar 3, 2022 · Fundamentals

Advanced Python Dictionary and Set Techniques

This article introduces several high‑level Python dictionary and set methods—including fromkeys, merge, setdefault, defaultdict, OrderedDict, as well as set comprehensions and custom hashing—to simplify code, improve readability, and demonstrate practical usage patterns with clear examples.

AdvancedOrderedDictSet
0 likes · 11 min read
Advanced Python Dictionary and Set Techniques
Python Crawling & Data Mining
Python Crawling & Data Mining
Aug 17, 2021 · Fundamentals

Master Python Decorators: From Basics to Advanced Patterns

This article walks Python developers through the concept of decorators, showing simple timing examples, how to handle functions with parameters and return values, advanced techniques like parameterized, class, stateful, and nested decorators, and provides ready-to-use code templates for real‑world use.

AdvancedDecoratorcode
0 likes · 20 min read
Master Python Decorators: From Basics to Advanced Patterns
Programmer DD
Programmer DD
Jan 11, 2021 · Fundamentals

Unlock Java’s Powerful Enum Features: From Basics to Functional Programming

This article explores Java enums as full‑featured classes, demonstrates their advanced capabilities such as fields, constructors, and instance methods, and shows how to replace error‑prone switch statements with functional implementations using BiFunction and lambda expressions for cleaner, compile‑time‑safe code.

AdvancedBiFunctionLambda
0 likes · 9 min read
Unlock Java’s Powerful Enum Features: From Basics to Functional Programming
Liangxu Linux
Liangxu Linux
Mar 15, 2020 · Fundamentals

Master Advanced Git Commands: A Handy Cheat Sheet for Power Users

This cheat sheet gathers essential advanced Git commands—navigation, history inspection, commit amendment, interactive rebasing, stash management, branch cleanup, and useful aliases—providing concise examples and explanations to help developers work more efficiently with version control.

AdvancedCheat SheetGit
0 likes · 7 min read
Master Advanced Git Commands: A Handy Cheat Sheet for Power Users
Python Programming Learning Circle
Python Programming Learning Circle
Mar 12, 2020 · Fundamentals

Python Advanced Topics: Properties, Descriptors, Metaclasses, Concurrency, and Built‑in Modules

This article explores advanced Python programming techniques, including using properties and descriptors to replace getters/setters, leveraging metaclasses for validation and registration, implementing concurrency with threads, subprocesses, queues, and coroutines, and utilizing built‑in modules such as functools, contextlib, copyreg, datetime, and decimal for robust development.

AdvancedBuilt-in Modulesdescriptors
0 likes · 16 min read
Python Advanced Topics: Properties, Descriptors, Metaclasses, Concurrency, and Built‑in Modules
MaGe Linux Operations
MaGe Linux Operations
Jan 31, 2019 · Fundamentals

Master Python Decorators: From Basics to Advanced Techniques

This article provides a comprehensive, code‑rich guide to Python decorators, covering why they are needed, how to write simple and parameterized decorators, class‑based decorators, built‑in decorators like @property and @classmethod, common pitfalls, and best‑practice optimizations using third‑party tools.

AdvancedDecoratorPython
0 likes · 21 min read
Master Python Decorators: From Basics to Advanced Techniques
MaGe Linux Operations
MaGe Linux Operations
Apr 5, 2018 · Fundamentals

Master Python Decorators: From Basics to Advanced Techniques

This comprehensive guide explains Python decorators, covering basic concepts, practical examples, common pitfalls, and advanced patterns such as parameterized, class-based, and built‑in decorators, while showing how to avoid signature issues and improve readability with tools like functools.wraps, decorator, and wrapt.

AdvancedDecoratorPython
0 likes · 16 min read
Master Python Decorators: From Basics to Advanced Techniques
MaGe Linux Operations
MaGe Linux Operations
Jul 11, 2017 · Fundamentals

6 Tricky Python Questions Even Experienced Developers Miss

This article presents six challenging Python puzzles—including a hidden list comprehension trap, a tricky class decorator for timing, the nuances of __call__ versus direct invocation, descriptor pitfalls, inheritance quirks, and metaclass‑based singleton implementation—each accompanied by detailed explanations and visual solutions.

AdvancedPythondecorators
0 likes · 6 min read
6 Tricky Python Questions Even Experienced Developers Miss
MaGe Linux Operations
MaGe Linux Operations
Nov 9, 2015 · Fundamentals

Essential Python Deep‑Dive: Super, Decorators, Metaclasses, and More

This article curates a comprehensive list of advanced Python concepts—including super(), decorators, metaclasses, concurrency, generators, performance tips, and design patterns—providing concise explanations and references to help developers master the language’s most powerful features.

AdvancedDesign PatternsGenerators
0 likes · 6 min read
Essential Python Deep‑Dive: Super, Decorators, Metaclasses, and More