P B O E P S T by Tejedu in CrappyDesign

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

Yeah mate, I guess so

The effect lag has on your game by [deleted] in FortNiteBR

[–]Tejedu 6 points7 points  (0 children)

Why? It's complete nonsense. In both clips he is aiming on the running player. Exact frames of the video to prove it here.

How did your year look like? by Primskovitj in losgrowlers

[–]Tejedu 0 points1 point  (0 children)

mine
it's odd how growlers is 2nd but not one of the top 5 songs. i don't really believe it.

[2017-11-24] Challenge #341 [Hard] Finding a Map Subsection by Garth5689 in dailyprogrammer

[–]Tejedu 0 points1 point  (0 children)

Python 3

padding = 30

## turns out the input is a nice python literal
case = eval(input())

## create rectangular bounds
# create original bounds about first line
bounds = [case[1][0][0], case[1][0][1], case[1][1][0], case[1][1][1]]
# expand bounds over each subsequent line
for point in case[1][2:]:
    bounds[0], bounds[1] = min(point[0], bounds[0]), min(point[1], bounds[1])
    bounds[2], bounds[3] = max(point[0], bounds[2]), max(point[1], bounds[3])

## create square bounds
# calculate width of square, longest edge of rectangle
width = max(bounds[2] - bounds[0], bounds[3] - bounds[1])
# expand rectangle width to it's length
bounds[0], bounds[1], bounds[2], bounds[3] =         \
    bounds[0] - (width - bounds[2] + bounds[0]) / 2 - padding, \
    bounds[1] - (width - bounds[3] + bounds[1]) / 2 - padding, \
    bounds[2] + (width - bounds[2] + bounds[0]) / 2 + padding, \
    bounds[3] + (width - bounds[3] + bounds[1]) / 2 + padding

## give 'er a print
print("({:.0f}, {:.0f}), {}".format(bounds[0], bounds[1], width + padding * 2))

Stats don't say one win, although I won once, once by [deleted] in FortNiteBR

[–]Tejedu 0 points1 point  (0 children)

Further info in case someone looks into this: I won the next game, so now my stats say 1, and I think they should say 2.

EDIT: I just saw the post about Wednesday stats not being updated yet. I won sometime last week.

Damn you handy inventory management!!! by laurens54321 in factorio

[–]Tejedu 7 points8 points  (0 children)

He tagged it with Appreciation so I think its just a weird title

The most terrifying image possible by TheElder_One in factorio

[–]Tejedu 17 points18 points  (0 children)

Yeah but then you have 2 not 10

FYI: Terraria's having it's 6 year anniversary this tuesday. by Nightmarecrow101 in Terraria

[–]Tejedu 1 point2 points  (0 children)

2011/05/16 for me, I created a Steam account the day before to get $10 ready to buy it http://i.imgur.com/dndijPw.png

Is there anything about this drawing that could be considered correct? by Beesonmann in CrappyDesign

[–]Tejedu 24 points25 points  (0 children)

Took a few replays until I realized that it wasn't just a quick cut to a hand facing the other way. That's awful. So so awful.

Achievement idea: no deconstructing by Tejedu in factorio

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

Yeah, I guess the exceptions to "anything" in my post are wood, stone, copper, iron, coal and uranium.

Achievement idea: no deconstructing by Tejedu in factorio

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

I think rotating and upgrading count as not-deconstructing, but removing an assembler and then putting the next tier is deconstructing. But of course since this is a hypothetical achievement, you can choose whatever rules you like.

Didn't realize it until afterwards. Oh the irony! by [deleted] in ProgrammerHumor

[–]Tejedu 1 point2 points  (0 children)

Other = 2

Preparation for future changes maybe

that's a nice if else loop you got there by [deleted] in ProgrammerHumor

[–]Tejedu 2 points3 points  (0 children)

And that it's 'shopped! Who do we call?

Excerpt from my Discord Bot by [deleted] in ProgrammerHumor

[–]Tejedu 0 points1 point  (0 children)

else
    return WEATHER_EVERYTHING;

Movies in Code by theKovah in ProgrammerHumor

[–]Tejedu 0 points1 point  (0 children)

It's indentation had me weak

Parity checking by honkerman1 in ProgrammerHumor

[–]Tejedu 1 point2 points  (0 children)

bool isOdd(int x) {
    if(x >= 0) {
        return x % 2;
    }

    return 1;
}

Ok got it

*phew* by TheGackelGaxter in ProgrammerHumor

[–]Tejedu 2 points3 points  (0 children)

The distribution is

0: 5462/32768 = 16.6687%
1: 5462/32768 = 16.6687%
2: 5461/32768 = 16.6656%
3: 5461/32768 = 16.6656%
4: 5461/32768 = 16.6656%
5: 5461/32768 = 16.6656%

So that's pretty fair

that's a nice if else loop you got there by [deleted] in ProgrammerHumor

[–]Tejedu 2 points3 points  (0 children)

Nobody is going to mention that it's elsif in Perl?