Skip Navigation
Featured
Let's discuss: Hollow Knight
  • 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.

  • C++ try not to add footguns challenge (impossible)
  • 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.

  • Do you think this scammer just hopes they will, with luck, contact someone named Annie who does yoga?
  • 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.

  • What's your progress in 1.0 so far?
  • 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.

  • What's your progress in 1.0 so far?
  • 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?

  • 11 day old moderator of c/vegan overstepping their position
  • 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.

  • YouTube on TVs is cramming ads down your throat even when pausing videos
  • 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.

  • How do you set up wake up alarm and not miss it ?
  • 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.

  • Darth Vader Didn't Come Alive Until James Earl Jones Gave Him a Voice.
  • “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?

  • Bug: had to rename the executable
  • Yeah, they hotfixed that like 5 minutes after launch, and it took a little while for Steam to catch up for everyone.

    FactoryGameSteam.exe is definitely correct, probably because they now maintain FactoryGameEpic.exe and maybe a couple others, for the console releases they"re working on. But they seem tobhave neglected to instruct Steam that the exe name had change, so Steam was still looking for FactoryGame.exe. Renaming the file was an effective workaround for the first hour or so.

  • Hexbear?

    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?

    8
    Company forgets why they exist after 11-week migration to Kubernetes
    www.theolognion.com Company forgets why they exist after 11-week migration to Kubernetes

    Xenobroom Inc., a young startup fresh out of Silicon Valley started a lengthy process of upgrading their server infrastructure back in May 2020. According to the remaining fragments of CEO's daily journal and CTO's engineering notes, the company enjoyed a sharp rise in daily use in the midst of the ...

    Company forgets why they exist after 11-week migration to Kubernetes

    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.

    38
    Is TV-MA really accurate?

    After watching the first couple of episodes, my wife and I were considering having our 8-year-old watch it with us. Then I noticed the TV-MA rating.

    Not looking for spoilers, but like, is the show gonna take a bit of a turn, eventually? There hasn't been anything CLOSE to TV-M-worth thus far, in my mind.

    7
    Home Improvement @lemmy.world JakenVeina @lemm.ee
    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.

    26
    "Show Read Posts" appears to be applied to viewing my own profile.

    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?

    3
    Sinaed O'Connor - The Unreleased Song You Never Heard

    Felt like I had to share this after catching it on Twitch last week.

    And no, this is not my YouTube channel.

    0
    Where did all the Twitter users go?
    imgflip.com to shreds you say

    An image tagged to shreds you say

    to shreds you say

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

    9
    Chess.com bug? Or am I an idiot?

    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.

    0
    Who says it can't swim?
    clips.twitch.tv Twitch

    Twitch is the world's leading video platform and community for gamers.

    Twitch

    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.

    0
    InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)JA
    JakenVeina @lemm.ee
    Posts 11
    Comments 565