• 0 Posts
  • 476 Comments
Joined 3 years ago
cake
Cake day: June 16th, 2023

help-circle




  • I stayed at one AirBnB where the owner had replaced all the kitchen counters with untreated butcher block. The instructions basically said “don’t use the kitchen”. For bonus points, my parents got the one bedroom and I had to sleep in the kids’ room … on the bottom bunk with the actual kid’s sheets because there weren’t any other sheets in the house. I just felt sorry for the kid.



  • Ironically, one of the universal things I’ve noticed in programmers (myself included) is that newbie coders always go through a phase of thinking “why am I writing SQL? I’ll write a set of classes to write the SQL for me!” resulting in a massively overcomplicated mess that is a hundred times harder to use (and maintain) than a simple SQL statement would be. The most hilarious example of this I ever saw was when I took over a young colleague’s code base and found two classes named “OR.cs” and “AND.cs”. All they did was take a String as a parameter, append " OR " or " AND " to it, and return it as the output. Very forward-thinking, in case the meanings of “OR” and “AND” were ever to change in future versions of SQL.