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

I am creating a little software in Golang. I use Fyne as GUI library. It creates long process (it it a file encrypter), so I display a progression bar, as it: go func() { go encryptCore( ...
eliotttak's user avatar
0 votes
1 answer
106 views

I have a folder with multiple Excel files. I'm reading all of them in a single polars DataFrame concatenated vertically using globbing: import polars as pl df = pl.read_excel("folder/*.xlsx")...
robertspierre's user avatar
2 votes
0 answers
212 views

I have a small shiny app in shinyapps.io with a database that stores products. I want to re-deploy the app everytime the database gets new data so the shiny app shows up-to-date products. Since this ...
Salvador's user avatar
  • 1,973
0 votes
1 answer
40 views

I built a simple progress bar (I want to use it in many other programs), but the problem is, if I move the window, or click on anything else the progress window freezes. The script keeps running but ...
Lee Donovan's user avatar
0 votes
1 answer
73 views

I have a jQuery script that makes an Ajax call to a PHP file (process.php) to retrieve the status of a database (The upload.php and import.php parts are working fine and not relevant here I would say),...
Andy McRae's user avatar
0 votes
2 answers
63 views

I have a simple line that searches for all .json files, except there are about 28k of them, so this one line takes about a minute to complete: from pathlib import Path files = list(Path("~/foo/...
hobbes3's user avatar
  • 30.7k
0 votes
1 answer
40 views

Problem: About half a second after audio playback starts (in Safari and Orion), the progress bar "twitches", jumping back towards the start momentarily before continuing to progress. The ...
Deck's user avatar
  • 11
0 votes
0 answers
27 views

I have created a custom Gutenberg block via npx @wordpress/create-block called stat-block, I have index.js, edit.js, save.js, view.js and block.json. I believe I have everything setup correctly as all ...
Ahmed Al-Samarrai's user avatar
0 votes
2 answers
125 views

I've been trying to create this design using HTML, CSS and JS (particularly chart.io). I am wondering if there is a better way to do this without relying much on JS. The reason for this is that, this ...
Straxx's user avatar
  • 15
0 votes
1 answer
87 views

How to Show File Transfer Progress Percentage in Java with HttpURLConnection? I am currently working on an API that downloads a file from a server and writes the content to a specified location using ...
Amit J.'s user avatar
  • 38
0 votes
0 answers
13 views

If a user attempts to print our webpage that contains <progress> elements, the elements appear empty… unless the user enables the hidden/advanced “background graphics” (Chrome) or “print ...
5260452's user avatar
  • 11.7k
0 votes
1 answer
65 views

private void LoadProgressBar1(Label label) { int labelValue; if (int.TryParse(label.Text, out labelValue)) { int total = 120; int progressValue = (int)Math.Round((...
Irsman's user avatar
  • 17
2 votes
1 answer
80 views

The center circular area is actually a progressbar surrounded by profile picture. I need to show progress using animation. I can get required assets from designer. I am able to achieve the main layout ...
Prabhu M's user avatar
  • 3,596
1 vote
0 answers
219 views

I try to implement a nested progress bar, which resets the inner. The following works for displaying the progress as I expected: import time from rich.progress import Progress with Progress() as ...
MaKaNu's user avatar
  • 1,076
0 votes
1 answer
73 views

I find OriginalGriff‘s alternative progress reporting method quite interesting. But I ran into a problem, which I suspect I also will run into if I use the BackgroundWorker. My idea is to start a long ...
user29809's user avatar
0 votes
1 answer
101 views

I am using Python and would like to follow the progress of a vtk function as it proceeds, perhaps through the tqdm package. I have heard about progress observers (or, well, spotted from the ...
Domenico's user avatar
  • 176
0 votes
0 answers
39 views

I'm building an Electron app where I need to process large files/folders by splitting them into smaller chunks (ex: 512MB each) and display real-time progress to the user. However, the progress ...
SideJS's user avatar
  • 1
0 votes
0 answers
24 views

In Android SDK 31 and above, I encountered an issue with updating RemoteViews in a notification. I use a custom RemoteViews layout containing three ProgressBar elements (A, B, and C). The layout is ...
샤에테's user avatar
0 votes
1 answer
113 views

How can I design this progress bar in android? I have to do it in XML or canvas, not in jetpack compose. I tried to customize the built in horizontal progress bar but couln't come up with anything ...
Monir Hossain's user avatar
0 votes
1 answer
102 views

I have an animated progress bar where I use the animation-iteration-count CSS property to specify the progress in percentage. So if the progress should be 50% I set animation-iteration-count: 0.5. On ...
Jeppe Schaumburg Jensen's user avatar
0 votes
0 answers
64 views

I'm loading a large set of data, and I want to display a ProgressBar while the data is being analyzed. Here's what I've tried so far: if (openFileDialog.ShowDialog() == true) ...
BHuelse's user avatar
  • 2,991
0 votes
0 answers
77 views

In my code, the progress bar freezes when it reaches the "Updating portal files record..." status message. However, the subsequent task, UpdatePortalFileApprovalAsync, does actually complete ...
William Sewell's user avatar
0 votes
2 answers
346 views

I titled this with "Actual Progress" because everything I've found regarding the <asp:UpdateProgress> doesn't actually show progress, it just shows that the user needs to wait. I'm ...
Ken Krugh's user avatar
0 votes
1 answer
43 views

I'm successfully using the below HTML code to trigger a completion event in our LMS. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Post-...
Relton McBurrows's user avatar
3 votes
3 answers
167 views

I have multiple segments in a progress bar, in this example representing two states - achieved and planned values. The planned segment should have a border and nearing the end of the progress bar it ...
overflowed-stacker's user avatar

1
2 3 4 5
152