Tagged articles
32 articles
Page 1 of 1
Code Wrench
Code Wrench
Jan 16, 2026 · Backend Development

Mastering Go Documentation: From godoc to Swagger and Sustainable Practices

This article explores Go's built-in documentation philosophy, explains how godoc, README, and Example sections each serve distinct roles, contrasts them with Swagger for API consumers, and provides a concrete, step-by-step guideline for establishing maintainable, evolution-ready documentation practices in real-world Go projects.

DocumentationGoSwagger
0 likes · 9 min read
Mastering Go Documentation: From godoc to Swagger and Sustainable Practices
Python Programming Learning Circle
Python Programming Learning Circle
Aug 26, 2025 · Operations

10 Handy Python Scripts to Automate Everyday Tasks

This article presents ten practical Python scripts that automate common everyday tasks—from CSV parsing and file compression to QR code sharing, keyboard/mouse control, web status checking, GUI creation, TikTok downloading, and HTML requests—helping readers boost productivity with ready‑to‑run code examples.

examplesproductivityscripts
0 likes · 13 min read
10 Handy Python Scripts to Automate Everyday Tasks
Raymond Ops
Raymond Ops
Jun 10, 2025 · Fundamentals

Unlock Python’s Hidden Gems: Essential Built‑in Functions Every Developer Should Know

This article introduces a curated collection of Python’s most useful built‑in functions and standard‑library modules—including all, any, argparse, Counter, defaultdict, dataclass, datetime, lru_cache, itertools.chain, json, pickle, pprint, re, timeit, and uuid—explaining their purpose, providing clear usage examples, and highlighting practical scenarios where they simplify everyday coding tasks.

PythonStandard Librarybuilt-in functions
0 likes · 39 min read
Unlock Python’s Hidden Gems: Essential Built‑in Functions Every Developer Should Know
Test Development Learning Exchange
Test Development Learning Exchange
Feb 14, 2025 · Fundamentals

Python List Comprehensions: Syntax, Examples, and Advanced Uses

This article introduces Python list comprehensions, explaining their concise syntax, basic and advanced usage patterns such as filtering, nested loops, dictionary and set comprehensions, and demonstrates numerous practical examples with code snippets for tasks like generating squares, filtering even numbers, combining lists, and processing files.

codingdata-processingexamples
0 likes · 9 min read
Python List Comprehensions: Syntax, Examples, and Advanced Uses
Test Development Learning Exchange
Test Development Learning Exchange
Jan 19, 2025 · Fundamentals

Python Built-in Functions: int(), float(), str(), list(), tuple(), dict(), set(), bool() and Best Practices

This article introduces Python's core built-in conversion functions—including int(), float(), str(), list(), tuple(), dict(), set() and bool()—explaining their syntax, parameters, example usages, and key best‑practice considerations for reliable type conversion in programming.

built-in-functionsexamplesprogramming-fundamentals
0 likes · 6 min read
Python Built-in Functions: int(), float(), str(), list(), tuple(), dict(), set(), bool() and Best Practices
Test Development Learning Exchange
Test Development Learning Exchange
Oct 24, 2024 · Fundamentals

Common Built‑in Functions and Popular Third‑Party Libraries in Python with Examples

This article lists essential Python built‑in functions, introduces widely used third‑party libraries such as NumPy, Pandas, Matplotlib, Scikit‑learn, TensorFlow, Requests, Beautiful Soup, Flask/Django, SQLAlchemy, SciPy, Pillow and OpenCV, and provides concrete code examples demonstrating their usage.

PythonThird‑party librariesbuilt-in functions
0 likes · 21 min read
Common Built‑in Functions and Popular Third‑Party Libraries in Python with Examples
MaGe Linux Operations
MaGe Linux Operations
Jul 12, 2024 · Fundamentals

Mastering Recursion: Classic Examples and How They Simplify Complex Problems

Recursion, a programming technique where a function calls itself, can elegantly solve problems like factorials, Fibonacci sequences, and binary search, and this article explains its definition, key concepts, characteristics, and provides clear Python examples to deepen understanding of this fundamental algorithmic approach.

Recursionalgorithmexamples
0 likes · 8 min read
Mastering Recursion: Classic Examples and How They Simplify Complex Problems
Test Development Learning Exchange
Test Development Learning Exchange
Jun 20, 2024 · Fundamentals

Master Python’s sorted() Function: 10+ Real-World Examples & Advanced Tips

Explore the versatile sorted() built‑in in Python through over ten practical examples, covering basic list and string sorting, custom key functions, reverse ordering, composite criteria, and real‑world use cases like sorting dictionaries and word‑frequency analysis, empowering you to write cleaner, more efficient code.

Pythondata sortingexamples
0 likes · 6 min read
Master Python’s sorted() Function: 10+ Real-World Examples & Advanced Tips
Python Programming Learning Circle
Python Programming Learning Circle
Mar 28, 2024 · Fundamentals

Python Turtle Graphics: Introduction, Concepts, and Multiple Example Programs

This article introduces Python's built‑in turtle graphics module, explains its origins, demonstrates how to control a virtual turtle to draw shapes, and provides a series of annotated example programs—including stars, squares, spirals, roses, and a Doraemon illustration—to help beginners learn fundamental programming concepts such as loops, functions, and coordinate manipulation.

examplesprogramming-basicsturtle graphics
0 likes · 11 min read
Python Turtle Graphics: Introduction, Concepts, and Multiple Example Programs
Test Development Learning Exchange
Test Development Learning Exchange
Aug 27, 2023 · Fundamentals

20 Common Python Built-in Constants with Example Code

This article introduces twenty frequently used Python built-in constants—including True, False, None, NotImplemented, Ellipsis, __debug__, and various exception classes—explaining their meanings and providing clear code snippets that demonstrate how each constant can be applied in typical programming scenarios.

Built-in ConstantsPythonexamples
0 likes · 7 min read
20 Common Python Built-in Constants with Example Code
Python Programming Learning Circle
Python Programming Learning Circle
Jun 29, 2022 · Fundamentals

Python Data Structures: Lists, Tuples, Dictionaries, and Sets with Practical Code Examples

This article introduces Python's core built‑in sequence types—lists, tuples, dictionaries, and sets—explaining their characteristics, common operations, and performance considerations, and provides numerous interactive code snippets that demonstrate creation, indexing, slicing, modification, searching, sorting, and set algebra.

Data StructuresDictionariesLists
0 likes · 11 min read
Python Data Structures: Lists, Tuples, Dictionaries, and Sets with Practical Code Examples
IT Services Circle
IT Services Circle
Apr 18, 2022 · Operations

Collection of Useful Bash Scripts for Linux Engineers

This article compiles a variety of practical Bash scripts for Linux engineers, covering tasks such as number guessing games, network monitoring, process management, user account handling, file operations, system resource checks, and automated service deployments, providing ready-to-use code snippets for everyday sysadmin automation.

BashSysadminexamples
0 likes · 21 min read
Collection of Useful Bash Scripts for Linux Engineers
Tencent Cloud Developer
Tencent Cloud Developer
Nov 8, 2021 · Backend Development

Understanding Generics in Go: History, Concepts, and Practical Examples

The article surveys Go's generics—from their historical origins and the generic dilemma of balancing productivity, compile speed, and runtime performance—to practical implementation using type parameters, constraints, and the built‑in comparable interface, illustrating common patterns such as generic arithmetic, slices, maps, and utility functions.

ConstraintsGenericsGo
0 likes · 23 min read
Understanding Generics in Go: History, Concepts, and Practical Examples
Python Crawling & Data Mining
Python Crawling & Data Mining
Jul 8, 2021 · Fundamentals

Master 15 Essential Python String Methods with Real Code Examples

This article walks through fifteen core Python string methods—such as find, index, count, replace, split, capitalize, title, startswith, endswith, lower, upper, strip, rfind, rindex, partition, and join—explaining their syntax, showing runnable code snippets, and displaying the actual output images for each operation.

StringTutorialcode
0 likes · 9 min read
Master 15 Essential Python String Methods with Real Code Examples
Liangxu Linux
Liangxu Linux
Jun 6, 2021 · Operations

Master Bash Conditionals, Loops, and Signal Traps with Real‑World Examples

This article provides a comprehensive guide to Bash scripting, covering if/elif/else conditionals, case statements, four types of loops (for, while, until, select), signal trapping with trap, useful one‑liners for randomness and colored output, and several fun scripts such as a multiplication table, colored triangle, and chessboard.

BashConditionalsLoops
0 likes · 14 min read
Master Bash Conditionals, Loops, and Signal Traps with Real‑World Examples
Python Programming Learning Circle
Python Programming Learning Circle
Jun 4, 2021 · Fundamentals

WTF Python: Unexpected Behaviors and Intriguing Edge‑Case Examples

This article presents a curated collection of surprising Python examples that reveal counter‑intuitive behaviors such as string interning, dictionary key collisions, loop variable scope, generator evaluation timing, the difference between 'is' and '==', and closure capture, providing detailed explanations and code demonstrations for each case.

LanguageTutorialedge cases
0 likes · 16 min read
WTF Python: Unexpected Behaviors and Intriguing Edge‑Case Examples
Java Backend Technology
Java Backend Technology
Feb 24, 2021 · Fundamentals

Mastering Java 8 Date & Time API: Practical Examples and Code Snippets

This article introduces Java 8's modern date‑time API, explains why the old java.util.Date and SimpleDateFormat are problematic, and provides a series of concise, runnable examples that demonstrate how to obtain the current date, extract year/month/day, work with specific dates, compare dates, handle time zones, calculate periods, format and parse strings, and more.

APIJavadatetime
0 likes · 15 min read
Mastering Java 8 Date & Time API: Practical Examples and Code Snippets
MaGe Linux Operations
MaGe Linux Operations
May 21, 2019 · Fundamentals

16 Mind‑Blowing Python One‑Liners That Do Everything From Fractals to Fun

This article presents sixteen compact Python one‑liners that generate a Mandelbrot fractal, print the multiplication table, draw heart and spiral patterns, compute primes, Fibonacci numbers, quicksort, display the Zen of Python, launch a web server, simulate a slot machine, solve the N‑Queens puzzle, flatten arrays, sum the digits of 2ⁱ⁰⁰⁰, and even wish a happy birthday, each accompanied by brief explanations and visual output.

One-linerPythonTutorial
0 likes · 12 min read
16 Mind‑Blowing Python One‑Liners That Do Everything From Fractals to Fun
ITPUB
ITPUB
May 4, 2016 · Databases

Master Oracle Triggers: Real‑World Examples and Step‑by‑Step Guide

This article explains Oracle trigger fundamentals, syntax, and a series of practical examples—including preventing weekend updates, auto‑incrementing IDs, logging DML actions, aggregating department salaries, capturing deletions, view‑based inserts, salary change alerts, and tracking CREATE/DROP operations—complete with full SQL code snippets.

OraclePL/SQLSQL
0 likes · 12 min read
Master Oracle Triggers: Real‑World Examples and Step‑by‑Step Guide
MaGe Linux Operations
MaGe Linux Operations
Oct 26, 2015 · Fundamentals

What Makes Code Truly Pythonic? 20 Idiomatic Examples Explained

This article explains the concept of "pythonic" code in Python, comparing concise, readable idioms with longer non‑pythonic alternatives across common tasks such as swapping variables, truth testing, string manipulation, list operations, comprehensions, dictionary handling, loop control, ternary expressions, enumerate, and zip.

code styleexamplesidiomatic
0 likes · 10 min read
What Makes Code Truly Pythonic? 20 Idiomatic Examples Explained