When I’ve done mail-in voting the ballot came with a special envelope that was already addressed, had pre-paid postage, and I had to sign it after sealing my ballot inside.
When I’ve done mail-in voting the ballot came with a special envelope that was already addressed, had pre-paid postage, and I had to sign it after sealing my ballot inside.
That doesn’t really make sense, even if they’re in the 37% tax bracket if the wrap costs $100 they only save $37 on taxes.
They did say they haven’t learned the ? operator (that’s chapter 9 of the rust book), so this approach might be better for once they get there.
You can use expect on Options and Results to extract the value and panic on Error in the same line (https://doc.rust-lang.org/std/result/enum.Result.html#method.expect).
let html_content = reqwest::blocking::get(&permalink).expect("the request should succeed");
You can also use unwrap if you don’t need a custom message. The ? operator is definitely the most compact way of handling errors, and for good reason because the rust developers want people to use it. Once you learn that the code will become somewhat smaller.
This is really useful information, thanks!
I wouldn’t say the OS is Linux any more than the OS of an Apple computer is XNU. Linux is just the kernel. Similarly the other OS isn’t “Windows NT kernel,” but Windows 10 or Windows 11.
I’m not sure when you were using it, but Navidrome definitely let’s you play individual songs and shuffle.
fsck almost certainly isn’t going to cause loss of data, but it will likely inform you about a loss that already occurred if that is the issue you are having.
Yeah but also this is only for their EU profit, so it’s really an even higher percentage.
It doesn’t really make sense to talk about money they made in other countries when talking about these fines, as if they make 5 billion in profit in country X and get fined 6 billion, they would still have lost money for operating in the country regardless of how much money they made other places. Since they lost money in the country, that fine would be high enough for them to want to fix their law breaking or totally pull out of the country, and so the fine accomplishes its purpose.
To be fair the glorified babysitter wouldn’t require 4+ years of education on educating children, so they probably couldn’t just be “simply teaching.” This is still an awful idea, they seem to be trying to save money by paying a glorified babysitter a lower wage than a teacher. Private schools can be for profit in some place, I wonder if that applies here.
I’m pretty sure that it’s true that citing sources isn’t really relevant to copyright violation, either you are violating or not. Saying where you copied from doesn’t change anything, but if you are using some ideas with your own analysis and words it isn’t a violation either way.
I would still say that getting people to the point where they can write safe C code every time is harder than learning Rust, as it’s equivalent to being able to write rust code that compiles without any safety issues (compiler errors) every single time, which is very difficult to do.
I also don’t see how the term applies only to ActivityPub, wouldn’t any federated protocol ecosystem be a ‘federated universe’?
Matrix is federated though, so why wouldn’t it have something to do with the fediverse? Is that not the definition of the term?
That’s not right, it’s generative pre-trained transformer.
I agree that there’s no problem now, and also that the percentage they are trying to pay is overly low. I think they should be paying somewhere in the vicinity of 50-70% of the buy price, so that is a terrible rate.
I didn’t say net metering isn’t useful now, I said it wouldn’t work if a large majority of people did it. I don’t see how what you said contradicts that.
No, the burden of providing free energy storage.
Sure, but if everyone does it then it wouldn’t work (no one would be drawing excess when the solar is at peak), so that makes it not very sustainable. I’m not saying it’s a bad thing, just that it can’t continue to work if adoption becomes near-universal (it doesn’t seem to be for now). I guess these non-bypassable charges will fix that, but that sounds a lot like what they are talking about (only getting paid some large percentage of the price for energy sent to the grid).
Yes, the first one matches only 2 more characters while the second matches 1 or more. Also the +? is a lazy quantifier so it will consume as little as possible.