179 points

I don’t know why she’s nervous, she clearly knew the spec well and didn’t have to resort to modern abstraction frameworks to serve a simple static site.

permalink
report
reply
79 points

And she did it all in notepad

permalink
report
parent
reply
33 points
*

yeah, but if you don’t use wordpress to serve 3 static webpages, how will you get repeated business when it doesn’t get hacked in 3 years?

permalink
report
parent
reply
22 points

You obviously include a busy loop in JavaScript that takes exponentially more time each year. Then every few years you change the base year

permalink
report
parent
reply
7 points

Just make sure the exponential growth is faster than Moore’s law, or they might never notice it.

permalink
report
parent
reply
22 points

The absolute horseshit that things like Facebook consist of make me wonder if half the people who work on it have even made an HTML page from scratch.

permalink
report
parent
reply
14 points

Usually, no.

permalink
report
parent
reply
2 points

Some of the pieces of information on posts is drawn with the canvas element.

permalink
report
parent
reply
5 points

Yeah totally

permalink
report
parent
reply
1 point
*

It’s overkill for static sites, but credit should be given to JSX for being a decent way to create DOM nodes dynamicly. You can use a JSX transformer without using React, too.

permalink
report
parent
reply
-1 points

Or hear me out, nobody should give random credit to any framework for no reason whatsoever

permalink
report
parent
reply
1 point
*

JSX is a language, not a framework…

permalink
report
parent
reply
160 points

The old internet was a wonderful place for learning.

And pain Olympics, but my rose coloured glasses are blocking that out right now.

permalink
report
reply
39 points

The old internet is still there !internetisbeautiful@lemm.ee

permalink
report
parent
reply
10 points

Thank you.

(Also happy thanksgiving!)

permalink
report
parent
reply
32 points

Don’t apologize. That pain is exactly why millennials are so much more tech literate than boomers and gen Alpha.

permalink
report
parent
reply
38 points

don’t click that link! It could be a shitty song on Youtube

Zoomers

don’t click that link, if you’re lucky it’s just gay porn and we don’t have to format the drives

Millennials

permalink
report
parent
reply
16 points
3 points
*

shitty?

Assuming you’re referring to rickrolling.

permalink
report
parent
reply
3 points

The pain Olympics made millennials tech literate?

permalink
report
parent
reply
4 points

I’m guessing they don’t know what the Pain Olympics are, and interpreted it as a poetic description of the technical trials and tribulations of using the old Internet.

permalink
report
parent
reply
7 points

Wow I was thinking about that just the other day (I remember it as “BME pain olympics”). I wonder if it’s still floating around out there? But TBH I don’t want to know.

permalink
report
parent
reply
2 points
*

Yeah, it was Body Modification Enthusiasts or something?

I heard years ago it was all faked. Who knows? The trauma is real.

permalink
report
parent
reply
4 points

I mean there is always goatse. I showed my co-worker the original image since they didn’t know why there are memes about it now a day.

Eye bleach was used that day.

permalink
report
parent
reply
71 points
<marquee>cool cool cool</marquee>
permalink
report
reply
39 points

<blink>welcome to my homepage</blink>

permalink
report
parent
reply
40 points
*
<img>under_construction.gif</img>  
<embed SRC="linkinpark_numb.midi" hidden=true autostart=true loop=1>

That’s the extent I remember from grade school, had to make a homepage in like grade 5 and literally everyone had flaming text, crappy gifs, and horrible midi songs. Computer lab must have been a blast for the teachers.

permalink
report
parent
reply
4 points
*

<img src=“under_construction.gif” />

permalink
report
parent
reply
22 points
ee>cool cool cool</marquee><marqu
permalink
report
parent
reply
12 points

l cool cool</marquee><marquee>coo

permalink
report
parent
reply
3 points
*

ool</marquee><marquee>cool cool c

permalink
report
parent
reply
12 points

https://stackoverflow.com/questions/21233033/how-can-i-create-a-marquee-effect

CSS3 and HTML. Not quite as simple as an easy tag, but you can party like it is 1999.

permalink
report
parent
reply
56 points

Literally why I started HTML and then into programming. Had to do those sick absolute position overlays on the club pages of Neopets.

permalink
report
reply
15 points
*

Myspace also got a number of people playing with HTML and CSS if I remember correctly. It’s been years. Not sure CSS is actually even used anymore. I enjoyed web design classes back in the 2000s. Macromedia still owned Dreamweaver and it wasn’t all that great, so I could still do better by hand. I haven’t played around with any of it in years now, but I assume those programs have GUIs that blow away anything that can be written in notepad like back then.

If you’ve never trouble shot 100 pages of JavaScript in notepad because you didn’t have access to other tools, you haven’t had “fun” before. …fucking nightmare. Find out you put an extra space somewhere.

The better you got though you’d narrow down finding those errors quickly, and then eventually find out a fucking free program will color code the shit and tell you to look at line 232 because it doesn’t make sense

permalink
report
parent
reply
8 points

You just gave me horrible flashbacks of Dreamweaver.

permalink
report
parent
reply
6 points
*

I made an entire syllabus for my high school using on mouse over effects and drop downs with course descriptions, prerequisites and mappings for all future courses/paths. That was around 2005 or 2006. I didnt bother with Dreamweaver because how frustrating it was. Wrote the entire thing by hand using notepad. I don’t even think I did it for a grade, it was just me being so sick of us not having a proper syllabus that you could access online. Just printed copies that would say you need to have this prerequisite, but it didn’t list what page that other course was on so you had to flip around all over to find it and then figure out what prerequisites were needed there. Got so frustrated I just made my own.

When we were going to move into a new place a year later or so my girlfriend at the time and I were trying to figure out what furniture we wanted or how we would want to situate things to fit in our new place. We couldn’t visualize what each other were saying well and know if desks/dressers what not would fit where we wanted. Thus I opened my old web pages, took the blueprint map for the apartment and created a quick drag and drop web page where you could take each item with a name on it and drag it into rooms, place them all where we wanted and then she could play with it and see what didn’t fit side by side due to size, and screen shot what she liked/didn’t like. Having previous projects put together and being able to just copy previous scripts, probably took me 45 mins to throw together. Settled all issues of “that probably won’t fit” and let her play with it when I was at work.

Overkill, possibly… but it was fun at the time (The syllabus took a long ass time, but that had intentions of the school being able to use it off their website to allow students/parents help plan their own futures)

permalink
report
parent
reply
6 points

CSS is still used. Modern web toolkits like bootstrap and tailwind can reduce or eliminate the need to write CSS explicitly. Some tools like Sass extend CSS. They all generally produce regular CSS that gets read by the browser.

permalink
report
parent
reply
9 points
*

CSS is still used.

Modern CSS is pretty different to MySpace-era CSS though. Floats are practically never used any more, absolute positioning is a lot rarer than it used to be, and flexbox and CSS grid have made making page layouts far easier. There’s also many things we can do with pure CSS now that used to require JS.

permalink
report
parent
reply
52 points

Okay but that is adorable and true XD

The old internet taught us so many random skills. I couldn’t type on a keyboard for jack until I got into MMO’s back in the day, because it was pre voice comms. So I learned to type faster so I would struggle less XD

permalink
report
reply
7 points

I learnt HTML and JS by viewing the source code of major sites like Yahoo (this was in the early 2000s so CSS wasn’t extremely widespread yet). That’s practically impossible these days due to how much bulkier sites have gotten. Back then, HTML and JS were simple, unminified, and easy to understand.

permalink
report
parent
reply
3 points

Super good point!

Now you can’t even read a blog’s html to understand what it is doing, as it’s being hosted by a website builder doing 2 billion weird things most likely.

permalink
report
parent
reply
3 points

IRC and ICQ chat rooms here. Then MMOs after. I don’t type correctly(as in, finger positions etc), but I do type quickly.

permalink
report
parent
reply
3 points

UGH you’re just like my sister then! See I played runescape after taking a typing class in elementary school, so in class I got like 5 wpm, then over a summer of doing nothing but playing rune scape whenever I was able (usually by staying up late after everyone went to sleep) I got up to 25, and it just kept getting faster over the years as I kept playing other online game.

My older sisters didn’t have typing classes before they started doing IM chat rooms and stuff though. So my sister somehow types at 90 WPM by doing this cursed 2 finger chicken peck thing. She types way faster than me by just using 2 fingers on each hand and it always confuses the heck outta me.

permalink
report
parent
reply
1 point

MMOs are the reasons that my typing style involves my left hand covering 60-70% of the keyboard and my right hand getting the remaining 30-40% that I can’t easily reach.

Only need to bring in the mouse hand of absolutely necessary!

permalink
report
parent
reply

Comic Strips

!comicstrips@lemmy.world

Create post

Comic Strips is a community for those who love comic stories.

The rules are simple:

  • The post can be a single image, an image gallery, or a link to a specific comic hosted on another site (the author’s website, for instance).
  • The comic must be a complete story.
  • If it is an external link, it must be to a specific story, not to the root of the site.
  • You may post comics from others or your own.
  • If you are posting a comic of your own, a maximum of one per week is allowed (I know, your comics are great, but this rule helps avoid spam).
  • The comic can be in any language, but if it’s not in English, OP must include an English translation in the post’s ‘body’ field (note: you don’t need to select a specific language when posting a comic).
  • Politeness.
  • Adult content is not allowed. This community aims to be fun for people of all ages.

Web of links

Community stats

  • 11K

    Monthly active users

  • 2.4K

    Posts

  • 31K

    Comments

Community moderators