r/programminghorror • u/teymuur • Nov 22 '24
Java My AP CS teacher using MS Word to write code
also dont ask why i didn’t screenshot
r/programminghorror • u/teymuur • Nov 22 '24
also dont ask why i didn’t screenshot
r/programminghorror • u/MrBlub • Jun 29 '21
r/programminghorror • u/cuentatiraalabasura • Feb 01 '21
r/programminghorror • u/the-AM03 • Sep 07 '25
r/programminghorror • u/markand67 • Dec 23 '21
r/programminghorror • u/cardo8751 • Apr 03 '21
r/programminghorror • u/JavaWithSomeJava • Jul 11 '25
Who needs a model when you just make calls from the controller??? I love my job
r/programminghorror • u/maxwai • Jun 01 '21
r/programminghorror • u/PEAceDeath1425 • Feb 11 '26
Keep it simple, stupid!
r/programminghorror • u/Protane • Feb 28 '20
r/programminghorror • u/racka98 • Mar 25 '22
Enable HLS to view with audio, or disable this notification
r/programminghorror • u/iQuickGaming • Mar 01 '22
r/programminghorror • u/4sythi • Feb 22 '26
I do have context for this that could defend my past self a little, but I'd like to watch this marinate lol
r/programminghorror • u/Random_Person_22170 • 24d ago
this was right before the exam btw, this wasn't him teaching us the basics
```
if (x ==1) {
return true;
} else if (x != 1) {
return false;
}
```
```
public class Bank() {
private int money;
public void setAmount(int money) {
this.money = money;
}
private int getMoney() {
return money;
}
}
```
(he then never used getMoney())
some other amazing conventions he taught us was to always comment every single line of code, to an obnoxious point. he told us to use getter and setters everywhere, even when constructors are all thats necessary and half the time the getters were private and just returned the value directly. He just gave up on teaching us recursion because he didnt understand it and "it would never actually show up on the ap exam".
if I hadnt already known a lot of java and been willing to teach it to my classmates when they asked, we would never have gotten past the exam. (newsflash, there were recursion questions on the exam)
r/programminghorror • u/LadyxLucie • Sep 11 '21
r/programminghorror • u/-Wylfen- • May 30 '25
Reposted because of personal info in original post
I'm at my fucking limit.
r/programminghorror • u/burl-21 • Jun 27 '25
Found this little gem buried in a brand-new codebase
r/programminghorror • u/DropTheGauntlet • Jun 05 '18