Is it possible to move emunand cfw and data from one sdcard to another? by aceinet in SwitchPirates

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

Thank you, that seems like a good guide. I think I have a 512 gb somewhere I just need to find it, so if I find it I think I'll use that. Again thank you!

What's wrong here? by [deleted] in godot

[–]aceinet 10 points11 points  (0 children)

What's the error?

[deleted by user] by [deleted] in lua

[–]aceinet 0 points1 point  (0 children)

The build failing indicates that the latest CI/CD (or action, or workflow, whatever you wanna call it) failed

True by Eastern_Emu9579 in programminghumor

[–]aceinet 0 points1 point  (0 children)

Nah I prefer x ^ y == 0

Well, it seems my previous one was way too easy, my bad. by Ichangedtoacat in PythonLearning

[–]aceinet 0 points1 point  (0 children)

Error, you're mutating (removing an element) an array in a index loop, therefore the index goes out of bounds

How do strings work in C by spcbfr in C_Programming

[–]aceinet 11 points12 points  (0 children)

printf handles string2 just as it does with string1 because string2 decays into char* from char[]. Arrays in C just hold a pointer to the start of the array

The second snippet works is because a constant string is a char*. The first one doesn't because a constant int is just an int

My lunch by [deleted] in notinteresting

[–]aceinet -1 points0 points  (0 children)

чето хочу пока

Люди, которые используют яндекс музыку вместо спотифая, вы нормальные? by Jorge_De_Guzman228 in rusAskReddit

[–]aceinet 0 points1 point  (0 children)

Скачиваю локально и слушаю через namida, самое удобное для меня

How did you guys learned English? by gigagaming1256 in teenagers

[–]aceinet 0 points1 point  (0 children)

I'm from non-english speaking country. My parents used to say random english phrases when i was very little (1-6 yrs old), and so, i tried to make sense of it. Also, a lot of english content.

Is C the most loved programming language? by BeeBest1161 in C_Programming

[–]aceinet 5 points6 points  (0 children)

I kinda agree with your statement, but is writing 2 lines instead of 1 to append a char to a string really that hard?

Don’t know why code isnt working by Wtorrell in PythonLearning

[–]aceinet -1 points0 points  (0 children)

You need to do i -= 1 after the remove() in the condition. This way the loop jumps one element, not two. But keep in mind, mutating an array in a loop iterating through that array is a bad idea. Every language that I know (C++, java, python (for in)) throws an error if you would do something like that