Aussie living in the San Francisco Bay Area.
Coding since 1998.
.NET Foundation member. C# fan
https://d.sb/
Mastodon: @dan@d.sb

  • 0 Posts
  • 2.1K Comments
Joined 3 years ago
cake
Cake day: June 14th, 2023

help-circle
  • I would have loved to have 32 MB RAM. I was stuck with a 486 with 16 MB RAM and 600ish MB HDD until 2003 or so, because we couldn’t afford to upgrade. I think I upgraded to a second-hand Pentium 3 at that point, and upgraded the RAM with mismatched RAM modules (different brands, different capacities) salvaged from systems my school was throwing away.

    A simpler time. I miss it sometimes. Neither me (as a teenager) nor my parents had any money, but I did have enough free time to learn how to code and play shareware games. It gave me something to do that didn’t cost much money. Over 20 years later and I’m still coding.



  • I like the idea of using CSS variables for consistency.

    Many years ago, before CSS variables were a thing, I did a very similar thing using a LESS function:

    $zindices:
      hero-mobile,
      nav-bar,
      hero,
      nav-contents;
    
    @function zindex($layer) {
      @return index($zindices, $layer);
    }
    

    Which would be used like:

    z-index: zindex('hero'); 
    

    The z-index value is just that string’s position in the list.











  • There’s no tracker. Your link just says that there’s a central search and chat room server. The search just points your client to users that have files with that name. It doesn’t track anything else.

    The server does not know which files you download - that’s just between you and the person you’re downloading from. You can download files directly from a user (e.g. by searching for a username then browsing their files) without relying on the central server at all.

    You don’t need port forwarding for downloads, only for uploads.