Mikko Ohtamaa

Results 190 comments of Mikko Ohtamaa

The workaround is not to set `RPROMPT` if we detect Warp the terminal: ```sh # Work around Warp terminal issues # https://github.com/warpdotdev/Warp/issues/936 if [[ "$WARP_USE_SSH_WRAPPER" == "" ]] ; then...

Good spot. We have not deeply vetted the code, so if you have insight what is causing this we are happy to fix.

Thanks for a good thread and explanation. We are running into this issue at [Trading Strategy](https://github.com/tradingstrategy-ai/trade-executor/) Github CI builds, as we are parallelising unit tests. We do not have proper...

I can confirm this error - Running Jupyter Notebook on Datalore - The notebook is using joblib for background multirocessing ``` File "/opt/python/envs/minimal/lib/python3.11/site-packages/joblib/externals/loky/backend/resource_tracker.py", line 281, in main registry[rtype][name] -= 1...

Good work! As there is some finally some work on this topic, here is the wish list (copied from other chains) on some of the items on the check list...

It depends on the chain. You can look [sign_transaction_with_new_nonce](https://github.com/tradingstrategy-ai/web3-ethereum-defi/blob/3148126167e7452fc3769b55d82fbc8987281602/eth_defi/enzyme/vault_controlled_wallet.py#L131) as an inspiration.

Thank you so much! Looking forward and happy to test this.

Also thank you for an excellent project, I feel this is the future of software development.

As a workaround you can do `.index.to_pydatetime().tolist()`: ```python index = df.index.to_pydatetime().tolist() # Price chart (top subplot) fig.add_trace({ "x": index, "y": df["mark_price"], ```

I debugged difference of Trace object in Plotly 5.x and 6.x. Apparently `DateTimeIndex` does not get converted from np.datetime64 to Python datetime.datetime. Plotly 6.x: ``` ipdb> pprint(trace) Scatter({ 'fillcolor': '#aaa',...