Live data from Hacker News

Only 90s Web Developers Remember This

zachholman.com

321–330 of 404 posts

Re: Only 90s Web Developers Remember This

#321
post #270

I remember using images that looked almost identical to in place of an actual tag. Plus the million variations (you didn't have a real site until you have a image that matched your theme). I remember the 1x1 transparent pixel with great affection---it was the output of my first significant CGI script (in Perl, of course) that I used as a site counter. Winsock! Fuck yeah! I remember when a web page and a gopher site l…

So many memories on this list.

Trumpet Winsock on Windows 3.11, dialing into a small mom and pop ISP in my town in Tennessee (I think they were pretty much all mom and pops back then). Then fire up Netscape and surf as well as you could at 2400 baud. Which actually worked pretty well because everything was slow and you just kind of expected it.

Or learning cool HTML tricks by looking at the source, then practicing it myself on the 1mb of storage space my ISP gave us. These days, most of the time, simply viewing the source doesn't tell you a whole lot about what's going on without spending some time digging into JS and CSS for a page. I remember being thrilled when we got an upgraded Netscape version that actually allowed you to save images.

It wasn't just the web, either. I miss spending hours and hours playing MUDs. Some of the best times I had in my teen years were on MUDs; 20 years later I still keep in contact with some of the people I met.

The Internet's pretty awesome now, don't get me wrong. I get to write code and make money doing it, in an economy that didn't exist, really, back then. But there's a part of me that really misses that early wild west Internet that existed just prior to the first dot-com boom. Back when we were just first figuring this stuff out...

Re: Only 90s Web Developers Remember This

#322
post #248

Oh man. I was a "web developer" back then. - I'm surprised he didn't mention tables. That's the first thing that came to my mind. We didn't use CSS but tables to make a layout. And I have to admit I miss them. Yes we have grid systems like bootstrap now but still, tables were damn easy. - What about those counters that were displaying how many visitors had came since the website creation - Those "in construction" pag…

Oh man disabling right click I forgot about that one. The clients that were really concerned people would try to save images off their website cracks me up today. I can't believe that adding alert('This is copyrighted material.') was something I had to begrudgingly add on a routine basis

Re: Only 90s Web Developers Remember This

#323

> 1x1.gif let you push elements all around the page effortlessly. To this day it is the only way to vertically center elements. False, dynamic vertical centering has always been possible with tables: dynamically vertically centered This is something CSS still can't seem to do dynamically except with table-emulation, which, you know, kind of defeats the whole fucking purpose of CSS (and isn't backwards compatible anyw…

I do:

    .thing {
      position: relative;
    }
    .thing .child {
      width: 50px;
      height: 50px;
      position: absolute;
      top: 50%;
      margin-top: -25px; /* half of height */
    }
Or else if it's text I just make the line-height the same height as the parent element. That keeps things vertically centred :)

Re: Only 90s Web Developers Remember This

#325
post #302

Earlier quoted context omitted.

Yes yes yes! You were a webmaster based on the article posted. You were a web developer if you'd torn apart and rebuild Matt's Forum, Poll, and other widgets.

My first job title was "webmaster." Which meant dev-ops-designer-product-guy.

True, true - there was no web dev/web designer, no front end/back end... webmaster had to be a *nix admin, coder, HTML, graphic designer & security guy all rolled into one.

Re: Only 90s Web Developers Remember This

#326
post #278

Earlier quoted context omitted.

All webrings were missing was a HUD. A top-down topographical map of the ring and an indicator of your position in it at any given point would have been awesome.

I almost half think there must be a way to bring them back, but I keep coming around to yet another js widgety social media service thing which would probably just wind up evil. And people wouldn't even use it because it would probably break their SEO or something. But "I like this site - show me another one like it, but make it go in a circle" seems like an idea that should be able to get traction even now. Maybe as…

I actually considered building a web ring service just for tumblr when it was beginning to get popular. What's old is new again tends to repeat over and over again.

Re: Only 90s Web Developers Remember This

#330

OR ANYONE STILL DOING HTML EMAILS

Writing code for HTML email is like a time machine. Even the most basic of CSS like setting a margin only works in some clients. Un freaking believable.

Yea, the   and 1px transparent png's are your best friend in that world.
Post reply on HN