Zero.
I mainly look at my subscribed feed, which contains mostly topics I want to see in communities moderated well enough I rarely see anybody being horrible.
Zero.
I mainly look at my subscribed feed, which contains mostly topics I want to see in communities moderated well enough I rarely see anybody being horrible.
Even if you did (don’t eat batteries), the voltage range is much lower and you probably wouldn’t feel anything.
Now if it was added to rechargeable batteries, it would be pretty useful
I think the reason we haven’t seen that is that NiMH rechargeables have fairly stable voltage during discharge while alkalines don’t.
There are better ways to assess the legitimacy of a media outlet than critiquing its web design. The Wikipedia page might be a good start.
I don’t like the loginwall, but it doesn’t require payment.
The biggest reason is most likely that the cases had different judges.
My initial reading of the reporting on this ruling suggests it won’t do that. App developers can opt out of most of the provisions, but Google may not pressure them to do so.
Why would someone own 8 vehicles?
Car collectors exist, and I have the impression quite a few of them are among the Cybertruck’s early adopters.
When I try to recall the few non-gendered public bathrooms I’ve been in, they all had private stalls with real doors. It was nice. I’d be happy if all public bathrooms were like that.
You probably can’t fit a large enough explosive in a cell phone battery compartment to reliably crash a plane by exploding it anywhere in the passenger cabin, though that seems like more of an airport security thing than a customs thing.
I remember getting a boarding pass from an airline that was only offered in their app or printed at the airport, no email/download image/PDF option. I didn’t have to install their app, but I would have had to waste time at the airport otherwise. I removed it when I was done and left it a negative review.
The number I remember seeing was that on average, app users are seven times more profitable than web users. Sorry, no citation.
I suspect there’s some selection bias in that regular/loyal users of a particular product or service are more likely to install the app, but it also affords the company greater access to send notifications and collect data. On the rare occasion that I install some random company’s app for a specific benefit, I remove it when I’m done.
It’s likely the harassers can be prosecuted for false imprisonment, a misdemeanor. It is illegal to use deadly force such as hitting people with cars to prevent/terminate a misdemeanor.
here’s not really anything of that nature for tech stuff
The Magnuson-Moss Warranty Act does not exclude tech stuff. The problem is that it’s a lot harder to work on tech stuff without insider information than 1970s cars.
He can’t. He’s paralyzed and his exoskeleton is broken.
On a more serious note, the 404media article (login wall) reports the problem was that the wristwatch controller for the exoskeleton had its battery wire’s solder joint break. They seem to be trying to frame it as a right to repair issue, but that’s a trivial repair for anyone with basic electronics experience.
If I feel threatened in my car, I am not allowed to run over the person
You are not allowed to run people over merely because you feel threatened.
You are allowed to use deadly force, in the USA when you reasonably believe that it is necessary to prevent someone from unlawfully killing, causing serious physical injury, or committing a short list of violent felonies. The harassment described in the article probably does not rise to that level, though an ambitious lawyer might try to describe intentionally causing the car to stop as carjacking or kidnapping.
PRNGs aren’t random at all; they produce a deterministic sequence of numbers based on a seed value and an internal counter. Two PRNGs using the same algorithm and seed will produce the same sequence of numbers. The sequence is difficult to predict without knowing the algorithm and seed, and the values are close to evenly-distributed, which is enough like random numbers for a lot of use cases.
Here’s an example in Ruby:
seed = Random.new_seed()
=> 142757148148443078663499575299582907518
prng_1 = Random.new(seed=seed)
prng_1.rand()
=> 0.6702742156250219
prng_2 = Random.new(seed=seed)
prng_2.rand()
=> 0.6702742156250219
prng_1.rand()
=> 0.9667236181962573
prng_2.rand()
=> 0.9667236181962573
If you run this yourself using 142757148148443078663499575299582907518 as the seed, your first two pseudorandom numbers will also be 0.6702742156250219 and 0.9667236181962573, assuming your version of Ruby hasn’t changed its PRNG.
There was a recent related discussion on Hacker News and the top comment discusses why this sort of solution is not likely to be the best fit for smaller organizations. In short, doing it well requires time and effort from someone technically sophisticated, who must do more than the bare minimum for good results, as you just learned.
Even then, it’s likely to be less reliable than solutions hosted by big corporations and when there’s a problem, it’s your problem. I don’t want to discourage you, but understand what you’re committing to and make sure you have adequate buy-in in your organization.
I’m confused by why they would do this, and at the same time, why not for private text messages.
I’m in favor of encrypting as much communication as possible, but I don’t think many of Discord’s users were complaining that their voice chart wasn’t secure. I’d expect more of them to care about text chart, which is less effort to spy on.
General aviation airports often have little or no staff and only rudimentary access controls. People walking around aircraft are expected to be responsible for their own safety.