81,403 questions
0
votes
1
answer
33
views
How to download files from an API in React Native (Expo SDK 54)?
I am building a React Native app with Expo SDK 54. I want to download a file (e.g., PDF or image) from my API and save it on my device. I am not sure how to handle the file download and save it using ...
1
vote
2
answers
63
views
XML in Oracle PL/SQL - How to read a big hexBinary node?
I have an XML file with a node containing a file that has been converted into hexbinary.
The ultimate goal is to read that node, convert it back to an actual file and store the path of that file in a ...
-6
votes
1
answer
87
views
Why doesn't it even show an error anymore? [closed]
So for class, I have to code something to open a file named grades.txt and just after getting it to recognize the file name, it has stopped showing me errors. I know it is not working as there are ...
Best practices
1
vote
4
replies
114
views
Fastest way to count lines in a .csv from a .bat file?
I have this .bat file that I use to open .csv files, which counts the lines in them and uses Excel to open if under a million records and a separate program to open if more than a million records. The ...
0
votes
0
answers
27
views
Why can I create file with reserved words in Windows 11? [migrated]
I read everywhere that reserved file names like CON or NUL can't be used to create files on Windows no matter if there is a file extension following or not.
Even the Windows docs say:
Do not use the ...
2
votes
1
answer
69
views
PyScript on Github pages doesn't see files with relative paths
I have a github repo that is hosted on GitHub Pages (project site). I’m migrating a small PyScript demo to GitHub Pages and hitting 404s when preloading files via <py-config>. This works locally ...
1
vote
0
answers
32
views
Is it possible to do offline upload using GCS Bucket Presigned URL resumable vs write
I have a Frontend Client which lets users uploads any number of files of any size (think up to 100 GB File).
Currently I am using GCS buckets presigned URL to upload the file. My current ...
1
vote
1
answer
58
views
What is the better way to use fyne dialogs synchronously in Go?
I am programming a little software in Go called GoFileEncoder. For the file dialog boxes, I would like to use fyne.io/fyne/v2/dialog. Only, the functions dialog.ShowFileOpen() and dialog.ShowFileSave()...