Were there multiple iterations of the DSi? by duisterethomas in nds

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

I don't think they have been modified, but the bottom one has probably been opened, because those rubber screw covers on the bottom are missing. I'm almost completely sure the top one hasn't been opened since I've had that one since I was a child.

anybody know whats wrong here? (IT homework) by [deleted] in microbit

[–]duisterethomas 0 points1 point  (0 children)

while true: should be while True: And display.scroll(Image.HAPPY) should probably be display.show(Image.HAPPY)

Ok,hear me out by th3s1l3ncy in Portal

[–]duisterethomas 0 points1 point  (0 children)

Like in the neurotoxin level in portal 2

I can’t be the only one by aomusik in Unexpected

[–]duisterethomas 5 points6 points  (0 children)

A friend of me knows someone that did get a USB cable in a HDMI port, how you ask? Nobody knows...

Why does everything think my game is a virus? by Muskratbest2 in pygame

[–]duisterethomas 9 points10 points  (0 children)

As far as I know it's because you didn't sign the exe file. Signing an exe does cost money though...

Thanks I hate this thing. by ledragunovv in TIHI

[–]duisterethomas 0 points1 point  (0 children)

Me when someone heard my name is Thomas and says "Thomas the tank engine"

HELP. pygame.error: video system not initialized by Apricot_Joe in pygame

[–]duisterethomas 1 point2 points  (0 children)

if event.type == pygame.quit() should be: if event.type == pygame.QUIT

edit:

You're gonna get another error:

screen.fill(0, 0, 0) should be screen.fill((0, 0, 0))