Gavin Rossiter

Results 17 comments of Gavin Rossiter

ooft still not working :( Makes learning to use new libraries really hard, navigating the repo in the browser while coding IDE. Switching to rust-analyzer as well. I hope this...

Sure I can give it a go. Pretty new to BindsNET so it might take me a little while but it would be a good way to understand it all...

I was wondering if it would be better to give users the choice of accessing network items using either the name or object itself. e.g. `def add_connection(self, connection: AbstractConnection, source:...

@djsaunde in Python (most other languages) objects have a unique int identifier `id()`, this is managed by the runtime, I don't think its mutable. It's just more robust and concise...

> I know some folks were experimenting with running two Iced applications in different processes and communicating them using a `Subscription`. I was thinking about this concept the other day....

I have 2 thoughts/concerns here: 1. How does multi window change the cross platform nature of the iced ecosystem. As @maroider mentions, one solution is to have a widget that...

@maxjoehnk I was thinking that maybe multiple windows could be emulated inside a single window that spans multiple desktops with transparent areas. But I'm not sure if all of the...

>I'm not sure how portable that would be, e.g. whether OSX and Windows allow for such a use case. Also iced would need to handle all edge cases with weird...

This is all really good discussion. >Maybe we can add some kind of extension system where you have traits for specific non cross platform features (e.g. multiple windows or maybe...

I like the idea of just using `Align` for everything. For things that have a natural axis `Align` works fine and you should always have the extra information about which...