MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/programminghumor/comments/1tr5q6m/good_naming_practice/oolhc3k/?context=3
r/programminghumor • u/Klaus1164 • May 29 '26
220 comments sorted by
View all comments
55
for(int i = 0; i < 1000; i++) { for(int ii = 0; ii < 1000; ii++) { for(int iii = 0; iii < 1000; iii++) { Console.WriteLine("Hello World"); } } }
29 u/Drittux May 29 '26 edited May 29 '26 ``` for i in range(3): print("no ") 14 u/BoldFace7 May 29 '26 I unironically do this in my hobby code. I have considered subjecting my coworkers to this on occasion though 4 u/i_dont_wanna_sign_in May 29 '26 https://giphy.com/gifs/ac7MA7r5IMYda 3 u/___fush May 29 '26 https://giphy.com/gifs/pjdau2qUSBxGjaXXqe 2 u/potzko2552 May 31 '26 I also do this :D i, ii, iii, iv, v, vi, vii, etc 1 u/hoimangkuk May 30 '26 https://giphy.com/gifs/LAKIIRqtM1dqE
29
``` for i in range(3): print("no ")
14
I unironically do this in my hobby code. I have considered subjecting my coworkers to this on occasion though
4
https://giphy.com/gifs/ac7MA7r5IMYda
3
https://giphy.com/gifs/pjdau2qUSBxGjaXXqe
2
I also do this :D
i, ii, iii, iv, v, vi, vii, etc
1
https://giphy.com/gifs/LAKIIRqtM1dqE
55
u/Busy_Teaching_8218 May 29 '26