Mac to [email protected] • 1 year agoImplementing Tic Tac Toe with 170mb of HTML - no JS or CSSportswigger.netexternal-linkmessage-square18fedilinkarrow-up1128arrow-down118cross-posted to: [email protected][email protected]
arrow-up1110arrow-down1external-linkImplementing Tic Tac Toe with 170mb of HTML - no JS or CSSportswigger.netMac to [email protected] • 1 year agomessage-square18fedilinkcross-posted to: [email protected][email protected]
minus-square@[email protected]linkfedilinkEnglish18•1 year ago“I implemented the FizzBuzz algorithm in only 10 million lines of code!”
minus-square@cbarricklinkEnglish14•1 year agochar* fizzbuzz(int n) { switch (n) { case 0: return "fizzbuzz"; case 1: return "1"; case 2: return "2"; case 3: return "fizz"; case 4: return "4"; case 5: return "buzz"; ... } }
“I implemented the FizzBuzz algorithm in only 10 million lines of code!”
A terrifying number of people think like that.