Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
205 views

I am trying to download a file from an ESP32 which is running the PsychicHTTP webserver. For testing, this is just a fixed .CSV file. In HTML: <div> <button type="button" onclick=&...
Dean Jones's user avatar
0 votes
1 answer
123 views

I am trying to download a movie titled "Shimen," which was showcased at the 60th Golden Horse Awards. I discovered a streaming link: https://www.fofoyy.com/dianying/96937 I was unable to ...
Ethan Lee's user avatar
0 votes
1 answer
103 views

Android studio is stuck at "Starting download...." screen and not moving forward from an hour almost. Image attached for reference. It is taking longer than expected. Not showing any ...
Sonia Ejaz's user avatar
1 vote
0 answers
37 views

I am working on a project where I need to download a smaller portion of data (around 10 GB) from the air.inc. I am still in the planning phase and don't have much experience with such tasks. I would ...
Calm Rain's user avatar
-1 votes
1 answer
49 views

I'm writing to StackOverflow about a problem I'm having downloading a file from a distant server using SFTP. I can upload and delete a file, but I cannot download a file. Here is my code for download :...
Joc380's user avatar
  • 21
0 votes
1 answer
185 views

This is my first time working in an ASP.NET application (and C# in general) and I have issues creating a file in memory and downloading it from the browser. My component .ascx file contains a button. ...
lordblendi's user avatar
0 votes
1 answer
52 views

I am facing a problem on my PROFTPD server on which there is a lot of traffic. installed on CENTOS8 server with docker. ProFTPD Version 1.3.7a Take for example two clients: Client-1 requests the ...
 idir's user avatar
  • 17
0 votes
1 answer
273 views

I have been trying to download datasets from the OECD using R. library(OECD) search_dataset("transport") Error in read_xml.response(httr::GET(url, ...)): Not Found (HTTP 404). and ...
user24236624's user avatar
0 votes
0 answers
48 views

I only have a link from a file storaged in the URL https://storage.googleapis.com/ (I understand that it is Google Cloud), this link shows me the file in the browser and I can download it manually. I ...
Feryohan's user avatar
0 votes
0 answers
57 views

I have an endpoint with the following code: var range = Request.GetTypedHeaders().Range; var file = new MemoryStream(Enumerable.Range(0, 255).Select(x => (byte)x).ToArray()); // Response.Body = ...
Yola's user avatar
  • 19.4k
1 vote
1 answer
191 views

I've been working on a project that involves using Ruby. Despite several attempts, I haven't been successful in installing it. I'm attempting to download a website with the Wayback Machine using a ...
Vincent van Rhyn's user avatar
0 votes
1 answer
44 views

Suppos I have a existing file ("export.xls") on "wwwroot/files" folder and I want to download it, I tried to use MemoryStream like: await ms.WriteAsync(resFile.Content); var res =...
Hosein Ghasemi's user avatar
2 votes
2 answers
319 views

In R and using Chromote, how could one download (or "Save as") a given file? For example, consider Wikipedia's tagline image: "https://en.wikipedia.org/static/images/mobile/copyright/...
S08's user avatar
  • 81
0 votes
0 answers
181 views

I am running RStudio Posit Workbench in my Chrome browser and want to download programmatically a text file to my local windows machine. I have tried # File on Unix server unix_file <- "/users/...
Grillo's user avatar
  • 130
1 vote
1 answer
84 views

I'm trying to have R automatically download and read a .csv file (daily streamflow) from Water Survey of Canada website to a local directory. To do this manually, I have to click on the "Download?...
Yang Yang's user avatar
  • 922
0 votes
1 answer
119 views

I'm working on a Flutter project where I've integrated a Power BI report. The report is generated based on an API call that I make, and it displays correctly in my app using a WebView package. The UI ...
Jay Patel's user avatar
0 votes
1 answer
459 views

Using the bq_table_download() function to download a table that has only 408,000 rows. Seems way to small to be getting a page size error, but this is the error message I get. Downloading first chunk ...
ddbd1417's user avatar
1 vote
1 answer
75 views

I could download the .xlsm file individually but when I tried to download them as ZIP. It says 'The file is corrupt and cannot be opened'. This is happening only for the .xlsm files but not while ...
Rose's user avatar
  • 21
0 votes
0 answers
286 views

The official PyMOL-download includes a download of Python v.10. But I already have Python installed and are unsure how other libraries (CSV in particular) are connected to the version of Python I ...
William Knutsson Gustafsson's user avatar
0 votes
0 answers
792 views

I'm trying to download a very large gzipped csv file, hosted on a S3 server. I want to insert each csv row to my database. To achieve that I get the encoded stream, unzip it, parse it and save it to ...
Jose Alvera's user avatar
0 votes
1 answer
80 views

Say I have a database driven website with lots of events, each event is loaded and displayed on a listing page. I want to present the data of each event as a download (lets say an eventname.txt file) ...
Mm-Art-In's user avatar
  • 23k
3 votes
1 answer
3k views

I want to download the model from roboflow https://universe.roboflow.com/rookeye/thesis-iklwo/model/3 Is there anyway to download the model as tflite?
Michael Biethman's user avatar
0 votes
2 answers
823 views

Im working on a service to download large files. There is a web frontend, that sends a get request, which recieves the file as a stream. I have looked into Streamsaver.js, but i dont want the mitm. ...
Elias Hetland's user avatar
1 vote
0 answers
77 views

I am trying to have my Nginx 1.14.1 on an AlmaLinux 8 machine serve private file larger than 1 GB. I am using a Chrome browser. If the file size is less than 1GB, everything works as expected. However,...
Prasanna's user avatar
  • 391
0 votes
0 answers
72 views

I am attempting to write a Python script that will let me download the latest SAM Exclusions list from a government website. I get very close, but when my Python script clicks on the link to download ...
Michael Keiffer's user avatar