For a second I thought it was the Linux comunity
For a second I thought it was the Linux comunity
I wouldn’t mind having a explanation of what you want to do instead of the code. It’s not quite clear what you mean.
Anyways, what you want is to transform an iterator (your Select) into an iterator of Option<String>?
For that, there’s multiple ways but here’s the simplest:
link_nodes.map(|node| node.value().attr("href").to_string())
Essentially, for each elements, we execute a closure (arrow function in JavaScript) that transform the node into your href string.
P.S. can’t guarantee it works, I don’t know what this “Select” type is, and I’m programming on mobile
And in the porygon episode (sort of)
2 wins, 1 loss
Saving the bees is nice, and it prevent meta to expand their ai for longer
But this means that it’s one nuclear reactor less, and possibly dirtier energy is used
And in my mind “CE” is “Clear everything”. I’m keeping OP’s method
They also accept pulling the power cord out as “oh no” and shutdown for you!
I didn’t know it was native too!
True, but my joke wasn’t meant to be scientifically accurate at all. We have a genie here. They don’t care about science. Apart from monkey paw science
0 is the freezing point of water 50 is the boiling point.
If it’s 30°c outside, it will be only be 15 after the wish, thus fit what the character said
Granted. Celsius now range from 0 to 50
Edit: … or whatever unit you prefer. It’s still the same
I wanted to check out bitwarden as a self hosted service, but looks like I better stick with good ol’ keepass+Syncthing
I’d actually recommend consent-o-matic instead of IDCAC. It actually selects the minimum concent for you instead of just hiding it.
It’s definitely viable. Just not for me, like dark souls.
I tried nix because it seemed cool, but dipped fast due to things like this. Definitely not a desktop distro (at least for me)
Yeah it’s cool but where meme?
Recent update big update or just good maintenance?
As up to date as Debian
(Obviously a joke, Debian is great)
Usb killer: you guys do things with the computer?
It’s quite simple. Just remove the
permalink
field! If you are calculating it then no need to store it in the struct.If you do need the field to be there (ex you serialise it with serde), then create a method called
new
that takes everything but the permalink, construct your permalink there, then return a new object.Your permalink method can now just be
self.permalink.to_string()