Tagged articles
205 articles
Page 1 of 3
Linux Tech Enthusiast
Linux Tech Enthusiast
Mar 24, 2026 · Fundamentals

Master Makefile: From Basics to Advanced Techniques

This guide walks through Makefile fundamentals—including targets, dependencies, commands, variables, pattern rules, automatic variables, functions, conditional statements, includes, custom functions, multi‑target handling, phony targets, and debugging techniques—providing concrete examples and code snippets that enable readers to build and manage both small and large projects efficiently.

Build AutomationDebuggingMakefile
0 likes · 6 min read
Master Makefile: From Basics to Advanced Techniques
Linux Tech Enthusiast
Linux Tech Enthusiast
Jan 15, 2026 · Fundamentals

Master Linux Shell Scripting: From Basics to Real‑World Projects

This article provides a step‑by‑step guide to Linux shell scripting, covering the definition of a shell, common shells, naming rules, environment and user variables, control‑flow statements, functions, arrays, and several practical scripts such as a Hello World program, service checks, system backup, information collection, and one‑click LNMP deployment.

ArraysAutomationControl Flow
0 likes · 23 min read
Master Linux Shell Scripting: From Basics to Real‑World Projects
php Courses
php Courses
Nov 21, 2025 · Backend Development

Master PHP’s reset() Function: Retrieve First Elements and Traverse Arrays

This guide explains PHP's reset() function, showing its syntax, how it returns the first array element or false for empty arrays, and demonstrates practical examples for fetching the first element, iterating through arrays, and combining it with end() to obtain both first and last values.

ArrayTutorialfunctions
0 likes · 4 min read
Master PHP’s reset() Function: Retrieve First Elements and Traverse Arrays
php Courses
php Courses
Nov 18, 2025 · Backend Development

Master PHP’s array_sum(): Quick Guide to Summing Arrays

This article explains the PHP array_sum() function, covering its syntax, parameters, return values, a practical code example, and important usage notes such as handling empty arrays and non‑numeric elements.

PHParray sumfunctions
0 likes · 3 min read
Master PHP’s array_sum(): Quick Guide to Summing Arrays
php Courses
php Courses
Sep 19, 2025 · Backend Development

Master PHP Functions: Define, Pass, Loop, and Return Arrays

This guide explains how to define, pass, iterate over, and return arrays within PHP functions, covering array creation with array(), parameter passing, traversal using both for and foreach loops, and returning modified arrays, complete with full code examples for each step.

ArraysBackend DevelopmentCode Tutorial
0 likes · 5 min read
Master PHP Functions: Define, Pass, Loop, and Return Arrays
php Courses
php Courses
Aug 27, 2025 · Backend Development

Master PHP’s array_replace_recursive: Recursive Array Merging Explained

This article explains PHP’s array_replace_recursive function, detailing its syntax, recursive merging behavior, key‑overriding rules, and differences from array_merge_recursive, accompanied by clear code examples and output to help developers efficiently combine multidimensional arrays.

PHPRecursionarray merge
0 likes · 4 min read
Master PHP’s array_replace_recursive: Recursive Array Merging Explained
Model Perspective
Model Perspective
Aug 25, 2025 · Fundamentals

Master Python Basics: Variables, Control Flow, Functions, and More

This comprehensive guide introduces Python's core syntax and concepts—including its history, variables, data types, operators, control structures, functions, built‑in data structures, exception handling, and module usage—providing readers with a solid foundation for effective programming.

Data StructuresVariablesfunctions
0 likes · 11 min read
Master Python Basics: Variables, Control Flow, Functions, and More
Data STUDIO
Data STUDIO
Aug 25, 2025 · Fundamentals

Why I Stopped Blindly Using Python Classes

The author reflects on years of overusing classes in Python, explains why simpler constructs like functions, dataclasses, dictionaries, and modules often yield clearer, more maintainable code, and outlines when class‑based design still makes sense.

Pythonbest practicesclasses
0 likes · 7 min read
Why I Stopped Blindly Using Python Classes
php Courses
php Courses
Jul 25, 2025 · Backend Development

Master PHP’s array_map(): Transform Arrays with Simple Callbacks

This article explains the PHP array_map() function, covering its basic syntax, simple examples, and advanced techniques such as handling multiple arrays and passing extra parameters to callbacks, enabling developers to efficiently transform and manipulate array data.

Backendarray_mapfunctions
0 likes · 4 min read
Master PHP’s array_map(): Transform Arrays with Simple Callbacks
php Courses
php Courses
Jul 18, 2025 · Fundamentals

Master C++ Functions: Definitions, Calls, Parameters, and Scope Explained

This article provides a comprehensive guide to C++ functions, covering their definition syntax, various calling methods, parameter passing mechanisms, return value handling, and variable scope rules, supplemented with clear code examples and practical demonstrations.

CParameter PassingReturn values
0 likes · 6 min read
Master C++ Functions: Definitions, Calls, Parameters, and Scope Explained
Open Source Tech Hub
Open Source Tech Hub
Jul 9, 2025 · Backend Development

Master Essential PHP Array Functions for Cleaner Code

This guide walks PHP developers through eight essential array functions—array_map, array_walk, array_reduce, array_filter, array_merge, array_keys, array_values, array_unique, and array_combine—explaining their purpose, usage, and providing clear code examples to help manage and transform data efficiently.

ArraysPHPfunctions
0 likes · 6 min read
Master Essential PHP Array Functions for Cleaner Code
php Courses
php Courses
Jul 9, 2025 · Backend Development

Master PHP’s array_pop: Quickly Remove the Last Element from an Array

This tutorial explains how the PHP function array_pop() removes and returns the last element of an array, demonstrates its usage with clear code examples, and discusses best practices such as preserving the original array and removing multiple elements.

ArraysBackend Developmentarray_pop
0 likes · 3 min read
Master PHP’s array_pop: Quickly Remove the Last Element from an Array
Test Development Learning Exchange
Test Development Learning Exchange
May 25, 2025 · Fundamentals

Master Python Functions: Syntax, Parameters, Defaults, and Advanced Tricks

This guide explains how to define Python functions, the role of return statements, differences between positional and keyword arguments, default‑parameter pitfalls, *args/**kwargs usage, argument unpacking, reference passing semantics, positional‑only/keyword‑only parameters, and anonymous lambda functions, all with clear code examples.

LambdaPythonargs-kwargs
0 likes · 6 min read
Master Python Functions: Syntax, Parameters, Defaults, and Advanced Tricks
php Courses
php Courses
May 7, 2025 · Backend Development

Using PHP's array_sum() Function to Sum Array Elements

This article explains the built‑in PHP array_sum() function, demonstrates how to use it with both indexed and associative arrays, shows how to combine it with other functions like array_map() for more complex calculations, and highlights its performance and coding advantages.

BackendCode ExamplesPHP
0 likes · 5 min read
Using PHP's array_sum() Function to Sum Array Elements
Code Mala Tang
Code Mala Tang
May 4, 2025 · Operations

Master Shell Functions: From Basics to Advanced Automation

This guide explains everything about Shell functions—from basic syntax and creation, through parameter passing, return values, nesting, and recursion, to best practices, sourcing from the command line, and a real‑world file‑backup example—helping Unix/Linux users and DevOps engineers write modular, reusable scripts.

AutomationScriptingShell
0 likes · 7 min read
Master Shell Functions: From Basics to Advanced Automation
Python Programming Learning Circle
Python Programming Learning Circle
Apr 23, 2025 · Fundamentals

10 Classic Python Operations: Variables, Type Conversion, Strings, Lists, Loops, Conditionals, Functions, Exceptions, File I/O, and Modules

This article introduces ten essential Python techniques—including variable assignment and swapping, data type conversion, string manipulation, list handling, loop constructs, conditional statements, function definition, exception handling, file operations, and module imports—providing clear explanations and code examples to help beginners strengthen their programming foundation.

Control FlowData Typesfile I/O
0 likes · 10 min read
10 Classic Python Operations: Variables, Type Conversion, Strings, Lists, Loops, Conditionals, Functions, Exceptions, File I/O, and Modules
IT Services Circle
IT Services Circle
Apr 19, 2025 · Fundamentals

7 Common Pitfalls in Python Function Writing and How to Avoid Them

This article explains the most frequent mistakes developers make when defining Python functions—such as mutable default arguments, inconsistent return types, overly large functions, outdated string formatting, missing type hints, manual index tracking, and misuse of try‑except for flow control—and provides clear, best‑practice solutions with code examples to write cleaner, more maintainable, and efficient Python code.

Error HandlingPythonenumerate
0 likes · 8 min read
7 Common Pitfalls in Python Function Writing and How to Avoid Them
Code Mala Tang
Code Mala Tang
Apr 12, 2025 · Fundamentals

Master Python Decorators: From Simple 2‑Layer to Powerful 3‑Layer Patterns

This article explains Python decorators, describing how they wrap functions to add extra behavior, demonstrates a basic two‑layer decorator with code examples, then extends to parameterized three‑layer decorators, and shows real‑world uses in Flask and Django for routing and access control.

DjangoFlaskWeb Frameworks
0 likes · 6 min read
Master Python Decorators: From Simple 2‑Layer to Powerful 3‑Layer Patterns
php Courses
php Courses
Mar 21, 2025 · Fundamentals

Understanding Python Functions: Definition, Syntax, and Usage

This article explains what Python functions are, how to define them with the def keyword, demonstrates calling functions, returning values, and covers various parameter types with clear code examples to help readers write clean and reusable code.

PythonReturn valuesfunctions
0 likes · 5 min read
Understanding Python Functions: Definition, Syntax, and Usage
php Courses
php Courses
Mar 19, 2025 · Backend Development

PHP Performance Optimization: Faster Alternatives to Common Functions

This article presents a series of PHP function replacements—such as using isset() instead of array_key_exists(), strpos() over strstr(), pre‑increment ++$i, foreach over for, json_encode()/json_decode() instead of serialize()/unserialize(), strict === over ==, and implode() rather than string concatenation—to boost code speed without altering business logic.

BackendPHPcoding practices
0 likes · 6 min read
PHP Performance Optimization: Faster Alternatives to Common Functions
Ops Development & AI Practice
Ops Development & AI Practice
Mar 12, 2025 · Backend Development

Mastering Go Closures: How Functions Capture Their Environment

This article explains Go closures—what they are, how they capture surrounding variables, key characteristics, practical code examples, common pitfalls like memory leaks and concurrency issues, and typical use‑cases such as function factories, state management, callbacks, and interface implementation.

Backend DevelopmentGoGoroutine
0 likes · 7 min read
Mastering Go Closures: How Functions Capture Their Environment
Test Development Learning Exchange
Test Development Learning Exchange
Mar 3, 2025 · Fundamentals

Understanding Function Calls and References in Python

This article explains the core concepts of function calls and references in Python, covering basic definitions, common calling methods, advanced applications such as passing functions as arguments, returning functions, using functions as objects, and includes numerous code examples illustrating direct calls, indirect calls, decorators, closures, and callbacks.

Function CallsFunction ReferencesHigher-Order Functions
0 likes · 9 min read
Understanding Function Calls and References in Python
Test Development Learning Exchange
Test Development Learning Exchange
Feb 28, 2025 · Fundamentals

Understanding and Using Python Functions: Definitions, Examples, and Best Practices

This article introduces Python functions, explains their syntax and various use cases, and provides numerous code examples—including basic definitions, parameters, return values, default arguments, variable arguments, keyword arguments, docstrings, recursion, lambda expressions, higher‑order functions, and nested functions—to help readers write clean, reusable, and efficient code.

Code ExamplesPythonTutorial
0 likes · 8 min read
Understanding and Using Python Functions: Definitions, Examples, and Best Practices
Test Development Learning Exchange
Test Development Learning Exchange
Feb 7, 2025 · Fundamentals

Python Basics: Print, Variables, Data Types, Control Flow, Functions, and More

This comprehensive tutorial introduces Python fundamentals, covering print statements, variable definition and assignment, data type conversion, conditional and loop structures, function creation and invocation, input handling, comments, indentation rules, program exit methods, operators, slicing, collections, file I/O, exception handling, and module imports.

Control FlowData TypesPython
0 likes · 33 min read
Python Basics: Print, Variables, Data Types, Control Flow, Functions, and More
php Courses
php Courses
Jan 17, 2025 · Backend Development

How to Use PHP trim() Function to Remove Whitespace and Specified Characters

This article explains the PHP trim() function, detailing its syntax, parameters, and usage for removing leading and trailing whitespace or custom characters, and provides multiple code examples illustrating basic trimming, character masking, and common scenarios in string processing.

.trimPHPString Manipulation
0 likes · 4 min read
How to Use PHP trim() Function to Remove Whitespace and Specified Characters
Su San Talks Tech
Su San Talks Tech
Dec 10, 2024 · Databases

Master MySQL: 13 Essential Functions & Commands Every Developer Should Know

This article walks through 13 practical MySQL techniques—including group_concat, char_length, locate, replace, now, various INSERT variations, SELECT FOR UPDATE, on duplicate key update, SHOW CREATE TABLE, CREATE TABLE … SELECT, EXPLAIN, SHOW PROCESSLIST, and mysqldump—providing clear examples, SQL snippets, and screenshots to help developers write more efficient and reliable queries.

QueriesSQLdatabase
0 likes · 14 min read
Master MySQL: 13 Essential Functions & Commands Every Developer Should Know
Test Development Learning Exchange
Test Development Learning Exchange
Dec 3, 2024 · Fundamentals

Python Programming Fundamentals

This tutorial covers Python's core programming concepts including variables, data types, control structures, functions, object-oriented programming, and file operations, providing a comprehensive foundation for beginners.

Data TypesOOPPython
0 likes · 16 min read
Python Programming Fundamentals
MaGe Linux Operations
MaGe Linux Operations
Nov 28, 2024 · Operations

Master Shell Scripting: Essential Tips and Real-World Examples for Linux Automation

This comprehensive guide explains why learning Shell scripting is crucial for Linux system administrators, outlines the prerequisite skills, and walks through core concepts such as variables, quoting, command substitution, script execution methods, and function definitions with practical code examples to boost automation efficiency.

BashShell scriptingcommand substitution
0 likes · 11 min read
Master Shell Scripting: Essential Tips and Real-World Examples for Linux Automation
php Courses
php Courses
Nov 22, 2024 · Backend Development

Understanding PHP's array_unique() Function: Definition, Implementation, Usage, and Performance Optimization

This article explains PHP's array_unique() function, covering its definition, parameters, implementation, usage examples, and performance optimization techniques, while providing complete code snippets and practical guidance for developers, including discussion of alternative approaches such as array_flip and array_keys for faster deduplication.

BackendPHParray_unique
0 likes · 5 min read
Understanding PHP's array_unique() Function: Definition, Implementation, Usage, and Performance Optimization
Test Development Learning Exchange
Test Development Learning Exchange
Nov 1, 2024 · Fundamentals

Comprehensive Python Basics: Variables, Data Types, Control Structures, Functions, OOP, Standard Library, and More

This article provides a comprehensive Python tutorial covering variables, data types, control structures, functions, classes, standard library modules, file I/O, exception handling, comprehensions, generators, decorators, modules, virtual environments, coding style, and Git version control, complete with example code snippets.

Control structuresPythonStandard Library
0 likes · 14 min read
Comprehensive Python Basics: Variables, Data Types, Control Structures, Functions, OOP, Standard Library, and More
php Courses
php Courses
Nov 1, 2024 · Backend Development

Using PHP's array_pop() to Remove the Last Element from an Array

This article explains how the PHP array_pop() function removes and returns the last element of an array, demonstrates its usage with a fruit array example, shows the resulting output, and discusses considerations such as multiple removals, looping, and preserving the original array.

BackendPHPTutorial
0 likes · 4 min read
Using PHP's array_pop() to Remove the Last Element from an Array
Test Development Learning Exchange
Test Development Learning Exchange
Oct 18, 2024 · Fundamentals

Comprehensive Python 3 Basics: Syntax, Data Types, Control Flow, Functions, Modules, and More

This article provides a thorough introduction to Python 3, covering fundamental syntax, core data types, operators, control structures, functions, modules, file I/O, error handling, object‑oriented concepts, and common standard‑library utilities, complete with runnable code examples for each topic.

Data TypesPythonTutorial
0 likes · 24 min read
Comprehensive Python 3 Basics: Syntax, Data Types, Control Flow, Functions, Modules, and More
Liangxu Linux
Liangxu Linux
Sep 22, 2024 · Operations

20 Essential Shell Functions for File Management, System Monitoring, and Automation

This article presents twenty practical custom Bash functions covering file existence checks, directory listings, size retrieval, command verification, date and time handling, colored output, delays, root detection, IP fetching, random string generation, port checking, service control, and email sending, each with concise code examples for easy integration into scripts.

AutomationShell scriptingfunctions
0 likes · 6 min read
20 Essential Shell Functions for File Management, System Monitoring, and Automation
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Sep 20, 2024 · Fundamentals

Understanding JavaScript Pre‑compilation and Hoisting

This article explains JavaScript's pre‑compilation process, including variable and function declaration hoisting, the creation of execution contexts, and the differences between var, let, and const, using several illustrative code examples to clarify how the engine resolves identifiers at runtime.

JavaScriptPre-compilationVariables
0 likes · 7 min read
Understanding JavaScript Pre‑compilation and Hoisting
Linux Cloud Computing Practice
Linux Cloud Computing Practice
Aug 7, 2024 · Operations

Master Shell Scripting: Core Commands, Variables, Loops, and Functions Explained

This comprehensive guide walks you through the fundamentals of Linux shell scripting, covering why it matters, essential prerequisites, variable handling, string manipulation, arithmetic operations, condition testing, control structures like if/else, for/while loops, functions, case statements, and array usage, all with clear examples and practical code snippets.

ArraysAutomationBash
0 likes · 34 min read
Master Shell Scripting: Core Commands, Variables, Loops, and Functions Explained
Test Development Learning Exchange
Test Development Learning Exchange
Jun 16, 2024 · Fundamentals

Python Basics: Common Questions, Syntax, Data Types, Control Structures, Functions, Modules, and Error Handling

This article provides a comprehensive overview of Python fundamentals for beginners, covering the language’s purpose, basic syntax, data types, control structures, functions, modules, exception handling, input/output, common built‑in functions, advanced concepts like list comprehensions and generators, and typical runtime errors with troubleshooting tips.

Control structuresError HandlingPython
0 likes · 8 min read
Python Basics: Common Questions, Syntax, Data Types, Control Structures, Functions, Modules, and Error Handling
php Courses
php Courses
Jun 5, 2024 · Backend Development

Using PHP’s is_float() Function to Check for Floating-Point Numbers

This article explains PHP’s built‑in is_float() function, demonstrating how it checks whether a variable is a floating‑point number, with simple and complex code examples, output explanations, and notes on type strictness and practical usage scenarios.

BackendPHPfunctions
0 likes · 5 min read
Using PHP’s is_float() Function to Check for Floating-Point Numbers
Python Programming Learning Circle
Python Programming Learning Circle
May 18, 2024 · Fundamentals

Pandas Data Modification, Iteration, and Function Application Techniques

This article provides a comprehensive guide to using Pandas for data cleaning and transformation, covering value modification, replacement, filling missing data, renaming, column addition, row insertion, merging, deletion, advanced filtering, iteration methods, and applying functions such as pipe, apply, agg, and transform.

data-cleaningdata-manipulationdataframe
0 likes · 9 min read
Pandas Data Modification, Iteration, and Function Application Techniques
php Courses
php Courses
May 13, 2024 · Backend Development

Using PHP is_int() Function to Check Integer Variables

This article explains PHP's is_int() function, its syntax, return values, and provides two practical code examples demonstrating how to determine whether variables are integers, illustrating usage with integers, floats, strings, and boolean values.

PHPfunctionsis_int
0 likes · 5 min read
Using PHP is_int() Function to Check Integer Variables
Python Programming Learning Circle
Python Programming Learning Circle
May 8, 2024 · Fundamentals

Lesser‑Known Python Tricks and Techniques

This article introduces several lesser‑known Python tricks—including the ternary operator, enumerate, zip, list comprehensions, lambda functions, any/all, itertools, generators, decorators, and the use of * and ** for multiple arguments—each explained with concise examples to help developers write cleaner, more efficient code.

GeneratorsTipscode
0 likes · 7 min read
Lesser‑Known Python Tricks and Techniques
DaTaobao Tech
DaTaobao Tech
Apr 1, 2024 · Fundamentals

Fundamentals of Modern C++: Types, Pointers, Functions, and Classes

The article offers a concise, modern C++ (C++11+) tutorial covering fundamental built‑in types, variable declaration with auto and uniform initialization, pointer and array handling, function definitions, overloading, templates, class design—including constructors, move semantics, inheritance, virtual functions—and essential standard‑library utilities such as smart pointers and std::function.

Cclassesfunctions
0 likes · 48 min read
Fundamentals of Modern C++: Types, Pointers, Functions, and Classes
php Courses
php Courses
Mar 21, 2024 · Backend Development

Using PHP is_float() to Check for Float Variables

This article explains PHP's is_float() function, demonstrating how it checks whether a variable is a floating‑point number, with multiple code examples showing simple checks, array iteration, and notes on type strictness and conversion behavior.

PHPfunctionsis_float
0 likes · 5 min read
Using PHP is_float() to Check for Float Variables
Open Source Linux
Open Source Linux
Mar 18, 2024 · Fundamentals

Unlock C Programming Fundamentals: From Hello World to Advanced Structures

This comprehensive tutorial walks you through the essentials of C programming, covering everything from the classic Hello World program and basic syntax to data types, operators, control structures, functions, recursion, arrays, strings, and multi‑dimensional arrays, complete with clear code examples and visual diagrams.

ArraysC programmingControl structures
0 likes · 35 min read
Unlock C Programming Fundamentals: From Hello World to Advanced Structures
Sohu Tech Products
Sohu Tech Products
Feb 21, 2024 · Frontend Development

Comprehensive Guide to CSS Functions: 66 Common Functions Explained

This comprehensive guide explains 66 essential CSS functions—from basic attr() and var() to advanced color, filter, gradient, math, graphic, transform, layout, and animation timing functions—detailing their syntax, practical usage, and code examples so developers can create dynamic, responsive, and interactive web designs.

CSSFront‑EndStyling
0 likes · 48 min read
Comprehensive Guide to CSS Functions: 66 Common Functions Explained
php Courses
php Courses
Jan 30, 2024 · Backend Development

Understanding PHP 7.3 array_key_first() Function: Syntax, Usage, and Examples

PHP 7.3 introduces the array_key_first() function, which returns the first key of an array or null if empty; this article explains its syntax, provides code examples for retrieving the first key and checking for empty arrays, and highlights usage considerations and potential pitfalls.

ArraysBackendPHP
0 likes · 3 min read
Understanding PHP 7.3 array_key_first() Function: Syntax, Usage, and Examples
php Courses
php Courses
Jan 30, 2024 · Backend Development

PHP array_fill() Function: Usage, Parameters, Return Values, and Examples

This article explains PHP's array_fill() function, detailing its purpose, parameters, return values, and provides simple and multi‑dimensional examples illustrating how to create and populate arrays with a single value, including edge cases such as negative indices and zero length.

BackendPHPTutorial
0 likes · 5 min read
PHP array_fill() Function: Usage, Parameters, Return Values, and Examples
Python Programming Learning Circle
Python Programming Learning Circle
Dec 22, 2023 · Fundamentals

Hidden Python Tricks and Useful Functions

This article introduces a collection of 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 data structures—providing concise explanations and runnable code examples to boost coding efficiency.

PythonTipsTutorial
0 likes · 10 min read
Hidden Python Tricks and Useful Functions
php Courses
php Courses
Nov 3, 2023 · Backend Development

Using Functions in PHP Namespaces: Definition, Invocation, and Autoloading

This article explains PHP namespaces, shows how to define functions within them, demonstrates fully qualified and alias‑based calls, covers sub‑namespace and global namespace usage, and introduces the spl_autoload_register() autoloader with practical code examples.

AutoloadingBackend DevelopmentNamespaces
0 likes · 4 min read
Using Functions in PHP Namespaces: Definition, Invocation, and Autoloading
php Courses
php Courses
Oct 31, 2023 · Backend Development

Common Sorting Functions in PHP: sort, rsort, asort, ksort, and uasort

This article introduces the most frequently used PHP sorting functions—including sort, rsort, asort, ksort, and uasort—explaining their behavior, usage examples, and output to help developers choose the appropriate function for arrays and associative arrays.

Backend DevelopmentPHPfunctions
0 likes · 5 min read
Common Sorting Functions in PHP: sort, rsort, asort, ksort, and uasort
php Courses
php Courses
Oct 31, 2023 · Backend Development

Implementing Pagination in PHP with Custom Functions

This article explains the principle of pagination and provides three reusable PHP functions—get_total_pages, get_offset, and generate_pagination—along with example code to calculate total pages, determine record offsets, and render a navigation bar for efficient web page data paging.

BackendPHPfunctions
0 likes · 6 min read
Implementing Pagination in PHP with Custom Functions
Python Programming Learning Circle
Python Programming Learning Circle
Sep 15, 2023 · Fundamentals

Essential Excel Functions for Data Analysis: CONCATENATE, LEN, COUNTA, DAYS, NETWORKDAYS, SUMIFS, VLOOKUP, and More

This article introduces a comprehensive set of Excel functions—including CONCATENATE, LEN, COUNTA, DAYS, NETWORKDAYS, SUMIFS, AVERAGEIFS, VLOOKUP, FIND/SEARCH, IFERROR, COUNTIFS, LEFT/RIGHT, RANK, MINIFS, MAXIFS, and SUMPRODUCT—explaining their purpose, syntax, and practical examples for effective data analysis and reporting.

Spreadsheetformulasfunctions
0 likes · 10 min read
Essential Excel Functions for Data Analysis: CONCATENATE, LEN, COUNTA, DAYS, NETWORKDAYS, SUMIFS, VLOOKUP, and More
Python Programming Learning Circle
Python Programming Learning Circle
Sep 1, 2023 · Fundamentals

Python Basics: Variables, Data Types, Control Flow, Functions, and Common Operations

This article provides a comprehensive introduction to Python fundamentals, covering language features, variable handling, data types such as numbers, strings, lists, tuples, dictionaries, as well as control structures, loops, functions, exception handling, file I/O, and time processing with practical code examples.

Control FlowData TypesVariables
0 likes · 15 min read
Python Basics: Variables, Data Types, Control Flow, Functions, and Common Operations
Open Source Linux
Open Source Linux
Sep 1, 2023 · Fundamentals

Mastering C Pointers: From Basics to Advanced Function Passing

This article explains the fundamentals of C pointer variables, covering their memory layout, declaration, initialization, pointer arithmetic with arrays, passing pointers between functions, and using arrays as function parameters, illustrated with clear code examples and diagrams.

ArraysCMemory
0 likes · 8 min read
Mastering C Pointers: From Basics to Advanced Function Passing
JD Tech
JD Tech
Aug 23, 2023 · Fundamentals

Go Language Basics: Syntax, Variables, Control Flow, OOP, Concurrency, and Error Handling

This article introduces Go to developers familiar with other object‑oriented languages, covering the language definition, basic syntax such as variable and constant declarations, control structures, functions with multiple returns and variadic parameters, data structures like arrays, slices and maps, struct‑based object‑orientation, interfaces, goroutine‑based concurrency, channels, mutexes, and the simple error‑handling model using error, defer, panic, and recover.

GoVariablesconcurrency
0 likes · 25 min read
Go Language Basics: Syntax, Variables, Control Flow, OOP, Concurrency, and Error Handling
php Courses
php Courses
Aug 18, 2023 · Backend Development

How to Use PHP's round() Function for Precise Number Rounding

This article explains PHP's round() function, covering its basic usage, optional precision and rounding mode parameters, and provides multiple code examples demonstrating rounding of positive, negative, and specially‑mode‑controlled numbers.

Code ExamplesPHPRounding
0 likes · 5 min read
How to Use PHP's round() Function for Precise Number Rounding
php Courses
php Courses
Aug 4, 2023 · Backend Development

Understanding PHP reset() Function: Syntax, Examples, and Usage

This article explains PHP's reset() function, its syntax, behavior, and provides multiple code examples demonstrating how to retrieve the first array element, iterate through arrays, and combine it with end() to access both first and last elements.

ArrayPHPTutorial
0 likes · 4 min read
Understanding PHP reset() Function: Syntax, Examples, and Usage
php Courses
php Courses
Jun 15, 2023 · Databases

20 Common MySQL Functions and Their Usage

This article introduces twenty commonly used MySQL functions, explains their purposes, and provides clear SQL examples with expected results to help developers efficiently manipulate and process data, including string, numeric, date, and aggregate functions, each illustrated with sample queries and output.

SQLdatabasefunctions
0 likes · 5 min read
20 Common MySQL Functions and Their Usage
Open Source Linux
Open Source Linux
Jun 1, 2023 · Fundamentals

Master Shell Scripting: From Basics to Real‑World Automation

This guide introduces shell scripting fundamentals, covering what a shell is, script creation, variables, environment variables, control structures, functions, arrays, and practical examples such as a hello‑world script, system backup, and server information collection, all illustrated with clear Bash code snippets.

AutomationBashShell
0 likes · 24 min read
Master Shell Scripting: From Basics to Real‑World Automation
Architects Research Society
Architects Research Society
May 2, 2023 · Cloud Computing

What Is Apache OpenWhisk? An Overview of the Open‑Source Serverless Platform

Apache OpenWhisk is an open‑source, distributed serverless platform that runs functions in Docker containers, supports multiple programming languages, can be deployed on various cloud or on‑premise environments such as Kubernetes, and offers seamless integration with popular services, scalable execution, and resource‑efficient operation.

Apache OpenWhiskDockerKubernetes
0 likes · 7 min read
What Is Apache OpenWhisk? An Overview of the Open‑Source Serverless Platform
Python Programming Learning Circle
Python Programming Learning Circle
Apr 20, 2023 · Fundamentals

Common Python Tricks and Best Practices

This article presents a collection of practical Python tricks covering multiple user inputs, the use of all() and any() for condition handling, odd/even checks, variable swapping, palindrome detection, inline if statements, duplicate removal, finding the most frequent list element, list comprehensions, *args, enumerate, string joining, dictionary merging, sorting, pretty‑printing, and efficient list reversal techniques.

Tipsbest-practicescode-snippets
0 likes · 11 min read
Common Python Tricks and Best Practices
AI Cyberspace
AI Cyberspace
Mar 6, 2023 · Fundamentals

Master C Functions and Macros: From Basics to Advanced Preprocessor Tricks

This article provides a comprehensive guide to C functions—including their categories, signatures, parameter passing, pointer parameters, variadic arguments, callbacks, and recursion—and delves into the C preprocessor, covering directives, macro definitions, operators, and practical macro examples for safer and more expressive code.

CMacrosPreprocessor
0 likes · 17 min read
Master C Functions and Macros: From Basics to Advanced Preprocessor Tricks
Liangxu Linux
Liangxu Linux
Jan 8, 2023 · Databases

Master MySQL: 13 Essential Functions and Commands for Efficient Data Handling

This comprehensive guide walks you through 13 practical MySQL techniques—including group_concat, char_length, locate, replace, now, insert‑select variations, on duplicate key update, show create table, explain, show processlist, and mysqldump—complete with clear examples, SQL snippets, and result screenshots to help you manage and optimize your data effectively.

SQLdatabasefunctions
0 likes · 13 min read
Master MySQL: 13 Essential Functions and Commands for Efficient Data Handling
Liangxu Linux
Liangxu Linux
Jan 2, 2023 · Databases

13 Must‑Know MySQL Functions and Tricks for Everyday Development

This guide walks through a collection of practical MySQL functions and commands—including GROUP_CONCAT, CHAR_LENGTH, LOCATE, REPLACE, NOW, INSERT…SELECT, INSERT…IGNORE, SELECT FOR UPDATE, ON DUPLICATE KEY UPDATE, SHOW CREATE TABLE, CREATE TABLE … SELECT, EXPLAIN, SHOW PROCESSLIST and mysqldump—providing clear syntax, example queries, result screenshots and key usage notes to help developers write more efficient and reliable SQL.

Data MigrationSQLdatabase
0 likes · 14 min read
13 Must‑Know MySQL Functions and Tricks for Everyday Development
Python Programming Learning Circle
Python Programming Learning Circle
Nov 4, 2022 · Fundamentals

Common Python Functions and Practical Code Examples

This article presents a curated collection of over 100 frequently used Python functions across twelve categories, providing concise explanations and ready-to-run code snippets to help beginners quickly memorize and apply essential built‑in operations, from basic I/O to decorators and regular expressions.

Pythonfunctionsprogramming fundamentals
0 likes · 11 min read
Common Python Functions and Practical Code Examples
Python Programming Learning Circle
Python Programming Learning Circle
Oct 8, 2022 · Fundamentals

Commonly Used Python Functions: A Quick Reference Guide

This article presents a concise, organized collection of over 100 commonly used Python functions across twelve categories—including basic I/O, control flow, data structures, modules, and file operations—providing code examples and explanations to help beginners quickly memorize and apply them.

Pythonfunctions
0 likes · 10 min read
Commonly Used Python Functions: A Quick Reference Guide