Tagged articles
16 articles
Page 1 of 1
php Courses
php Courses
Sep 15, 2025 · Backend Development

Master PHP’s zip_read(): Read ZIP Entries Efficiently

This guide explains how to use PHP’s zip_read() function to open a ZIP archive, iterate through its entries, retrieve each entry’s name and size, and properly close the archive, while noting its limitations and related extraction functions.

File ProcessingPHPZIP handling
0 likes · 3 min read
Master PHP’s zip_read(): Read ZIP Entries Efficiently
Python Programming Learning Circle
Python Programming Learning Circle
Apr 12, 2025 · Fundamentals

Comprehensive Collection of Python Batch Automation Scripts

This article provides a curated set of Python scripts that automate common batch tasks—including merging Excel and CSV files, renaming and moving files, PDF merging, image conversion and processing, QR‑code and word‑cloud generation, holiday marking, and bulk email sending—complete with ready‑to‑run code examples.

AutomationFile Processingbatch operations
0 likes · 25 min read
Comprehensive Collection of Python Batch Automation Scripts
Java Architect Essentials
Java Architect Essentials
Oct 31, 2022 · Big Data

How to Process 10 GB of Age Data on a 4 GB Machine Using Java

This article walks through generating a 10 GB file of age values, reading it line‑by‑line on a 4 GB RAM, 2‑core machine, measuring single‑thread performance, then redesigning the pipeline with a producer‑consumer model, blocking queues and multithreaded string splitting to dramatically boost CPU utilization and cut processing time while managing memory consumption.

Big DataFile ProcessingJava
0 likes · 12 min read
How to Process 10 GB of Age Data on a 4 GB Machine Using Java
Java Backend Technology
Java Backend Technology
Jul 1, 2022 · Big Data

How to Find the Most Frequent Age in a 10 GB File Using Java Multithreading

This article explains how to generate a 10 GB file of age data, read it efficiently on a machine with limited memory, and use both single‑threaded and multithreaded Java techniques—including a producer‑consumer model and divide‑and‑conquer—to identify the age that appears most frequently, while analyzing performance, memory usage, and CPU utilization.

Big DataFile ProcessingJava
0 likes · 13 min read
How to Find the Most Frequent Age in a 10 GB File Using Java Multithreading
Python Crawling & Data Mining
Python Crawling & Data Mining
Feb 6, 2022 · Fundamentals

How to Insert One PDF into Another Using PyPDF2 in Python

This article walks through a practical Python solution for inserting one PDF into another using the PyPDF2 library, covering three possible strategies, selecting the simplest page‑by‑page method, providing installation instructions, and presenting complete example code with explanations.

File ProcessingPDF manipulationPyPDF2
0 likes · 4 min read
How to Insert One PDF into Another Using PyPDF2 in Python
Liangxu Linux
Liangxu Linux
Jun 27, 2021 · Backend Development

How to Process a 16 GB Log File in Seconds with Go

This tutorial explains how to extract logs from a 16 GB file in about 25 seconds by reading the file in chunks, reusing buffers with sync.Pool, and processing those chunks concurrently with Go goroutines, avoiding full‑memory loads or slow line‑by‑line scans.

File ProcessingGoconcurrency
0 likes · 9 min read
How to Process a 16 GB Log File in Seconds with Go
ITPUB
ITPUB
Sep 27, 2017 · Operations

Master Powerful Unix One-Liners for File Merging, Stats, and Automation

This guide presents a collection of concise Unix one‑liners that act as Swiss‑army‑knife tools for merging files, computing unions, intersections and differences, summing columns, listing file metadata, and leveraging xargs for flexible batch processing, all with minimal code.

File ProcessingOne-linersShell
0 likes · 6 min read
Master Powerful Unix One-Liners for File Merging, Stats, and Automation