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

help-circle






  • Not sure what the comment you responded to was

    They said high school kids don’t take school buses … like, no high school kids do, which is manifestly untrue. I actually grew up in a town with no school buses at all, but that’s because we had a big state university there and the school district contracted with the university bus service to provide adequate route coverage to get kids to school.










  • ChickenLadyLovesLife@lemmy.worldtoMicroblog Memes@lemmy.worldMe too, man
    link
    fedilink
    English
    arrow-up
    22
    arrow-down
    2
    ·
    edit-2
    21 hours ago

    One reason for the early starts for high schools is that by staggering the start times for high school, middle school, and elementary school, school districts can use fewer buses and fewer drivers. If all the schools started at the same (more reasonable) time, you’d need three times as many buses and drivers and each driver would only get one or two hours a day (and thus would find something else to do, making the existing shortage of drivers even worse). The district I drive for has a transportation budget of about $3 million a year - we would not be able to afford $9 million a year and still afford our administrators’ enormous salaries.

    If you just started all schools later by an hour, the elementary school kids would start at 9:30 AM which would not work out very well, either.


  • I wrote a web app for a client back in the late '90s that is still in (heavy) use at the company. It was actually a “Classic ASP” app and they kept one old PC around to act as the server for it for a couple of decades (they eventually replaced that with a virtual machine and the app is still going). The output is straight HTML + CSS so they’ve never had any problems using it with progressively more modern browsers. Ironically, this app is a front end sitting atop an unbelievably clunky mainframe application that dates to the 1970s, so my app’s continued existence means that mainframe application is still running as well.


  • My first coding experience was as a kid on punch cards (and I’m not even 60 yet). This was in the late 70s and I had an older neighbor friend who was in high school but taking some classes at the local university. The intro programming class that he took still used punch cards on mainframes (though this was being phased out even then) and my friend sort of Tom-Sawyered me into helping him with his homework. It was actually kind of fun to sit there punching the holes in the cards, and then we’d take the stack of cards over to the CS building and leave it in his mail slot, and then a few days later you’d get a giant stack of that old green- and white-striped computer printout paper deposited there with the program’s results.

    It’s interesting, it really taught me to check and recheck my own code extremely thoroughly and carefully before “running” it, rather than pumping out some slop quickly and relying on the compiler and/or the output to identify any problems. Because with multiple days between submitting the code and seeing the results, you really had to make sure stuff was working from the get-go. In my career as a programmer, I subsequently ran into many similar situations that required basically just your own eyeballs to make sure the code was right. When I was writing Blackberry applications circa 2010 (!) for example, RIM’s utterly fucked-up developer environment meant that the delay between starting to compile an application and having it running on a test device could be 30-45 minutes or more (if it finished compiling at all) even if I’d only made a single one-line code change. So I had to get back in the habit of very carefully writing a lot of code before attempting to compile, and making sure it was going to work correctly just by inspection.