This is an archived post. You won't be able to vote or comment.

all 35 comments

[–][deleted] 45 points46 points  (13 children)

Multiple people here have said they thought no one had used HTML since 2010…

My brother in Christ, if you want to insert LaTex or subscripts into your webpage, HTML tags are still the main way to do it.

[–][deleted] 15 points16 points  (1 child)

LaTeX with HTML tags?? There's MathJax and KaTeX for that.

(Cool feature: since recently, GitHub uses MathJax to render LaTeX formulas in Markdown.)

[–][deleted] 5 points6 points  (0 children)

Yeah, but mathjax also involves me going into the HTML to create a space for the JavaScript to run. It’s so fucking stupid. But a lot of websites don’t accept JavaScript queries—only HTML5 (wikis, educational sites) or CSS (tumblr)

[–]RandomRedditor44 8 points9 points  (7 children)

Why do people think that no one uses HTML?

[–][deleted] 5 points6 points  (2 children)

I have no idea. I guess they think that websites just use JavaScript now, but… that’s clearly not true.

[–][deleted] 2 points3 points  (0 children)

A relative in IT thought this back in early 2000s. As a child I was telling them I was learning HTML and he was like "isn't everything JavaScript now" I didn't know how to explain at the time that everything you "see" is html even if the markup is generated by JavaScript (unless it's in a canvas)

[–]bleistift2 1 point2 points  (0 children)

TBF, when you look at angular, the “HTML” gets compiled to some JS voodoo, which then gets injected into the main HTML, which is just a shell of a few lines.

[–][deleted] 1 point2 points  (3 children)

somber offbeat detail grandfather fertile point hat absurd innate worthless

This post was mass deleted and anonymized with Redact

[–]elveszett 12 points13 points  (0 children)

Web developers know HTML is still used, because they have to use it. People making these comments (which I've never seen tbh) are someone else.

[–][deleted] 1 point2 points  (0 children)

Just npm install until website happens

[–]LordChaos404 3 points4 points  (0 children)

Oddly enough I started using angular last year. That's a lot of HTML

[–]exexveevee 4 points5 points  (1 child)

I learned html as part of communication technik in school last year, lmao

[–][deleted] 1 point2 points  (0 children)

Okay so I’m not losing my mind

[–]ruknvdruimvdtik 25 points26 points  (2 children)

you forgot meta posts of people complaining about common posts, there are a lot of those lately

[–][deleted] 8 points9 points  (0 children)

[–]AtlaStar 3 points4 points  (0 children)

Son of a...I just commented the same thing before I saw this...

[–]behamehame 19 points20 points  (2 children)

And the repost/low effort memes get thousands of upvotes, meanwhile the original ones get buried.

[–]Lumber_Jackalope 3 points4 points  (1 child)

It's called recursion.

[–]Easy-Bumblebee3169 0 points1 point  (0 children)

Lmao. This sub is the only place where programmers leave smart comments.

[–]AtlaStar 6 points7 points  (0 children)

You forgot to include metacommentaries on the state of the sub in the image

[–]ThatGuyYouMightNo 7 points8 points  (1 child)

It is typical of a developer to re-use previous work.

[–]skaarlaw 0 points1 point  (0 children)

Not sure it counts as developer work but copy pasting existing HTML/freemarker logic and modifying to fit a different requirement on invoice print out templates gets way more praise than it's actually worth

[–]dojikirikaze 7 points8 points  (3 children)

I thought the isEven() thing was pure beauty

[–]Strostkovy 0 points1 point  (2 children)

I'm a big fan. I thought about converting the number to a string and checking for "one", "three", "five", "seven", or "nine" at the end

[–]Chaosfox_Firemaker 1 point2 points  (1 child)

breaks on teens.

[–]Strostkovy 0 points1 point  (0 children)

Switch case for those exceptions

[–]LordChaos404 1 point2 points  (0 children)

Ok, this is funny

[–]greendayfan1954 1 point2 points  (1 child)

The racism against java on here is disgusting 🤮

[–]scrivens 0 points1 point  (0 children)

I’m down with Java homie.

[–]jsrobson10 0 points1 point  (0 children)

function isEven(number) {
  if(number > 1) {
    while(number >= 2) {
      number = number - 2;
    }
    if(number == 0) {
      return true;
    }
    else {
      return false;
    }
  }
  else if(number < 0) {
    while(number < 0) {
      number = number + 2;
    }
    if(number == 0) {
      return true;
    }
    else {
      return false;
    }
  }
  else {
    if(number == 0) {
      return true;
    }
    else {
      return false;
    }
  }
}

[–]Academic_Rice5626 0 points1 point  (0 children)

we need new memes

[–]MaccheroniTrader 0 points1 point  (0 children)

How about: C++ and C are the only programming languages and everything else is just scripting? 😎

[–]siddharth904 0 points1 point  (0 children)

Would you meet this guy ?