27

My CS teacher uses html 4 spec that has shit like <strong> and <font size=5> and all sorts of inline garbage. She writes the tags in ALL CAPS and it honestly looks like SQL had a baby with brainfuck. I can't handle this shit anymore. She feels like she's apparently very good at programming and has just been promoted to the School's CS HOD (Head of Department). I have no idea what to do I go to school everyday having to face her mutilating my interest in programming. My peers are all incompetent and don't care at all. Don't get me started on how she writes Python. What the fk man.

Comments
  • 11
    Some people don't bother to keep learning and improve themselves. Her CS knowledge probably from 20 years ago.
  • 11
    Bummer!

    But also note that <strong> is HTML 5 and is the legit way to denote strong emphasis.
  • 18
    Html with inline styles + SQL.
    Make this abomination reality please! 😂

    <SELECT *><WHERE fontSize=5>
  • 9
    @Lensflare Don't you get something that is called 'react' ? 🤡
  • 1
    @sheriffderek why was this changed from <b></b> ?
  • 19
    @wackOverflow because bold does not convey intent which is important when doing text to voice.

    Is the bold just a design feature or does it mean important. Strong explicitly is intended to be interpreted in the context of how the reader consumes it.

    Text to voice, braiile or some other way.
  • 6
    @Voxera that makes sense. Thanks for the explanation!
  • 5
    @wackOverflow to phrase it in other words:
    b (bold) is style.
    strong is semantics.
  • 4
    HTML isn't real coding.

    Fight me bro.
  • 2
    Your teacher sounds like an incompetent person with an inflated ego. Hopefully she won't give you shit marks when you have to submit assignments with better HTML than she wrote...

    One positive thing, you are able to see the bad code she writes, learn from that and don't make the mistakes she makes ;)
  • 3
    @atheist so are unit tests
  • 3
    @atheist

    HTML is real coding...

    Ok, not gonna lie, I was just picking a fight 😂
  • 0
    I was rooting for her until the part that said she codes in Python...
  • 0
    They be like that. Nobody in academia is a seasoned engineer with a decade plus under their belt. Those people are making bank not teaching lazy students.
  • 0
    what's wrong with tags in all caps? gotta admit i often do that too

    even the current HTML standard ( https://html.spec.whatwg.org/ ) says: "Many strings in the HTML syntax (e.g. the names of elements and their attributes) are case-insensitive"

    i'm not a webdev, so i don't really watch and follow current trends and "commons". but i understand your pain as i've tried to push at least some basic python code styling in our team and failed.
  • 0
    @CoreFusionX as if writing all that xml in ms stack is
  • 0
    @wackOverflow Because <b> meant "Bold" at the time - that that is a stylistic choice and not really a semantic meaning. Strong emphasis can be styled any way you choose - but say, Siri - would know to say the word differently - or screen-readers etc.

    Also they seem to be trying to rebrand <b> as "The bring attention to" element. :shrug
  • 1
    @wackOverflow same applies for <i> and <em>
  • 1
    @CoreFusionX Markdown coding wants to join the fight too :D
  • 2
    Writing tags in all caps is the old fashioned (as in reeeeally old) way of writing HTML.
  • 0
    @atheist I don't fight you. I Figma you.
  • 1
    @ethernetzero Yeah, feels totally like it's 1980s.
  • 2
    @tw001 No, we did not have html 1980 :P, it came 1992 :)

    1980 we only had assembly or line numbered basic, but yes, basic was usually written in all caps, so some resemblance :D
  • 0
    Argh, Basic. That's my sweet childhood memory.
  • 2
    @Voxera Sorry, BASIC.
  • 2
    @tw001 yes, sorry, been too long, my BASIC has gone a bit rusty :P
  • 1
    @cjbuzon if your in the development business your always a STUDENT, or your obsolete ;)
  • 0
    @Voxera Oh, it seems everybody is talking about Rust these days.
  • 0
    While HTML tags are case-insensitive, I don't remember anyone write them in CAPS, whether in StackOverflow, or in CodePen.

    It's simply not in style anymore.
  • 0
    Sometimes I really miss the BASIC's GOTO, mainly to execute a code block just few lines above and don't abstract it ( b/c I love DRY KISS )
  • 0
    In same line of thoughts, I think that it would be good if all the high level programming languages had inherited the ASM's JE, JNE, JMP and related. It's completely diff way of doing the things, but IMHO it's possible to combine them for DRYness if not simplicity
Add Comment