JakenVeina

joined 1 year ago
[–] JakenVeina@lemm.ee 3 points 6 days ago

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.

[–] JakenVeina@lemm.ee 28 points 6 days ago

I appreciate the "carrot with a bit out of it" icon.

[–] JakenVeina@lemm.ee 1 points 6 days ago

Naaaaaaaaaahhhhh......

[–] JakenVeina@lemm.ee 41 points 1 week ago (4 children)

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.

[–] JakenVeina@lemm.ee 9 points 1 week ago (1 children)

If you're interested in detail, I can recommend this book: https://play.google.com/store/books/details?id=ncGVPtoZPHcC.

[–] JakenVeina@lemm.ee 2 points 2 weeks ago

Cashier stations with chairs are VERY rare, yes. The general trope is that managers/owners think it makes workers appear lazy.

[–] JakenVeina@lemm.ee 38 points 2 weeks ago

Cashier stations with chairs are VERY rare, yes. The general trope is that managers/owners think it makes workers appear lazy.

[–] JakenVeina@lemm.ee -1 points 2 weeks ago (1 children)

Cashier stations with chairs are VERY rare, yes. The general trope is that managers/owners think it makes workers appear lazy.

[–] JakenVeina@lemm.ee 3 points 2 weeks ago

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.

[–] JakenVeina@lemm.ee 8 points 2 weeks ago

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.

[–] JakenVeina@lemm.ee 99 points 2 weeks ago (13 children)

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.

[–] JakenVeina@lemm.ee 6 points 2 weeks ago

I mean, yes, but this isn't just a little whoopsie.

 

Pencilvania.

6
Hexbear? (lemm.ee)
 

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?

 

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.

100
submitted 1 year ago* (last edited 1 year ago) by JakenVeina@lemm.ee to c/memes@lemmy.ml
 
 

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.

 

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?

 

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

And no, this is not my YouTube channel.

185
submitted 1 year ago* (last edited 1 year ago) by JakenVeina@lemm.ee to c/memes@lemmy.ml
 

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

13
submitted 1 year ago* (last edited 1 year ago) by JakenVeina@lemm.ee to c/chess@lemmy.ml
 

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.

view more: next ›