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

I am trying to extend the build task with the name buildAndPost, which after the build completes, copies the file to the required destination and connects to the server triggering a reload mechanism ...
LakshyaK2011's user avatar
3 votes
2 answers
92 views

I'm performing some calculations to generate chaotic solutions to a mathematical function. I have an infinite loop that looks something like this: f = open('solutions.csv', 'a') while True: x = ...
yyy's user avatar
  • 75
1 vote
0 answers
41 views

I'm working on a React component that allows users to upload files. The files are managed in a state array where each file has additional metadata such as a unique id (required for DataGrid) and a ...
Roni Jack Vituli's user avatar
2 votes
1 answer
173 views

Disk Partitions Information: Drive: C:\ (Local Drive) - Total: 119 GB Drive: D:\ (Local Drive) - Total: 341 GB Drive: G:\ (Local Drive) - Total: 15 GB Pick a path: C:\ "C:\\$Recycle.Bin" &...
Gustavo Da Costa Pereira's user avatar
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
1 vote
2 answers
178 views

I developed this function in C to read a file consisting of one word per line, like a standard wordlist. The function has already been optimized to a reasonable extent, but I would like to know if ...
ric's user avatar
  • 101
-1 votes
2 answers
129 views

I have an export to a .xlsx spreadsheet in Excel which is generated when the user supplies a date range and the car name. This works at the moment and displays the data correctly. The file name must ...
Need Help's user avatar
0 votes
1 answer
101 views

I have a piece of code that writes a csv response to a StringIO() object. I return this object through and endpoint and also use this output to generate a csv file that will be stored on the server. @...
charles's user avatar
  • 73
0 votes
0 answers
49 views

I am trying to build a script that generates Artifactory queries for an automation task. An AQL query would look like the one below. For each image block, there are 2 curly braces followed by a comma, ...
newb291's user avatar
1 vote
1 answer
46 views

I had a problem while modding minecraft. Something added a c:coal tag to minecraft:charcoal, causing issues for me. So instead of opening each of my 200 .jar files in my mods folder, I made a quick ...
Fernando Fuentes Martins's user avatar
0 votes
2 answers
74 views

.NET 8.0 NUnit 4.1.0 I have a bunch of tests that are wrapped within a TestFixture attribute. Each test case is currently opening a file as a FileParameter and passing that to a function: string path ...
Ewan's user avatar
  • 816
0 votes
1 answer
37 views

I am writing a code to send multiple big images of size 10MB after receiving from the front end. The objective is to do the processing of the images in the background and send the response immediately ...
Amby's user avatar
  • 462
1 vote
0 answers
27 views

I am working in Laravel and presenting you a simplified version of what I am trying to achieve. Assume a JSON file called site.json containing the following: { usedDiscounts: 10 } Every time a ...
coderboy's user avatar
  • 1,887
1 vote
0 answers
30 views

I am getting "No such file or directory" error while using --files option in cluster mode. Can someone please help if I am missing something. your_file_name.txt [Sample Input File] abc xyz ...
Deepak Mahajan's user avatar
0 votes
2 answers
116 views

I'm making a concurrent file downloader, which downloads in segment files and merges them afterwards. I want to improve it by pre-creating a big file with the whole size, then each thread will seek ...
Pairman's user avatar
  • 44
2 votes
1 answer
86 views

I'm having an issue with fseek and fread. For some reason, using fseek (f, 0, SEEK_END); will not give me the end of my file, and instead go 1000 bytes farther, giving me junk data and generally being ...
Pauel3312's user avatar
0 votes
2 answers
96 views

I have a .sql file with CREATE TABLE AND INSERTS TABLE sentences in it. Example: INSERT INTO `examle` (`myid`, `title`, `value`, `usefull`, `picture`, `short_description`, `description`, `wikipedia`, `...
curt's user avatar
  • 91
0 votes
0 answers
9 views

I have the following MDM setup: A browser is installed as managed (ex Firefox) No managed domains Managed app (Dropbox) with Files app integration. This issue only occurs on iOS 18. iOS 17 works ...
Milen Pivchev's user avatar
1 vote
1 answer
45 views

I have a VB App that is calling .bat files externally, I figured out how to add the bat files to the project, but how do I reference their location in code vs externally referenced outside of the ...
Kristal Luna's user avatar
0 votes
1 answer
77 views

I want to put a file in the OS clipboard. I am using Qt6. The windows code works, the Unix code is failing. The file is copied, and the original file is left. auto clipboard = QApplication::...
elcuco's user avatar
  • 9,246
2 votes
1 answer
321 views

I would like to save/export all of the output, formatted in the manner captured using Jupyter notebook's %%capture magic - to a PDF file. Similar to what this question is trying to answer - however, I ...
Soliton's user avatar
  • 31
0 votes
1 answer
74 views

I have successfully changed the output from default terminal screen to a *.png by for example. [load(implicit_plot), gnuplot_out_file[png,"gnu.png"], implicit_plot(x^2+y^2-1,[x,-1,1],[y,...
user158293's user avatar
0 votes
0 answers
80 views

How to access and write files (PDF, DB, CSV) on an external SD Card since API 30. I checked : Storage Access Framework (SAF) => Didn't found any SD Card sample Without MANAGE_EXTERNAL_STORAGE =>...
lupaulus's user avatar
  • 407
1 vote
1 answer
246 views

I was trying to write a simple program to move files from directory A to directory B, in the end the file moving part keeping giving ACCESS DENIED errors and what so. Here is the code const char* src =...
クッキーくん's user avatar
0 votes
2 answers
125 views

Whenever I run this code locally, the relative path for the file is working just fine but the Kubernetes pod deployment in pre-prod throws NoSuchFileException. MOCK_DATA_BASE_PATH = "/data/mocks&...
btrballin's user avatar
  • 1,464

1
3 4
5
6 7
1629