Skip to main content
1 vote
1 answer
62 views

How to display a progression bar on the task bar using Go and Fyne?

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
1 vote
1 answer
37 views

TQDM progress bar stopping progress until a key is pressed [closed]

I have this program in which a progress bar is displayed to show the process of computation of the pe ratio and other metrics for a set of stocks, however sometimes the progress bar stops at a given ...
bebel's user avatar
  • 46
0 votes
1 answer
88 views

Show progress bar when reading files with globbing with polars

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
0 votes
0 answers
40 views

Does exists a pattern for Spring MVC Framework to handle progressive job?

I have to improve an import job in my web app made with Spring MVC Framework. This job can take a bit then would be great to give the user the progression and the possibility to interrupt it. I'm ...
Tobia's user avatar
  • 9,591
2 votes
0 answers
205 views

How to put a progress bar on a long running R script

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
2 answers
95 views

Python, Return from subroutine, using tkinter progress bar

I am writing a script that uses tkinter progress bar that tracks the number of files done. I have a list of files that I want to process, each file would be processed in the subroutine. In the ...
Lee Donovan's user avatar
0 votes
1 answer
39 views

tkinter progress bar freezes in I do anything else

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
0 answers
129 views

Is there a way to monitor progress of vmapped function in JAX (like with tqdm)?

Let's say I have an expensive jitted function f(x) and I've vmapped it over a large array of inputs -- is there any way to monitor the progress of how many of the vmapped inputs are done being ...
Jim Raynor's user avatar
0 votes
1 answer
66 views

Progress bar display issue with setinterval

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
1 vote
2 answers
314 views

How to create individual rich progress bars for each worker in Python multiprocessing's imap_unordered()?

I have a simple code that you can run (the logging is to differentiate 4 workers): import time import random import logging import logging.handlers from multiprocessing.dummy import Pool def ...
hobbes3's user avatar
  • 30.7k
0 votes
2 answers
54 views

How to create a simple status/count/progress output when searching for files using rglob() in Python?

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
-1 votes
2 answers
128 views

How to create this circle progress with diff colors for diff progresses [closed]

I want a circle or semi circle progress diagram or indication type in my flutter app i have researched many but is there is way for this so it can we easy and flexible see i want like this or it can ...
Tanu Purohit's user avatar
0 votes
1 answer
38 views

HTML5 Twitching Audio Progress Bar in Safari/Orion, Smooth in Chrome/Firefox

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
36 views

Abstracting rich Progress bar inside a class not working

I would like to hide the creation of a rich Progress() bars and associated tasks inside a class. I thought the following will work, but it doesn't. The progress bar doesn't render. class Klass: @...
ayandas's user avatar
  • 2,318
0 votes
0 answers
27 views

Can not initiate js circle progress in Gutenberg FSE

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

15 30 50 per page
1
2 3 4 5
507