• 0 Posts
  • 83 Comments
Joined 1 year ago
cake
Cake day: June 30th, 2023

help-circle
  • orbitz@lemmy.ca
    cake
    toProgrammer Humor@lemmy.mlWorst is UTC vs GMT
    link
    fedilink
    arrow-up
    10
    arrow-down
    2
    ·
    18 hours ago

    Not if the place doesn’t do daylight savings time, and not all places in a timezone will do that (least in North America) so you need extra code if they do or do not. It becomes a pain after awhile when you do it in multiple projects. Technically one extra setting but it’s still a pain to make sure it’s handle properly in all cases, especially when the previous programmer decided to handle it for each case individually, but that’s a different issue.

    Also when you deal with the times, say in .Net you gotta make sure it’s the proper kind of date otherwise it decides it’s a local system date and will change it to system local when run. Sure it’s all handled but there are many easy mistakes to make when working with time.

    I probably didn’t even get to the real reason, I sort of picked this up on my own.



  • orbitz@lemmy.ca
    cake
    toProgrammer Humor@programming.devC++
    link
    fedilink
    arrow-up
    15
    ·
    22 days ago

    First year programming in the late 90s … segmentation fault? I put printfs everywhere. Heh. You’d still get faults before the prints happened, such a pain to debug while learning. Though we weren’t really taught your point of the comment at the time.

    Least that was my experience on an AIX system not sure if that was general or not, the crash before a print I mean.


  • Going back awhile now too for that no install right? Like didn’t PS3 have some installs? My memory is fuzzy on when it exactly started, but yeah it was nice to just pop in the media (cart, disc) and play. That was a great perk of console games, especially rentals,though there was a small time I could rent PC games when I moved to a city in the late 90s. These days I mostly play on PC anyways so always install but it was nice for the first few decades of my gaming to not require it.




  • I may be wrong but I think it’d be the same issue in that the bios wouldn’t boot the OS from that sort of drive. For whatever reason that caused it I think it’d be a similar issue. That said by the time DVD drives being common enough for a server drive, most BIOSs would be able to handle it fine and a fair bit of time after this was needed.

    Though I kinda thought with proper configuration cd rom drives were all bootable, but I wasn’t working with servers in that era either so there were probably some mobos/bios that didn’t work properly for booting a cd/DVD drive. Closest to the time I was familiar with was XP and pretty sure that was expected to be CD bootable in 2001. So maybe this kicked in the bios support for bootable non floppy disc drives?




  • I haven’t played for a couple decades but never used minis when we did, occasionally the DM would arrange some dice if we needed some visual aides but was never measuring distances and hex grids or anything. Some of us even played wh40k at the time so it wasn’t that unknown, we just never played tabletop RPGs like tactical games. It was also 2nd Edition not even third, so awhile back. Shadowrun games needed the visual aids more than DnD usually.



  • I’ve only dabbled in Linux, I can figure out things for the most part but never used it beyond some fiddling, but I didn’t realize that desktop environments had that many specific applications. I always thought beyond some default apps most apps wouldn’t depend on the desktop environment but after some reading seems like they use similar dependencies.

    So if this gets seen, can most/many/any general kde apps work under a different environment if you install the dependencies or do you absolutely need the environment for them to work? Does that also follow for other desktop environments? Been reading up on DEs to get a dual boot or virtual install going in the future and this was something I hadn’t realized may make one DE stand out.



  • The problem with stuff like flow charts is that when you do a new feature that changes the chart then there’s another chunk of time to update that document. If you’re really interested in that all you can really do is make your own as you go through software and you’ll see usual patterns how different code areas interact. it’s not as useful as figuring it out on your own or studying design paradigms.