It actually took me multiple trues to get into Stardew. The whole “track down everyone” quest is intimidating for a lot of people.
Up to you if you think it’s worth keeping at it, for the possibility of getting hooked later.
It actually took me multiple trues to get into Stardew. The whole “track down everyone” quest is intimidating for a lot of people.
Up to you if you think it’s worth keeping at it, for the possibility of getting hooked later.
I mean, the book of Revelations is indeed a prophecy.
I’m 34 and don’t have $10,000 in savings.
Congrats on the milestone, friend.
Did you like the subplot about how slaves who are freed against their will turn to alcoholism?
Yeah, I thought it was really interesting how there were two characters who gained freedom and handled it in completely opposite ways. I thought it was a great way to highlight that simply ending an injustice often isn’t enough. It takes effort beyond that to truly reach justice/equity.
Or how when they celebrated Christmas at Grimmauld place, they put little santa hats and beards on the severed slave heads?
The severed heads themselves were clearly established as one of many things that made everyone being forced to live there uncomfortable. So, yes, I liked the touch of the characters decorating them, and the rest of the house, to try and make it less of a reminder of the shitstain of a family that it used to belong to. The characters make quite a few such attempts, throughout the book, often unsuccessfully.
Did you like the HIV allegory character who deliberately tries to infect young boys with his disease?
Yeah, it’s a pretty terrifying concept, and a great lesson about how being a victim doesn’t make someone good. Anyone can be evil. In fact, victimization often becomes the SEED of future evil.
What about the constant descriptions of “mannish hands” and general authorial misogyny against women who the reader isn’t supposed to like?
I don’t see how one instance of the phrase “mannish hands” across seven books equates to “constant descriptions”. I can’t say that I liked it or disliked it, because I don’t ever remember reading it. It wasn’t a significant enough detail to remember, just descriptive flavor of what the author was picturing. In retrospect today, yeah, that seems like anti-trans bias subconsciously leaking out, to have a “bad” woman character have masculine qualities. But it definitely doesn’t read that way, on its own.
Did you like how Harry was supposed to be the saviour of magical england from a fascist movement, and yet he’s a moderate liberal who never makes an effort to fundamentally change any of the systems of the world, and who wants Hermione to stop campaigning against slavery because it’s annoying?
Given that the books actually give zero picture of how much magical society has changed, after Voldemort’s death, I don’t see how I can answer that. The only thing we know for sure about the world is that Hogwarts and Platform 9 3/4 still exist. I could give a fuck about what Rowling’s expanded on in interviews and musings on Twitter.
I don’t recall Harry ever once being against SPEW, that was pretty much all Ron, who does eventually change his mind. What Harry DOES have is the fantastic story arc with Kreacher, where he explicitly recognizes how wrong he was to not see the barbarity of the system sooner.
Likely wood.
Season 4, Finale
So, the scheme is basically to have you, the publisher, invest some money into marketing the game, to get potential players aware of it, then have them pay a one-time premium to actually play it, if they’re interested.
I decided to split the difference, by leaving in the gates, but fusing off the functionality. That way, if I was right about Itanium and what AMD would do, Intel could very quickly get back in the game with x86. As far as I’m concerned, that’s exactly what did happen.
I’m sure he got a massive bonus for this decision, when all the suits realized he was right and he’d saved their asses. /s
A country putting tariffs on imports doesn’t necessarily mean it’s being anti-competitive, or anything nefarious.
In this example, the argument generally goes that China’s EV market is so cheap, compared to the US’s, because the Chinese government subsidizes it, I.E. gives EV makers free money so they can lower costs or expand infrastructure, which in turn leads to lower prices. Thus, a US tarrif is just attempting to re-level the playing field. How much truth there is to this, I don’t really know.
And this, in TURN, doesn’t necessarily mean that China is being anti-competitive either. There’s nothing wrong with them saying “Having a robust EV infrastructure is good for our country, and we think it’s going to be very important for our future, so we’re going to invest heavily into that.”
Welcome!
a good way to get yourself labeled by someone who thinks in memes.
What an effective way to put it.
As I understand it (and assuming you know what asymmetric keys are)…
It’s about using public/private key pairs and swapping them in wherever you would use a password. Except, passwords are things users can actually remember in their head, and are short enough to be typed in to a UI. Asymmetric keys are neither of these things, so trying to actually implement passkeys means solving this newly-created problem of “how the hell do users manage them” and the tech world seems to be collectively failing to realize that the benefit isn’t worth the cost. That last bit is subjective opinion, of course, but I’ve yet to see any end-users actually be enthusiastic about passkeys.
If that’s still flying over your head, there’s a direct real-world corollary that you’re probably already familiar with, but I haven’t seen mentioned yet: Chip-enabled Credit Cards. Chip cards still use symmetric cryptography, instead of asymmetric, but the “proper” implementation of passkeys, in my mind, would be basically chip cards. The card keeps your public/private key pair on it, with embedded circuitry that allows it to do encryption with the private key, without ever having to expose it. Of course, the problem would be the same as the problem with chip cards in the US, the one that quite nearly killed the existence of them: everyone that wants to support or use passkeys would then need to have a passkey reader, that you plug into when you want to login somewhere. We could probably make a lot of headway on this by just using USB, but that would make passkey cards more complicated, more expensive, and more prone to being damaged over time. Plus, that doesn’t really help people wanting to login to shit with their phones.
Automated certificate lifecycle management is going to be the norm for businesses moving forward.
This seems counter-intuitive to the goal of “improving internet security”. Automation is a double-edged sword. Convenient, sure, but also an attack vector, one where malicious activity is less likely to be noticed, because actual people aren’t involved in tbe process, anymore.
We’ve got ample evidence of this kinda thing with passwords: increasing complexity requirements and lifetime requirements improves security, only up to a point. Push it too far, and it actually ends up DECREASING security, because it encourages bad practices to get around the increased burden of implementation.
The hell is that summary, AI-generated? Why yes, people DO work inside the TikToc building.
Talk about burying the lede, by not elaborating on that title, like the article does. “Stripping” does not mean that teenagers are being “stripped” from the platform, or from feeds, like I figured. It literally means that THEY are stripping. OnlyFans style. For gifts. Jesus fuck.
So how much cocaine was he using?
First game I ever played where I was like “yo, I actively WANT to do the speedrun achievement, and the deathless achievement.” So, first game where I ever did those things. Maybe I’m just crazy, but I found them way easier than I expected.
Also, a prime example of storytelling through music.
It’s the capability of a program to “reflect” upon itself, I.E. to inspect and understand its own code.
As an example, In C# you can write a class…
public class MyClass
{
public void MyMethod()
{
...
}
}
…and you can create an instance of it, and use it, like this…
var myClass = new MyClass();
myClass.MyMethod();
Simple enough, nothing we haven’t all seen before.
But you can do the same thing with reflection, as such…
var type = System.Reflection.Assembly.GetExecutingAssembly()
.GetType("MyClass");
var constructor = type.GetConstructor(Array.Empty<Type>());
var instance = constructor.Invoke(Array.Empty<Object>());
var method = type.GetMethod("MyMethod");
var delegate = method.CreateDelegate(typeof(Action), instance);
delegate.DynamicInvoke(Array.Empty<object>());
Obnoxious and verbose and tossing basically all type safety out the window, but it does enable some pretty crazy interesting things. Like self-discovery and dynamic loading of plugins, or self-configuration of apps. Also often useful when messing with generics. I could dig up some practical use-cases, if you’re curious.
If you’re interested in detail, I can recommend this book: https://play.google.com/store/books/details?id=ncGVPtoZPHcC.
I think the big reasons for most people boil down to one or both of two things:
A) People having 0 trust in Google. I.E. people do not believe that paying for their services will exempt them from being exploited, so what’s the point?
B) YouTube’s treatment of its content creators. Which are what people actually come to YouTube for. Advertisers and copyright holders (and copyright trolls) get first-class treatment, while the majority of content creators get little to no support for anything.
As if the new notepad wasn’t already enough of a downgrade.