Skip to main content
Filter by
Sorted by
Tagged with
4 votes
2 answers
182 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), ...
Raphael's user avatar
  • 10.8k
2 votes
1 answer
170 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 ...
Rusty's user avatar
  • 356
0 votes
1 answer
91 views

we have a file - file.tar.gz, currently we do following to check the content of the file. use gunzip command to get the .tar file use tar command to untar the file. Now inside the tar file we have ....
Khilesh Chauhan's user avatar
0 votes
1 answer
58 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 ...
Elijah Crum's user avatar
0 votes
0 answers
53 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,...
random23's user avatar
3 votes
1 answer
148 views

I'm trying to read through multiple compressed tables that are 5GB+ in size in R, and because I have insufficient memory to read them into memory all at once I need to process them one chunk at a time,...
Alex Petty's user avatar
2 votes
1 answer
123 views

I've written my own gzip decompressor which is fully compliant with RFC1951 (DEFLATE) and RFC1952 (gzip format), but I am struggling to test the optional CRC16 field present in the gzip header. If the ...
Sam's user avatar
  • 119
1 vote
0 answers
34 views

I have a Google Dataproc job that reads a CSV file from Google Cloud Storage, containing the following headers Content-type : application/octet-stream Content-encoding : gzip FileName: gs://...
Bob's user avatar
  • 383
0 votes
0 answers
57 views

I upload gzip compressed files to a bucket on GCS. I set the metadata of the object as follows: Content-Encoding: gzip Content-Type: application/json According to GCS documentation, this makes my ...
Alexandre Schaffner's user avatar
0 votes
1 answer
153 views

I am uploading a csv file with gzip encoded to Azure Blob Storage using C# .net 8. I am able to read the file ok when I download file and read data use .Net code. But I have two problems. When I ...
ARV's user avatar
  • 1,141
0 votes
1 answer
74 views

I'm working on a Spring Boot application where I need to download log files from a mock service and save them as GZIP files on a Windows system. However, I've encountered an issue where the saved .gz ...
Kailash's user avatar
  • 99
4 votes
2 answers
1k views

For some reason Chrome devtools started to show requests with gzip content in a HEX editor view like on response tab. That's very annoying... is there a way to disable this view and show plain text/...
Lucas Holz's user avatar
0 votes
0 answers
505 views

Good afternoon, Is there anyone who know how to solve this issue, when I try to launch a file with ros2 it says that the package is not found. error in terminal I've installed the package cloning the ...
Ali Abdelhamid Salmi's user avatar
2 votes
1 answer
111 views

I am working on an improved program that attempts to recover PKZIP keys with intention of CUDA support, So I integrated a decompression algorithm from infgen to decompress an array of bytes instead of ...
terry franklin's user avatar
0 votes
1 answer
113 views

I am making a sharing protocol, and when you share a folder it gets tar.gz-ipped and inserted in a folder. It's created like this: with tarfile.open(full_data_name, "w:gz", format=GNU_FORMAT)...
Valmond's user avatar
  • 2,969
-1 votes
1 answer
1k views

I am trying to implement gzip compression in my spring boot project(v2.7.12). I have added below in application.properties file. server: compression: enabled: true min-response-...
coredev's user avatar
0 votes
2 answers
115 views

I`m trying to download a file from an API that give me sales of a client. But I dont know how to do it. url = URI("https://conciliation.stone.com.br/v1/merchant/{MYCODE}/conciliation-file/...
Diogo Amaral's user avatar
0 votes
0 answers
104 views

I'm in my project's directory and have checked out tag 1.0. I've pushed this tag to Gitlab and made a release from that tag. I want to be able to do git archive --format=tgz --prefix myproject-1.0/ ...
Frotz's user avatar
  • 612
0 votes
1 answer
30 views

I have Python module 'common_types' in file: /path/common_types.py.gz I want to import it in my script: import common_types I tried: importlib.util.spec_from_file_location("common_types", ...
Brad Leibovic's user avatar
0 votes
1 answer
47 views

I have a .zip file with a large amount of .gz files, which I need to process. I want to open the .zip, which I can easily do through this code: zf = zipfile.ZipFile("file.zip", "r")...
txg's user avatar
  • 123
1 vote
0 answers
61 views

This is my code that generates a ZIP file on the fly and writes a pdf (fetched from AWS S3 bucket) inside the ZIP file. If I write the ZIP file to the disk via os.create there is no issues but if I ...
Dhruv Dogra's user avatar
0 votes
1 answer
103 views

I am working with gzip raw data that contains non-ASCII characters that I am unable to decompress and decode. I am getting the data from Firestore through the python client and the payload looks like: ...
pb-0's user avatar
  • 11
0 votes
0 answers
61 views

I have a black-box system that I'm feeding .tgz files into. When those files are compressed with node compress.js path/to/folder/, the black box accepts the archive. When they're compressed via tar -...
Colin Fredericks's user avatar
0 votes
1 answer
159 views

I want to compress HTTP traffic via gzip content-encoding http header, both on requests and responses. I'm able to receive compressed data from the HTTP server and to decompress it, but if I try to ...
Francesco Rizzi's user avatar
0 votes
1 answer
619 views

I use WebClient to get some data from a remote server. The remote server is capable of dealing with gzip. In other words if I send a GET request with "Accept-Encoding: gzip" it returns ...
ilhan's user avatar
  • 9,085

1
2 3 4 5
122