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

help-circle

  • I had a job like that back in the day (circa 2000). I remember one stretch where for a solid month around 50 developers did nothing but call in to Who Wants To Be a Millionaire? to try to become a contestant. Ironically, one web app I wrote for them (with Visual Basic and “Classic” ASP) is still in use today – and it was a front end for a mainframe system that dated to the 1980s, which means that’s still up and running as well.







  • I used to work at the Comcast Center in Philly and I randomly ended up working on one of the higher floors where about three-quarters of all the offices were empty. I spent my days alone in a huge corner office that had a perfect view of a battleship. Somehow during this run Comcast was building a second office tower two blocks away because the Comcast Center was supposedly stuffed to the gills. The reality was that it was stuffed to the gills with Indian contractors down on the lower floors and the corporate leadership wanted them out.


  • At my first job as a programmer I had a full old-fashioned desk. Unfortunately it was in the server room which was kept at 58°F. The servers didn’t actually need to be at that temperature any more and I sure as fuck didn’t need to be at that temperature since I was writing desktop apps, but that was how that company had been doing things for literally decades. I had to wear a hat and motherfucking Oliver Twist fingerless gloves all day.





  • I started working as a professional programmer in the mid-90s when three-tiered design was all the rage: a data access layer, a business logic layer, and a presentation layer. It seems that nobody actually knew what “business logic” was even supposed to be, because I kept inheriting projects where all the middle tier did was hand data objects from the data layer to the UI. In theory this prevented the UI from being fundamentally bound to the data access, but all three layers were always written in Visual Basic which got kicked to the curb in a few years anyway.



  • It was originally written as a C DLL utilized by a Visual Basic front end. The C DLL used the Win95 API, though, so it wouldn’t have worked on anything but Windows 95 and onwards. I subsequently ported the entire thing to C# but still using the same API to do the actual playing of the audio (I experimented with using DirectSound instead but that was really not appropriate for an application doing its own audio mixing). Now I’m working on an iOS version and I couldn’t give two fucks about Windows at this point.


  • As a programmer, it’s pretty wild how much of Windows under the hood has remained completely unchanged. I started writing software synthesizer applications back in the late '90s, using a part of the Win95 API called “winOutX”. The functions are kind of clunky to use but they allow you to programmatically create your own audio buffer arrays filled with whatever sounds you’re up to creating and dump them into the playback stream for seamless audio. This shit has remained in place, working pretty much perfectly, for the last 30 years. It was even there in WinCE/Windows Mobile, which allowed me to write software synthesis applications for early smartphones circa 2005. And it’s still all there today.

    I like to rip on MS as much as the next guy (not least for them completely dropping the fucking ball as far as smartphones were concerned), but sometimes their incredibly long-term conservatism can work to your benefit.