Let's discuss: Hollow Knight
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearJA
    JakenVeina
    Now 100%

    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.

    3
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPO
    Jump
    Appalachian-approved
    C++ try not to add footguns challenge (impossible)
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearJA
    JakenVeina
    Now 100%

    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.

    40
  • Do you think this scammer just hopes they will, with luck, contact someone named Annie who does yoga?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearJA
    JakenVeina
    Now 100%

    It's known, recently, as the "pig butchering" scam, and this is the telltale opener. The idea is that you respond with "hey, you've got the wrong number" and they can then open a dialog of "oh, sorry about that" and then spend weeks or months just conversing with you casually to build a "heh, what a crazy way to meet a new friend" sorta relationship. Eventually, they spring some kinda ask for money or malware on you, because they earned your trust.

    Give it a google, it's pretty fucked up, and completely counter-intuitive how effective and profitable it is.

    22
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIN
    Jump
    Sovcit got his.
    Elon Musk Owes You $100 - Cards Against Humanity Sues Elon
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearJA
    JakenVeina
    Now 100%

    I think they're a decent chance that's what they mean, anyway. "What, no, what the hell would we want with your shitty social media software? Just give us the domain name."

    7
  • What's your progress in 1.0 so far?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearJA
    JakenVeina
    Now 100%

    Me, it's not the size of the blueprint, particularly since they added 5x5 and 6x6 blueprints in 1.0, it's the fact that blueprint placement is horrendous for seemingly everything except perfectly-rectangular structures. And non-rectangular structures are basically the ENTIRETY of thing the things that are difficult to build, and thus worth blueprinting.

    1
  • What's your progress in 1.0 so far?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearJA
    JakenVeina
    Now 100%

    My wife and I have been putzing with coal power and blueprints and experimenting with architecture for 3 days now. Haven't really done anything productive in that time. Have completed Tier 3, and part of Tier 4.

    I'm on the verge of declaring blueprints to be more trouble than they're worth. Anyone else?

    3
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFE
    Jump
    11 day old moderator of c/vegan overstepping their position
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearJA
    JakenVeina
    Now 100%

    I'm also neither a mod nor member. I have never posted nor commented in c/vegan. I do not habitually downvote posts from c/vegan. I am banned from c/vegan, as of about a week ago.

    If that isn't overreach, I dunno what is.

    If they don't want non-members to be able to vote or comment on their stuff, that's fine, take the community private.

    2
  • YouTube on TVs is cramming ads down your throat even when pausing videos
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearJA
    JakenVeina
    Now 100%

    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.

    4
  • How do you set up wake up alarm and not miss it ?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearJA
    JakenVeina
    Now 87%

    Practice getting up in response to your alarm.

    Seriously.

    Once or twice a day, in the middle of the day, go lay down in bed, like you're going to sleep, and set your alarm for maybe 5-10 minutes. The moment it goes off, shut it off and stand up. Teach your body the habit of standing up, immediately, in response to the alarm. So long as you're getting enough sleep, you'll start doing it in the morning, on reflex.

    6
  • Darth Vader Didn't Come Alive Until James Earl Jones Gave Him a Voice.
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearJA
    JakenVeina
    Now 100%

    “I used ‘Darth’ as my handle on the CB radio,” he told the New York Times magazine’s Dave Itzkoff in 2014. “The truck drivers would really freak out—for them, it was Darth Vader. I had to stop doing that.”

    "I have altered the speed limit. Pray I do not alter it any further. Over."

    My god, can you imagine just chatting on the radio and that voice suddenly coming out of your dashboard?

    4
  • Slapping Chicken
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearJA
    JakenVeina
    Now 98%

    Let's assume the chicken has to reach a temperature of 205C (400F) for us to consider it cooked.

    Remind me never to let this guy cook for me.

    96
  • So, I thought Hexbear defederated from us a little while back, and we, in turn, defederated from them. Why do I keep seeing occasional (new) Hexbear posts in the "All" feed, lately? Did the defederation get reversed? Is it somehow a bug?

    5
    7
    www.theolognion.com

    The site name's a play on "The Onion" so it's gotta be satire, right? I couldn't find an about page to confirm.

    342
    39
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearHO
    Dishwasher Recommendations

    So the "fails to complete a cycle without erroring out" rate finally seems to have reached 100%, on the Samsung dishwasher that came with the house. What do I need to know when picking a new one, and/or what models do y'all recommend? I'll take recommendations about how to fix the current one too, I guess, but I already got advice from an appliance repair man, who basically said "it would need a new control board, I.E. ditch it." The error code it's giving is supposedly about insufficient water or water flow, but the water feed is completely fine, as far as I can tell.

    29
    26

    I.E. the list of my own posts in my profile is always empty, by definition, unless I go manually change the setting before viewing it, and then change it back when I'm done. Would this be a Jerboa issue, or a general Lemmy issue?

    13
    3
    youtu.be

    Felt like I had to share this after catching it on Twitch last week. And no, this is not my YouTube channel.

    16
    0
    imgflip.com

    Side note: apparently I can't change or get rid of the alt text inside the image?

    200
    8

    My son asked me how to castle on chess.com the other day, and I found that I couldn't do it the way I normally do. Picking up the king and trying to move it to c1 just caused it to move to d1 instead, every time. I tried walking backwards and redoing a few different moves before this, and that all worked, but it just refused to let me castle by moving the king. Neither the king nor the rook had moved yet, and there was no potential or existing check involved, so what gives? Is there some other rule I'm just not aware of? Sorry I didn't get a shot of the board as well, I thought I had but I can't find it on my phone now. Edit: Missed the bishop. Option 2 it is, then.

    12
    6
    clips.twitch.tv

    I dunno if this is QUITE the content y'all are looking for, but if nothing else, I'm kinda astounded it worked. Yes, she did eventually get there.

    7
    0
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearJA
    Now
    10 612

    JakenVeina

    lemm.ee