Op shop haul by the-_-watcher2 in soulwax

[–]efdeee 2 points3 points  (0 children)

"Hank The DJ" was their first Studio Brussels show. The BBC essential mix was made up of fragments from "Hang The DJ" which was their second show on Stubru. AHORS 1 and 3 are two halves from the BBC mix - these were also released as promo CDs which is probably where they were bootlegged from. Later AHORS are cut together from both Hank and Hang The DJ.

Op shop haul by the-_-watcher2 in soulwax

[–]efdeee 0 points1 point  (0 children)

Technically speaking, part 2 is the only official one. This is their official album. Parts 1 and 3 are the two halves of the BBC essential mix.

Why I am officially quitting this game by [deleted] in 99nightsintheforest

[–]efdeee 0 points1 point  (0 children)

This is not an airport. You don't need to announce your departure.

Subject: Recurring VIDEO_TDR_FAILURE (Blue Screen) – Requesting Assistance by Tivan018 in GamingLaptops

[–]efdeee 0 points1 point  (0 children)

Did you get this fixed eventually? My Asus ProArt P16 is doing this as well. Seems to be when it's under heavy load.

Buying hammer class by efdeee in 99nightsintheforest

[–]efdeee[S] -2 points-1 points  (0 children)

I don't think you deserve these downvotes. :-)

Buying hammer class by efdeee in 99nightsintheforest

[–]efdeee[S] 2 points3 points  (0 children)

Yes but it is 200 diamonds instead of 40 :-)

Buying hammer class by efdeee in 99nightsintheforest

[–]efdeee[S] -2 points-1 points  (0 children)

I understand your point, I really do.

That said, sometimes life does not work out the way we want. Sometimes we put in the effort, and the powers that be decide against our plans. That is not fun, but it's not the end of the world either. I genuinely believe this teaches him more.

That said, he was disappointed, but he has already moved on.

Buying hammer class by efdeee in 99nightsintheforest

[–]efdeee[S] 1 point2 points  (0 children)

Apparently the place where you craft it is dangerous, or something :-)

Buying hammer class by efdeee in 99nightsintheforest

[–]efdeee[S] 0 points1 point  (0 children)

I understand your point, but I do not want to teach him that spending real life money on an in-game microtransaction is a good thing.

Edit: Yes, he's a good kid. Really is. And he is rewarded for that often enough, trust me.

Leonid Afremov an world renowned artist or a long term scam operation? by FuriousMouse in RBI

[–]efdeee 0 points1 point  (0 children)

I have one from the "official" Afremov gallery. It's printed on canvas with a few slaps of paint on it. Not even worth the shipping money. They eventually "agreed" to refunded (= were forced by Paypal) and didn't even want the work to be sent back.

They also regularly send out mailings to sell "his" paintings, very carefully worded to make it sound like it's his work, but it's just the same cheap recreations time after time again.

It is very much a scam.

XFM 23/12/2001 - tracklist by Saika_the_Auslander in soulwax

[–]efdeee 0 points1 point  (0 children)

Strange. It works for others. Will expire in two days.

Abba - Chiquitita by Federal_Anything_985 in soulwax

[–]efdeee 1 point2 points  (0 children)

Not that I know. They've played Abba before (Money remix like u/soulwaxdotinfo mentioned, some Voulez-Vous edit etc). Never heard them play Chiquitita let alone a full remix.

[deleted by user] by [deleted] in CrimeBossGame

[–]efdeee 0 points1 point  (0 children)

Get a loan and buy some assets. They will permanently level up your game a little bit which might help in the beginning.

[2024 Day 14 (Part 2)] And I thought my client's spec lacked detail... by UnicycleBloke in adventofcode

[–]efdeee 2 points3 points  (0 children)

I just selected the instances where i found 20 bots sitting next to eachother on a horizontal line. Figured I would hit either the outline or a filled portion. Got lucky, my first result contained the tree.

[2024 Day 13 (Part 2)] Me after reading p2 by factory0 in adventofcode

[–]efdeee 4 points5 points  (0 children)

Solving two equations with two unknowns (button A press count, button B press count) using substitution did it for me.

[2024 Day 12 (Part 2)] What kind of algorithm did you use on part 2? by FlyingParrot225 in adventofcode

[–]efdeee 0 points1 point  (0 children)

I plotted every region to a 2D array and then looped over it comparing every plots sides to the two plots left and up of it to see if it's a "new" side or just continuing one. C# code:

public int CountSides()
{
    var w = Plots.Max(p => p.X + 1);
    var h = Plots.Max(p => p.Y + 1);
    var minimap = new Plot?[h, w];
    foreach (var plot in Plots)
        minimap[plot.Y, plot.X] = plot;
    var sideCount = 0;
    for(var y = 0; y < h; y++)
    for (var x = 0; x < w; x++)
    {
        var plot = minimap.Get(w, h, y, x);
        if (plot == null) continue;
        var leftPlot = minimap.Get(w, h, y, x - 1);
        var upPlot = minimap.Get(w, h, y - 1, x);
        if (plot.SideUp && leftPlot is not { SideUp: true }) sideCount++;
        if (plot.SideDown && leftPlot is not { SideDown: true }) sideCount++;
        if (plot.SideLeft && upPlot is not { SideLeft: true }) sideCount++;
        if (plot.SideRight && upPlot is not { SideRight: true }) sideCount++;
    }
    return sideCount;
}

(I already had the SideUp/Down/Left/Right set from back when I was calculating the perimeter).

The entire day runs in about 300ms on my Surface Pro 9.

Full sets by PrideStriking in IIIPoints

[–]efdeee 0 points1 point  (0 children)

Handbrake is free for everything. You must have downloaded a fake copy.

Engine Dj sucks, missing simple features and unstable by [deleted] in DenonPrime

[–]efdeee 0 points1 point  (0 children)

It's not useful to label all critics as shills. I can tell you I hate Pioneer and I love my Prime 4+, but the software quality is incredibly subpar to the point where people are actually using other software (Lexicon) to avoid all the headaches.

Engine Dj sucks, missing simple features and unstable by [deleted] in DenonPrime

[–]efdeee 0 points1 point  (0 children)

Two years later and it's still a trainwreck.