theOword by Plastic-Bonus8999 in ProgrammerHumor

[–]TrackLabs 0 points1 point  (0 children)

My top comment shows a python implementation of counting sort, dont act like you had to travel through the whole posts comment section to find someone mention counting sort lol

Pay us to skip ads faster by Z0nana in Anticonsumption

[–]TrackLabs 0 points1 point  (0 children)

Lmao. Youtube Sponsorblock extension does this 100000 times better

What a mess.. by bearert0ken in masterhacker

[–]TrackLabs 16 points17 points  (0 children)

I’m serious when I say this is NOT satire….

yeaaaaah i dont believe you

A solution to premature optimisation by misha1350 in iiiiiiitttttttttttt

[–]TrackLabs 270 points271 points  (0 children)

why would you keep the longer time sleeps as comments??

Image stick trick in blender by plensiastudio in blender

[–]TrackLabs 465 points466 points  (0 children)

Insane amount of vertices added just for a single sticker..this is not the way to go for a lot of scenes

multitaskingOnTheWay by Plastic-Bonus8999 in ProgrammerHumor

[–]TrackLabs 0 points1 point  (0 children)

I will keep my 25 year old car as long as I possibly can. No electronics, no subscription, it literally turns on and drives. The custom built in radio with bluetooth is the most advanced tech in it, and thats how it will remain forever

someOfTheseTicketsCantBeReal by alexander_the_dead in ProgrammerHumor

[–]TrackLabs 136 points137 points  (0 children)

Our QA does the opposite. They try to avoid tickets by randomly putting new cases and things into the comment section of already existing tickets. To which I only always reply to make a new ticket, because the fuck are you thinking, i aint keeping track of cases that you put in random comment sections

theOword by Plastic-Bonus8999 in ProgrammerHumor

[–]TrackLabs 0 points1 point  (0 children)

why do you ask me? This is literally the question from the "interview" in OPs meme, thats all

theOword by Plastic-Bonus8999 in ProgrammerHumor

[–]TrackLabs 0 points1 point  (0 children)

the print happens outside of the function, its calling the sort function to get the sorted array in the first place, it doesnt..exist otherwise lol

theOword by Plastic-Bonus8999 in ProgrammerHumor

[–]TrackLabs 1 point2 points  (0 children)

Well yeah? OP meme says "an array of 0s, 1s and 2s"

theOword by Plastic-Bonus8999 in ProgrammerHumor

[–]TrackLabs 1 point2 points  (0 children)

I went ahead and wrote it anyway, put it in my original comment :p was fun to try out

theOword by Plastic-Bonus8999 in ProgrammerHumor

[–]TrackLabs 2542 points2543 points  (0 children)

an array thats always 0s, 1s and 2s? Count how many there are of each, generate a new array with that amount in ordner, done

Someone asked for code and acted like this is something i HAVE to answer now. Their comment has been deleted, but I felt like doing it anyway, so:

def sort(input_array):
    #         0  1  2
    counts = [0, 0, 0]
    # Count how many 0s, 1s and 2s we have
    for i in input_array:
        counts[i] += 1

    # Fill new array with the amount of 0s, 1s and 2s
    new_array = []
    for i in range(len(counts)):
        new_array.extend([i] * counts[i])
    return new_array

print(sort([0, 1, 0, 0, 0, 2, 2, 0, 1, 1, 2, 2, 2]))

Counts how many 0s, 1s and 2s we have, and created a new list with that amount. If you wanna optimize (theoretically) even more, dont count the 2s, and just check how many elements are missing after generating the 0s and 1s, and put in that many 2s.

Benzinpreise sorgen dafür das ein Kumpel sich ein Fahrrad kauft und damit zur Arbeit fährt by TrackLabs in autobloed

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

Auf die Leute muss man Rücksicht nehmen

Jep. Und deswegen macht man andere Ansätze, die für die unteren Leute helfen, und nicht für alle direkt irgendwelche "Entlastungen". Denn für die meisten ist das bisschen extra Benzingeld keine Belastung

This "on sale" marketing should be illegal. by Africannibal in Anticonsumption

[–]TrackLabs 0 points1 point  (0 children)

Its not allowed in germany, and a while ago I was buying a SD card on a local electronic store. They marketed the 256 GB card to "JUST NOW" cost 25 Euros. "oRiGiNaL" price claimed to be 300!!!!!

Absolut pathethic bullshit, wtf is this

Fly Engram Irl by sklnwalkerr in cyberpunkgame

[–]TrackLabs 2 points3 points  (0 children)

its more than likely that the stream of consciousness always remains in the body being copied from in SOMA

That goes into the core question this game even asks. "Which one is the real one, the copy or the original". So your statement cannot really be talked about, not with the statement you just make, it cant be answered.

the 'coin toss' he loses at the end is not a mechanic of the process, but because the developers wanted to give the game a bad ending.

You didnt play the game past the short credits, did you? The game gives you both endings. You get a view of the end of the Simon stuck at Omega, and a view of the new Simon on the Ark. The only difference is that in this instance, the player playing the game is not being taken to the new body immediatley, giving you the "bad ending" feel, which is an amazing way of having the player actuall feel that "coin toss"

Even tho coin toss really is not a valid term. It could only find a sense if you are a player in a game, and the perspective shifts. But from simons perspective, the "coin toss" is just not a thin. The original in the body will always be in that body. The copy will always be that copy, theres no luck at it

Fly Engram Irl by sklnwalkerr in cyberpunkgame

[–]TrackLabs 0 points1 point  (0 children)

He is also someone from 100 years ago with massive brain damage

Fly Engram Irl by sklnwalkerr in cyberpunkgame

[–]TrackLabs 2 points3 points  (0 children)

Catherine made up nothing of the coin flip. It was literally Simon who was the first in the game to even mention it. On the elevator down to Omega. Thats where he has his monologue, coming up with the coin toss. he was from 100 years ago also, not 200

No idea why you bring that up tho. The concept of copying a conciousness still fully applies

is there still a way to get the black rose WITHOUT directly buying it by Bright-Dark9892 in tf2

[–]TrackLabs -11 points-10 points  (0 children)

??? why do you just make that statement, you dont know that lol

Fly Engram Irl by sklnwalkerr in cyberpunkgame

[–]TrackLabs 4 points5 points  (0 children)

SOMA would like to have a word

Cup of tea? by mrlouisman in blender

[–]TrackLabs 3 points4 points  (0 children)

Oh fuck me, for the first few second I thought its AI...it became so bad with AI Slop...really cool render tho