“These aren’t real candidates. They aren’t campaigning. They aren’t engaging with constituents,” Poilievre wrote.
Boy, that sounds a whole lot like how none of the CPC candidates showed up to any of my local debates or showed up on a single local news or radio program, or took a single interview.
Frankly, I don't think we should be limited from running for office based on their percieved level of seriousness or that it's a protest. That's a slippery slope right there. We can increase the signatures or whatever, but it's still not going to be particularly useful and will primarily increase the floor of how much money you need to actually campaign.
I don't know rust, but for example in Swift the type system can make things way more difficult.
Before they added macros if you wanted to write ORM code on a SQL database it was brutal, and if you need to go into raw buffers it's generally easier to just write C/objc code and a bridging header. The type system can make it harder to reason about performance too because you lose some visibility in what actually gets compiled.
The Swift type system has improved, but I've spent a lot of time fighting with it. I just try to avoid generics and type erasure now.
I've had similar experiences with Java and Scala.
That's what I mean about it being nice to drop out of setting up some type hierarchy and interfaces and just working with a raw buffers or function pointers.