Earlier quoted context omitted.
It was t.gif, for transparent.
Ours was called 0.gif
Only 90s web developers remember this (2014)
191–200 of 354 posts
Re: Only 90s web developers remember this (2014)
#192Earlier quoted context omitted.
Except now it just shows Good luck with that!
I’ve struggled for ever with modern pages to find out what even listeners are attached to particular html elements. Is that even possible to find out? Say you’re on a webpage, and when you click a button a bunch of JS happens. Except it’s all minifies uglified. But the browser must know what JS will run when clicking that button. How do I make it show me what that code/function is without trawling through the JS code…
That you'll be able to actually read the code is another completely different story.
Re: Only 90s web developers remember this (2014)
#193The comments on this page are very clearly divided between people who at the time were professional web developers and people who were teen code explorers, and I love them both. I never thought I'd feel nostalgic for that time in my life.
Took me a career in corporate finance to realise I should probably go back to playing with computers again, love every minute of it.
Re: Only 90s web developers remember this (2014)
#194I'm missing the : https://developer.mozilla.org/en/docs/Web/HTML/Element/marqu... , the "under construction" GIFs: https://www.vice.com/en/article/9akenz/this-guy-compiled-eve... and those lightsaber horizontal content dividers.
Re: Only 90s web developers remember this (2014)
#195My first software dev job was in the 90's writing PHP for a mom and pop ISP that was trying to get into app development. It was originally supposed to be Perl, the job interview was something like: Me: demos CRUD app for keeping track of my record collection, hosted on a free site Owner: You wrote this? Me: Yeah. Owner: This is in Perl? Me: Yeah. So I got hired. The day I got there, he told me they were going to use…
I wish interviews were like this. Show them something you built and you get hired instead of the nonsense of leetcode.
I was lucky and I did a side project my last year of college abusing Hadoop to make a web scraper & analysis tool on one. Probably got me my first 2 jobs because I LOVED to talk about that project, and it let me break out of my fearful and introverted shell to show a wider range of skills
Re: Only 90s web developers remember this (2014)
#196That's the first time I've heard DHTML to mean "distributed HTML" — I always knew it to mean "dynamic HTML".
Yeah, it is dynamic. But the author also mentioned putting spacer gifs in semantically appropriate containers, so I think it may have been a joke?
Also, as far as I can remember, you could never combine and because only IE supported and only the Netscape family of browsers supported .
I think there is a lot of humor in this article that is maybe a little too subtle.
Re: Only 90s web developers remember this (2014)
#197Because I saw an example of it in the post, what's the right way to handle special characters in script tags? Browsers seem to let you do anything, but stray ampersands are sort of illegal?
If you write XHTML, special HTML (XML) characters in MUST be escaped. You can avoid having to escape manually by putting your Javascript between . That's because the XML parser does not have special handling of script tags, contrary to HTML, and will not forgive any unescaped special character. It will parse them as tags and entities if they happen to be syntactically valid XML tags or entities.
If you write polyglot HTML / XHTML, CDATA sections will not handled as such by the HTML parser and will break your javascript because
//
(you will also need to "escape" both "" and "]]>" if they ever appear in the Javascript code).In XHTML mode, the Javascript will look like this after parsing:
//
let your_code = "be here";
//
(because CDATA are interpreted in XML, and "replaced" by their content)In HTML mode:
//
(because CDATA sections are not recognized, so they will be handled as normal commented javascript code)Re: Only 90s web developers remember this (2014)
#198Maybe tables weren't the best, but they were easy and predictable.
Re: Only 90s web developers remember this (2014)
#199Drop shadows, rounded corners, the holy grail layout, optimized for 800x600, 960.css, print stylesheets, flash files, the advent of promises... We didn't start the fire, it was always burning while the beachball was turning.
Re: Only 90s web developers remember this (2014)
#200My first software dev job was in the 90's writing PHP for a mom and pop ISP that was trying to get into app development. It was originally supposed to be Perl, the job interview was something like: Me: demos CRUD app for keeping track of my record collection, hosted on a free site Owner: You wrote this? Me: Yeah. Owner: This is in Perl? Me: Yeah. So I got hired. The day I got there, he told me they were going to use…
I wish interviews were like this. Show them something you built and you get hired instead of the nonsense of leetcode.