Rust is completely correct to be a dick about it as well. Type safety is there for a reason.
Formerly /u/neoKushan on reddit
Rust is completely correct to be a dick about it as well. Type safety is there for a reason.
The hicks in letterkenny are not hateful at all, they’re very open minded and accepting.
They do hate on “degens”, who are more like the hicks you’re familiar with.
You don’t need anything so complicated.
Take two copies of the same video, diff them and only keep the parts that match.
We can also build up a database of as signatures to automatically identify them without requiring a watermark - we already have the technology to do this for detecting intro sequences for skipping.
I agree with that, though I suspect it’s still running the full render pipeline in the background but I was particularly confused about why OP expected memory usage to drop
Why would you expect pausing a game to use less memory?
I find jiras search to be decent enough, you might get better results using a filter on sprint name with your current sprint in it.
Honestly 95% of Jira complaints are because people have crap workflows configured. Out of the box Jira is pretty terrible but it’s very customisable and you need to adjust it to suit your needs - and they have to be your needs and workflows.
That being said, there’s that last 5% that Jira just gets in the way. If anyone has ever had multiple teams working on a single product, Jira is very prescribed about how you’re supposed to structure that and If you don’t, it’s a pain.
There’s literally an entire industry of bullshit cables and devices designed to “improve” sound quality that demonstrably does fuck all. That’s enough to tell me that most people saying they can tell the difference are probably full of shit.
C# is also here
It looks like he’s smoking a load of meat, given the smoke and the dangle of temp proves at the bottom. It’s not likely for the BBQ to be that hot, relatively speaking - maybe 250F but probably lower.
The airplane was small, not the crash.
I think the argument about “for accessibility” is missing the point a little bit and a common mistake most developers make.
You should endeavour to make your interface accessible by default. You shouldn’t be thinking in terms of “okay here’s the design and here’s the design that’s accessible”, you should be considering accessibility in all of your designs.
Now that’s usually a bit harder with games because you have styles and themes that you don’t want to detract from, but if your interface causes accessibility issues, it’s generally going to be bad for people that don’t have accessibility needs as well.
Accessibility benefits everyone.
I don’t think your second point is correct. You can still embed analytics on a static website. I believe you’re conflating it with your first point by assuming that scripts are disabled on the browser side, in which case it’s a bit of a redundant point.
I also think it’s a bit unrealistic in this day and age to run with scripts completely disabled. I know it sucks, but we need better ways of protecting our privacy and disabling all scripts is a bit of an extreme measure given so much of the modern web relies on it.
You can shove most services behind cloudflare’s CDN with a bit of jiggery pokery. I’ve used netlify + cloudflare’s free tiers to great success a few times now.
My friends trying Linux would just give me anxiety
What the fuck
I don’t disagree that Capitalism doesn’t work in its purest form, but we’ve hardly had a success with communism in its purest form either.
It’s almost like there’s a middle ground that’s the best of both worlds.
I can’t help but notice you have disagreed with the comment above you, then gone on to explain that the exception to your disagreement is the exact scenario they described.
Am I correct in saying that you’re used to languages that aren’t type safe? Or at least not as strict about it.
Everything you’re describing sounds more like you’re struggling with type safety in general and I wouldn’t say any of those packages are at fault, in fact I’d even go further and say they’re like that by design.
The reason you don’t actually want any of those separate packages to be more interoperable out of the box is because that would couple them together. That would mean dependencies on those packages, it would mean if it wanted to use something else then you’d be a bit stuck.
Like I’d question using a uuid as a salt, like it’s fine and I get why they’re suggesting it, but you can use anything as a salt so why couple yourself to a specific uuid library? Why couple yourself to uuids at all.
Side note: I’m guessing the reason the crate expects you to supply your own salt is because you need to also store the salt next to the password hash, if it generated the salt for you there’s a chance you might ignore the salt and suddenly not be able to validate passwords.
Anyway…
The only way you could make these separate packages work dramatically together and without coupling them would be to use a universal type - probably a byte array - and at that point you lose most of the benefits of a strong type system. What are currently compile errors become runtime errors, which are much worse and harder to diagnose.
My suggestion to you would be to reframe your thinking a little, think less about how you can make different crates speak to each other and more about how you convert from one type to another - once you crack that, all of these integration problems will go away.