bluss

Results 912 comments of bluss

You first have this process tree: ``` └── command prompt 1 └── hatch shell └── command prompt 2 └── mycli command ``` After Ctrl-C I think hatch shell quits, mycli...

Would it be possible for you to show an example of a valid, working `rust-analyzer.toml` file in a comment here? So that syntax and structure becomes clear. An example would...

That's awesome to hear from everyone! Invites sent. I'll try to mentor on issues and so on, just ask me, but I don't always have much time for reviewing algorithms....

Hey - I'm sorry I haven't been able to work on Rust for a long time. It's awesome that many are already helping with petgraph. I guess we need to...

I think we maybe should set up an organization for petgraph. Org would preferably take ownership of petgraph and fixedbitset (basically that crate is only used by petgraph).

> Another example is that breaking type inference is not considered major. > > This is because it's possible to avoid being broken by such a change by adding explicit...

`fork()` unfortunately interacts very badly with threading (OS threads). Is it possible that the user has kicked off some running threads? See also discussion https://discuss.python.org/t/switching-default-multiprocessing-context-to-spawn-on-posix-as-well/21868

Hey, I wrote a brief reply to you here but it appears I didn't hit send. I was saying, two extra fields in a Node isn't necessarily that bad; edges...

What I heard here was that we could make it double ended or expose a reverse order than what exists, we don't need to change the order of .neighbors() for...