For a second I thought it was the Linux comunity
For a second I thought it was the Linux comunity
BLUE ALL THE WAY! There’s a reason why Fulgura is my favourite planet
This graph is awful to read ngl
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)
It’s funny because you could say “eh pute, vien baiser” (“hey whore, let’s fuck”) and they wouldn’t know it.
“projects” is doing some megaton lifting
The only bad thing about the new tracks is that roundabouts don’t fit a chunk
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
Yeah saw that but it feels weak for fulgura
Probably not enough solar for Fulgura, and I don’t think that’s enough fuel/oziders for all those trusters
My v3 model dumps into the cargo to make a buffer. I suggest adding some condition before you can go to check whoever there’s enough ammo to go.
And add solar panels if you’re going to Fulgura. I’m at least 50% panel…
You guys are automating ammo? That’ll make more sense than shipping 500 a trip from nauvis…
They also accept pulling the power cord out as “oh no” and shutdown for you!
I currently have a sushi belt setup for scrap processing that put all the overflow into a recycler to put it back in the belt. Depending on the setup, it might be easier
The sushi belt must grow then.
Ah yes… The space platform… If you didn’t forget to pack enough ammo for the round trip…
Rest in peace, space platform Ometic.
For now I got way too much ice so… Don’t worry too much about it.
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()
P.S. in the second case I’d recommend to change the return type of
self.permalink()
to&str
. It avoids unnecessary cloning of the string.