Generally striving to increase user agency and excited about commons networks.
Only works for Canadian CEOs, apparently.
Rust, cryptography, CRDTs & more on my feed
See the PR description in github.com/n0-computer/...
See the PR description in github.com/n0-computer/...
And then I realized sometimes it's two weeks or more 😅
And then I realized sometimes it's two weeks or more 😅
(I had a thing when I was visiting Vancouver Island of shouting banana every time I saw one of those slugs :D)
(I had a thing when I was visiting Vancouver Island of shouting banana every time I saw one of those slugs :D)
Also, I think there is UI/UX innovation I think, but it's all happening inside the browser.
Also, I think there is UI/UX innovation I think, but it's all happening inside the browser.
(But also it tries to be anonymous. Makes sense if you want people to engage more.)
So yeah I agree this might work quite well.
If it's something that *should* be built - meh I'm not sure
(But also it tries to be anonymous. Makes sense if you want people to engage more.)
So yeah I agree this might work quite well.
If it's something that *should* be built - meh I'm not sure
When it started auto-translating voices in the video with weird af robots as well... Man.
I mean, yay to making content accessible to a wider audience in the future, but it *really* doesn't work at the moment.
(German here)
When it started auto-translating voices in the video with weird af robots as well... Man.
I mean, yay to making content accessible to a wider audience in the future, but it *really* doesn't work at the moment.
(German here)
Also it seems to be unaware of that fact.
Also it seems to be unaware of that fact.
If you struggle to find the operations you want to list in the trait, you can survey the types you have and see if there's common functionality/fns with similar signatures that could changed to have the same signature.
If you struggle to find the operations you want to list in the trait, you can survey the types you have and see if there's common functionality/fns with similar signatures that could changed to have the same signature.
You take a survey of the operations/fns you want to do on the elements of the vec, then encapsulate those in a trait and implement it on all the types you want to put into your Vec.
Make sure to only write fns that take &self or &mut self to keep your trait "dyn compatible".
You take a survey of the operations/fns you want to do on the elements of the vec, then encapsulate those in a trait and implement it on all the types you want to put into your Vec.
Make sure to only write fns that take &self or &mut self to keep your trait "dyn compatible".
You take a survey of all types you need to store in the same Vec, make one enum out of them with a case for each type, then you look at usage of the vector and either pattern match on entries when you act on them, or encapsulate the pattern match in an fn on the enum itself.
You take a survey of all types you need to store in the same Vec, make one enum out of them with a case for each type, then you look at usage of the vector and either pattern match on entries when you act on them, or encapsulate the pattern match in an fn on the enum itself.
Generally two options:
1. An Enum
2. A Trait
Cont...
Generally two options:
1. An Enum
2. A Trait
Cont...