[-] vithigar@lemmy.ca 2 points 1 day ago

That's exactly what we ended up doing. Every story has now become one Fibonacci step higher than it would have been before.

[-] vithigar@lemmy.ca 1 points 1 day ago* (last edited 1 day ago)

Management where I work finally unbent and admitted that story points were time.

...but also want to continue raising velocity in each sprint.

[-] vithigar@lemmy.ca 52 points 5 days ago

Exactly this. I had a character go to a brothel in a campaign I ran. I just said okay, you go to the brothel and have whatever you consider a good time. No further detail or RP was requested or required.

[-] vithigar@lemmy.ca 16 points 6 days ago

They have a vested interest in their borrowers not dying. This manifests as not lending to people at increased risk rather than any kind of protective or preventive action.

[-] vithigar@lemmy.ca 6 points 6 days ago* (last edited 6 days ago)

C# .NET using reflection, integer underflow, and a touch of LINQ. Should work for all integer types. (edit: also works with char values)

// this increments i
private static T Increment<T>(T i)
{
    var valType = typeof(T);
    var maxField = valType.GetField("MaxValue");
    var minField = valType.GetField("MinValue");
    if (maxField != null)
    {
        T maxValue = (T)maxField.GetValue(i);
        T minValue = (T)minField.GetValue(i);

        var methods = valType.GetTypeInfo().DeclaredMethods;
        var subMethod = methods.Where(m => m.Name.EndsWith("op_Subtraction")).First();
               
        T interim = (T)subMethod.Invoke(
            null,
            [i, maxValue]);

        return (T)subMethod.Invoke(
            null, 
            [interim, minValue]);
    }
    throw new ArgumentException("Not incrementable.");
}
[-] vithigar@lemmy.ca 107 points 4 months ago

D-Brand paid him to bleach it.

[-] vithigar@lemmy.ca 106 points 6 months ago* (last edited 6 months ago)

Windows on a handheld is just bad. It's that simple. A Steam Deck competitor needs a handheld friendly controller focused interface that is at least as good as Valve's. Our just straight up ship with Steam OS and use Valve's.

SteamOS still has many instances of awkward UX and some frankly broken behavior, especially while trying to use community features, it's just that every other offering has been worse.

[-] vithigar@lemmy.ca 146 points 10 months ago* (last edited 10 months ago)

The hell are you even talking about? Neither giving, receiving, paying for, nor being paid for a blowjob are the problem. Paying $230k for a momentary indulgence while simultaneously defaulting on other obligations is the problem.

[-] vithigar@lemmy.ca 135 points 10 months ago

According to a recent DoorDash blog post, the ordinance has resulted in an “unprecedented drop in order volume,”

No, you disingenuous stink sacks. Your $5 "you made an order in or around Seattle" fee did that. Orders would've continued unchanged if you hadn't raised fees.

[-] vithigar@lemmy.ca 99 points 11 months ago

At the time of this post both the game and proton had been updated and the game was working again.

Adding DRM to a two year old already cracked game is still an insane decision, but the problem of it breaking the game was fixed relatively quickly.

[-] vithigar@lemmy.ca 113 points 1 year ago

And asking for a picture resolves any of these questions... how?

[-] vithigar@lemmy.ca 149 points 1 year ago

The police don't enforce tax regulations. The IRS has its own people for that.

Would you expect an IRS auditor to pull someone over for speeding? Of course not, that's ridiculous.

20

I can't wait.

view more: next ›

vithigar

joined 2 years ago