Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!

Question list filters

Filter by
Sorted by
Tagged with
Filter by Employee ID
Best practices
0 votes
2 replies
162 views

I want to compress the data being transferred in an API over HTTP, specifically during file upload from client to server. Most examples I found focus on response compression (server → client) using ...
Score of 1
4 answers
238 views

I'm new to CLI and trying to use it instead of GUI options to get better at it. Trying to extract a .gz archived pdf, but after running a command to see what happens it seems I can't input anything ...
Score of 1
1 answer
93 views

I have a microservices architecture implemented with Python and FastAPI in AWS Lambda (No API Gateway). The data flow is roughly: Client <-> Service A <-> Service B (Processor) <-> ...
Best practices
0 votes
5 replies
198 views

How do I read a gz file consisting of very long lines (not limited but up to GB's) line by line in C++? The solutions with zlib are limited to a buffer size but I don't know my limit.
Score of 1
2 answers
221 views

I have the following (working) shell command: tar -x --directory "$inner" --strip-components 1 <"$inner.tar.gz" It's part of a shell script I'm translating to Tcl. I can use ...
Score of 0
0 answers
139 views

I have a Python file: from concurrent.futures import ProcessPoolExecutor import tarfile, rapidgzip def processNdjson(ndjsonName): with rapidgzip.open(inTarDir) as myZip: myZip....
Score of 4
3 answers
227 views

I want to serialize R objects as JSON for other programs to use, and gzip them for efficient transport. So I run data <- list(foo = "bar") readr::write_file(jsonlite::as_gzjson_b64(data), ...
Score of 3
4 answers
363 views

Im using angular v15 for my project. It's not small but not really big. I'd say medium to big. Running ng serve takes A LOT of time. Build at: 2025-07-23T12:23:56.259Z - Hash: 5ba2b19880727f6c - Time: ...
Score of 2
1 answer
247 views

I am relatively new to C programming. I am trying to write a parser for the Minecraft NBT data format (specification by Notch on the Wayback Machine). However, I am running into a problem. An NBT file ...
Score of 0
0 answers
58 views

I am trying to create a snippet of Python code that first writes a possibly large text file (think csv) to a SpooledTemporaryFile in memory. Then that spooled file is compressed with gzip. While some ...
Score of 7
1 answer
206 views

Note the following gzip compressions: $ seq 1000000 > file.txt $ ls -l total 6728 -rw-r--r--. 1 felix felix 6888896 jun 6 18:29 file.txt $ gzip -f -k file.txt $ ls -l total 8808 -rw-r--r--. 1 ...
Score of 0
1 answer
75 views

I am given a SpooledTemporaryFile through FastAPI's UploadFile. My goal is to write it to disk so I can extract it and process its contents later. This seems simple, but I am having problems saving ...
Score of 0
1 answer
60 views

I'm working with embedded devices (STM32), the device would have a TCP server (HTTP server). The internal memory and flash is limited, so a more complex page wouldn't fit to the device. I would need ...
Score of 0
0 answers
60 views

I am trying to extract .pkl files from the .zip files that are actually gzips. I have tried gunzip but it only works with .gzip extension. I have tried the following but it gives me all the data (pkl,...
Score of 0
0 answers
112 views

I wrote a wrangle function that accepts a compressed JSON file as an argument and returns a dataframe after decompressing the file. The function ran well without error but when I attempted using the ...

15 30 50 per page
1
2 3 4 5
407