By removing the language of “private” from the feature they can now sell your data without having to tell you about it
By removing the language of “private” from the feature they can now sell your data without having to tell you about it
You’ll get it for real when you realize it’s not a “men bad” thing but more of a “people bad” kind of thing. Everyone has the capacity to do wrong, and a lot of people choose not to overcome that. Men are just typically in more of a position of power to be able to do larger acts of wrongdoing, and have historically either been punished lightly or not at all for many insidious crimes because of their predisposition to power.
What was the longest time between updates, tho? Was there more than a year without any game updates or even status updates from the dev?
I didn’t see the replies to me, but the person i responded to posted the raw uncensored output of a traceroute from their computer to twitter, and I heavily suggested that they should not do that and should remove or edit their comment.
Removed by mod
If you have only one device on Wi-Fi, multiplexing turned off, or especially if you have MU-MIMO support, Wi-Fi can be faster than a single wired connection. It is still higher latency and subject to other drawbacks such as security and power consumption, but of course it offers advantages that can outweigh the disadvantages depending on use case and user needs.
That said, it’s technically not faster than the cable, but rather faster at the data link or network layer. For example, CAT8 physically supports up to 40Gbps, but most consumer and even professional electronics only support up to 2.5Gbps. Only really enterprise level switches can push up to like 100Gbps onto copper, and even then that’s using QSFP transceivers, not RJ-45 connections. Fiber cables regularly push 400Gbps.
When WSL first came out, all the documentation i read from Microsoft led me to believe it was intended to help developers who are cross-developing software for both Linux and Windows to more easily test features and compatibility and to ensure software behaves consistently. It never seemed like they intended it to be used to run Linux programs fully and integrate into the Windows environment. It always seemed like it was just there for convenience so a smaller budget developer could develop on one machine and not need to be constantly rebooting or running VMs.
So, wait, you are claiming that a Windows update broke your hardware so bad you had to reinstall the firmware, but it magically worked on a linux distro? First of all, that means it wasn’t “permanently stopped [from] working”. Second, I hate to break it to you, but it sounds like Windows might have fucked up a setting, and then you user-errored your way into breaking things. I’ve never had something break that can’t be fixed with a full system restore or reinstall, and it sounds like you had a problem just like that. If it worked on Linux, you could have gotten it working on Windows, too, because it’s clearly a software error at that point.
I mean that would hardly hold up to a challenge fir inadequate consideration. The value of all intellectual property in perpetuity is easily worth far more than access to the reddit website.
I got something stupid like a 96 on the ASVAB and I just told the first air force guy I smoked a lot of weed and I never heard from any military again lmao
It was tempting when they offered me to go right into a program to become a satellite operator starting off making $125k/year immediately after boot camp… but I don’t regret not taking that offer. Who knows what would have actually materialized, anyways. Probably would have been 6 years deep dreaming of hopefully seeing 6 figures one day while I end up managing logistics or something.
I never said this was a bad value, but I think we all know that these prices will not remain. They will increase because people will pay it once they are locked in. And if someone buys a used car, they have to pay that subscription to get these features, ensuring the manufacturer gets a slice from used sales. I can understand the cost, but it sets a dangerous precedent. It should be one time fee that grants the VIN access to the severs permanently. What would be really nice is if we had legislation that requires companies with a certain amount of revenue to maintain services for older products so they can’t just pull the plug later anyways.
I can understand some of these features requiring a $5/month subscription. Anything more than that is absolutely insane. With roadside assistance (depending on what that actually entails) I could see that sevice being bumped to $15-$20 a month,
Kind of. With hoisting, the compiler/interpreter will find variable declarations and execute them before executing the rest of the code. Hoisting leaves the variables as undefined until the code assigning the value to the variable is executed. Hoisting does not initialize the variables.
For example:
console.log(foo);
var foo;
//Expected output: console logs ‘null’
foo = ‘bar’;
console.log(foo);
var foo;
//Expected output: console logs ‘bar’
console.log(foo === undefined);
var foo;
//Expected output: console logs ‘true’
This means you can essentially write your code with variable declarations at the end, but it will still be executed as though the declarations were at the beginning. Your initializations and value assignments will still be executed as normal.
This is a feature that you should probably avoid because I honestly cannot think of any good use case for it that won’t end up causing confusion, but it is important to understand that every variable within your scope will be declared at the beginning of execution regardless of where it is written within your code.
And herpes! The gift that keeps on giving!