Results 50 comments of mirusu400

@glemaitre I've comment your reviews, can you review it again?

@glemaitre I am, but I don't know what should I do. It seems general CIs are passed, am I need to add rich progress modules in all scripts now?

> > It seems general CIs are passed > > There is 3 failing one: https://dev.azure.com/scikit-learn/scikit-learn/_build/results?buildId=63771&view=logs&j=dde5042c-7464-5d47-9507-31bdd2ee0a3a&t=4bd2dad8-62b3-5bf9-08a5-a9880c530c94&l=920 I fixed it

If this feature is adopted, I would like to implement and PR about this feature. 😄

@glemaitre If so, should I fork that branch, create a feature using their backend, and send them a PR? Or can I just create a new callback function using `rich`?

I wrote a simple test script to build a D3 HTML file: https://github.com/namhyung/uftrace/blob/30806dbfe8d50e8eb77c5d2dd58577d9d02ac943/scripts/d3.py ![Sep-03-2023 16-19-24](https://github.com/namhyung/uftrace/assets/25397908/247e0499-843b-4d23-8631-299d92d93852) As the emphasis was on implementation, the program runs slowly. It requires optimization and further...

@haileynam Is there any ways to provide arguments into scripts? I've checked the `uftrace-script.md` documentation, but I don't find any such way. Rather, it seems better to provide a way...

![녹화_2023_09_10_19_29_18_978](https://github.com/namhyung/uftrace/assets/25397908/c4ec50ee-0cdd-4324-a423-930a4c72d439) I updated some html templates in my branch. Now it shows not only graphs but also some details: depth and args. But it still works unstably. The current logic...

A little late answer, but you can fetch json, stringify, and save as blob you can download it. ```javascript fetch('https://jsonplaceholder.typicode.com/todos/1') .then(response => response.json()) .then(json => JSON.stringify(json)) .then(json => { const...

@LeoneChen Maybe not.. But I wrote a simple python program that select nodes that I want to know, and remove it from dot file. Although not in the CFG abstract...