Originally posted by: troytime
Originally posted by: Hyperblaze
Originally posted by: troytime
Originally posted by: Markbnj
Originally posted by: Atheus
Originally posted by: tfinch2
Originally posted by: pcnerd37
Considering pretty much everybody with a myspace page can do HTML, I dont think holding a certification in it has any value.
A lot of young people can write HTML because they learn it at school. Where I work everyone can write HTML, including the secretary.
There's got to be a distinction between writing HTML, and being able to code up a page that implements something useful and that works consistently across browsers. I know quite a few people who can use simple batch commands, too, but that doesn't devalue the skills of admins who are very good at complex batch scripts for system management tasks.
word
knowing SOME html != knowing html
everyone at my office knows how to bold, underline and link
they might pretend that they know html, but they wouldn't have a clue on how to actually layout a page
and whoever mentioned myspace kids knowing html should bail out of this topic immediately
i've seen a total of 3 decent looking myspace layouts, and i'm sure those were copied from some myspace template website
I just have an issue with someone knowing how to write HTML to be considered a developer. They are called Web Designers for a reason.
there's a lot of gray areas
i agree that just html isn't really a developer (nowadays. 10 years ago it was a different story)
but just html isn't a designer either
technically speaking, anyone can design a page using html (and css).
Now whether or not it's a GOOD design is a completely different story!
Same as for PHP for example. Extremely easy to code with, however, I've seen code flows (or lack of) which have almost made me puke.
Knowning syntax is one thing, knowing good structure and code flow is entirely different.
Makes the difference between amature, good, skilled, and guru developers.
edit: same with sql statements.
From someone who doesn't know any better, to retrieve a username and password from the user table i'd expect....
select * from user where id = 'whatever'
From someone more skilled I'd expect....
SELECT `username`, `password`
FROM `user`
WHERE `id` = 'number'
although I kinda like using this naming convention myself....
SELECT `vcUser`, `vcPassword`
FROM `tblUser`
WHERE `pkiUserId` = 'number'