Programmers Who Don't Know HTML
-
A thought just occurred to me (hey, you shut up, it happens on occassion!). I assume that most developers have had some experience with HTML. I'm not sure why; it just seems like a given to me (however unjustifiable that assumption may be). That may be more true of developers who post in the Lounge, considering we are exposed to HTML regularly. However, I am curious... how many of you know developers who don't know at least some basic HTML? If you are reading this, Chris, might be a good topic for a poll.
-
PIEBALDconsult wrote:
The article editor as well, I go to a lot of trouble using <strong> and <em> and they get replaced.
... By something that does exactly the same thing.
PIEBALDconsult wrote:
Just awful.
Er, yeah. Isn't it?
I wanna be a eunuchs developer! Pass me a bread knife!
Mark Wallace wrote:
does exactly the same thing
That depends on the browser.
-
But maybe not valid.
-
A thought just occurred to me (hey, you shut up, it happens on occassion!). I assume that most developers have had some experience with HTML. I'm not sure why; it just seems like a given to me (however unjustifiable that assumption may be). That may be more true of developers who post in the Lounge, considering we are exposed to HTML regularly. However, I am curious... how many of you know developers who don't know at least some basic HTML? If you are reading this, Chris, might be a good topic for a poll.
I knew it and up until last year used it, but I like to think that I forgot as much of it as I could.
Craigslist Troll: litaly@comcast.net "I have a theory that the truth is never told during the nine-to-five hours. " — Hunter S. Thompson
-
Actually, I'm pretty sure this will work in most browsers:
Hello World
Just as long as the file has an HTML extension. :)
True ;P
See if you can crack this: b749f6c269a746243debc6488046e33f
So far, no one seems to have cracked this!The unofficial awesome history of Code Project's Bob! "People demand freedom of speech to make up for the freedom of thought which they avoid."
-
Mark Wallace wrote:
does exactly the same thing
That depends on the browser.
PIEBALDconsult wrote:
That depends on the browser.
The only difference I know of is that the strong and em tags are used by page readers, for adding emphasis when reading a page out loud, which, to me, means that most instances of them should be replaced by b and i tags, anyway.
I wanna be a eunuchs developer! Pass me a bread knife!
-
A thought just occurred to me (hey, you shut up, it happens on occassion!). I assume that most developers have had some experience with HTML. I'm not sure why; it just seems like a given to me (however unjustifiable that assumption may be). That may be more true of developers who post in the Lounge, considering we are exposed to HTML regularly. However, I am curious... how many of you know developers who don't know at least some basic HTML? If you are reading this, Chris, might be a good topic for a poll.
I have reasonable HTML knowledge so I can for example, among other things, avoid using tables to layout a page (a topic of hot debate sometime ago). I discovered CSS at one point and was able to appreciate it (I guess CSS counts for basic HTML knowledge :D) However, Javascript was something that I always avoided. I have been reusing blocks of code sometimes and modify them to fit my needs and get some job done. I was always under the impression it would be hell to learn it and it's really not worth it, ... and I survived somehow. Cheers.
giuchici
-
PIEBALDconsult wrote:
That depends on the browser.
The only difference I know of is that the strong and em tags are used by page readers, for adding emphasis when reading a page out loud, which, to me, means that most instances of them should be replaced by b and i tags, anyway.
I wanna be a eunuchs developer! Pass me a bread knife!
Mark Wallace wrote:
b and i tags
Should not exist.
-
Yeah but I can make winforms sit up and beg, I've been building winforms of 1 type or another for decades. SL is still a challenge but I figure I have enough of a grip on it to produce LOB apps.
Never underestimate the power of human stupidity RAH
-
Mark Wallace wrote:
b and i tags
Should not exist.
May the lord preserve us from evangelistic religious fanatics. How, pray, would you go about adding bold or italic text that is not to be stressed by an electronic voice reading the page?
I wanna be a eunuchs developer! Pass me a bread knife!
-
A thought just occurred to me (hey, you shut up, it happens on occassion!). I assume that most developers have had some experience with HTML. I'm not sure why; it just seems like a given to me (however unjustifiable that assumption may be). That may be more true of developers who post in the Lounge, considering we are exposed to HTML regularly. However, I am curious... how many of you know developers who don't know at least some basic HTML? If you are reading this, Chris, might be a good topic for a poll.
-
A thought just occurred to me (hey, you shut up, it happens on occassion!). I assume that most developers have had some experience with HTML. I'm not sure why; it just seems like a given to me (however unjustifiable that assumption may be). That may be more true of developers who post in the Lounge, considering we are exposed to HTML regularly. However, I am curious... how many of you know developers who don't know at least some basic HTML? If you are reading this, Chris, might be a good topic for a poll.
I do software unit testing for embedded systems and before the beginning of the year have never needed html and have never used it in my work environment. It did however fall part of my studies I did a few years back and it was needed when my boss wanted we to start with some java plugin development on Jenkins CI. Only a little HTML was needed though... Most of the webby stuff gets done with Jelly, which is more executable xml than html. Now that is fun.
"Program testing can be used to show the presence of bugs, but never to show their absence." << please vote!! >>
-
May the lord preserve us from evangelistic religious fanatics. How, pray, would you go about adding bold or italic text that is not to be stressed by an electronic voice reading the page?
I wanna be a eunuchs developer! Pass me a bread knife!
By using span and css?
-
A thought just occurred to me (hey, you shut up, it happens on occassion!). I assume that most developers have had some experience with HTML. I'm not sure why; it just seems like a given to me (however unjustifiable that assumption may be). That may be more true of developers who post in the Lounge, considering we are exposed to HTML regularly. However, I am curious... how many of you know developers who don't know at least some basic HTML? If you are reading this, Chris, might be a good topic for a poll.
I really don't consider HTML a programming language, it is a markup language. It was designed to navigate documents, not write programs. The various attempts to write programs with HTML are really nothing more than glorified hacks and have significantly slowed down and in some cases reversed progress in good software engineering practices. This is the main reason that to this day users just shrug their shoulders and chuckle when a web site crashes. Flash was the first 'web' programming environment that came close to adhering to any kind of modern software platform and Silverlight is the first platform that I would consider state of the art in terms of good software engineering methodology (and I am definately not a Microsoft fan). The fact that Microsoft appears to be waffling on their Silverlight support in favor of HTML5 and JavaScript is really annoying.
-
By using span and css?
robert.osterlind wrote:
By using span and css?
But then you are just adding extra tags solely for the purpose of applying bold and/or italics? Read 'Introducing HTML 5' by Bruce Lawson and Remy Sharp. They state that b and i tags are used precisely for bold and italics that will not receive emphasis from a screen reader. Adding extra spans and divs just leads to bloat and added complexity.
-
Interesting. My preference is WPF > Silverlight > Windows Forms > ASP.NET. I have found WPF to be way more powerful/flexible than Windows Forms.
-
May the lord preserve us from evangelistic religious fanatics. How, pray, would you go about adding bold or italic text that is not to be stressed by an electronic voice reading the page?
I wanna be a eunuchs developer! Pass me a bread knife!
Mark Wallace wrote:
How, pray, would you go about adding bold or italic text that is not to be stressed by an electronic voice reading the page?
Just curious: Why exactly would i want that? I mean, isn't the purpose of a screen reader to express exactly a given text with all its information? I just don't know any situation in which i would emphasize something that is written which should not be stressed when it's expressed via speech.
-
A thought just occurred to me (hey, you shut up, it happens on occassion!). I assume that most developers have had some experience with HTML. I'm not sure why; it just seems like a given to me (however unjustifiable that assumption may be). That may be more true of developers who post in the Lounge, considering we are exposed to HTML regularly. However, I am curious... how many of you know developers who don't know at least some basic HTML? If you are reading this, Chris, might be a good topic for a poll.
I don't know HTML. Oh sure, recently I've had to learn a tiny bit. Find a programmer with more than 15 years experience, and it will increase the odds they don't know any HTML. That web thing is a recent phenomenon. I spent half my career before there was a world wide web. No HTML at all during all that time, and yet we managed to find something to do. You can do backend work without knowing or needing to know HTML. You can do embedded work without needing to know HTML. You can do systems work without needing to know HTML. You can do kernel work. In fact, most of the work that actually requires you to know HTML is kinda lightweight. I'm just sayin...
-
robert.osterlind wrote:
By using span and css?
But then you are just adding extra tags solely for the purpose of applying bold and/or italics? Read 'Introducing HTML 5' by Bruce Lawson and Remy Sharp. They state that b and i tags are used precisely for bold and italics that will not receive emphasis from a screen reader. Adding extra spans and divs just leads to bloat and added complexity.
How is it more bloat to add a span than a b or i tag?
-
How is it more bloat to add a span than a b or i tag?
<span class="italics">italicize this</span> .italics {font-style:italic} vs. <i>italicize this</i>