Tag

split

0 views collected around this technical thread.

DevOps Operations Practice
DevOps Operations Practice
Feb 6, 2025 · Operations

Achieving Resumable File Transfers with SCP Using Rsync, Split, and Tmux

This article explains why SCP cannot resume interrupted transfers and provides practical alternatives—including rsync with the --partial option, splitting files with the split command, and keeping sessions alive with tmux—to achieve reliable, resumable file transfers on Linux systems.

Resumable TransferSCPTmux
0 likes · 6 min read
Achieving Resumable File Transfers with SCP Using Rsync, Split, and Tmux
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Nov 27, 2024 · Frontend Development

Understanding JavaScript split() Method and Common Pitfalls

This article recounts a production incident caused by misusing JavaScript's split() on an empty string, then explains the method's syntax, basic usage, and common pitfalls such as empty strings, extra separators, and Unicode handling, offering practical solutions for each case.

JavaScriptbugcoding
0 likes · 7 min read
Understanding JavaScript split() Method and Common Pitfalls
Laravel Tech Community
Laravel Tech Community
Aug 14, 2021 · Fundamentals

File Splitting with split and Merging with cat on Linux

This guide explains how to use the Linux split command to divide large files into smaller parts and the cat command to concatenate those parts back together, including syntax, practical examples, and help options for efficient file transfer and management.

CATcommand linefile management
0 likes · 7 min read
File Splitting with split and Merging with cat on Linux
Python Programming Learning Circle
Python Programming Learning Circle
Dec 10, 2020 · Fundamentals

Using Python's with Statement for File Handling and Understanding Shell and split() Method

This article explains how to use Python's with statement to read files into a list for access outside the block, demonstrates printing file lines and extracting shells, describes the purpose of rstrip(), outlines interactive versus non‑interactive shells, and introduces Python's split() method for string slicing.

Pythonfile handlingfundamentals
0 likes · 4 min read
Using Python's with Statement for File Handling and Understanding Shell and split() Method
Laravel Tech Community
Laravel Tech Community
Oct 19, 2020 · Backend Development

PHP array_chunk Function: Splitting an Array into Chunks

This article explains PHP’s array_chunk function, describing its parameters, return value, and optional key preservation, and provides clear example code that demonstrates how an input array can be divided into equally sized sub‑arrays.

ExamplePHParray
0 likes · 2 min read
PHP array_chunk Function: Splitting an Array into Chunks
Python Programming Learning Circle
Python Programming Learning Circle
May 26, 2020 · Fundamentals

Merging Multiple DataFrames and Handling Missing Values with pandas

This tutorial demonstrates how to combine separate student tables using pandas' merge function, explains the merge parameters, shows how to fill missing values with fillna, validates data for anomalies, and splits a phone column into separate area code and number columns.

data validationdataframefillna
0 likes · 7 min read
Merging Multiple DataFrames and Handling Missing Values with pandas