Preserved Topic: I love my job. (noise, venting) |
|
---|---|
Author | Thread |
Paranoid (IV) Inmate From: Milwaukee |
posted 01-28-2002 05:59
I'm finishing up my last freelance project before falling completely into the black hole of permanent employment, and I'm working on a site, which must remain nameless, which is possibly the worst-coded thing I've ever seen that still works. There are mailto forms that use <form action="mailto:blah@blah.com"> as their "CGI"... there are pages made with PageMill, pages made with Dreamweaver, and pages made with FrontPage (an old version, judging by the manic-schizophrenic code)... there are bizarre sequences of <tr></tr> tags, going on for half a page... there are "innovative" solutions to traditional design problems, which inevitably create more problems than they solve... it's gotten to the point where I honestly don't know what the original "designer" was thinking. And, Christ Almighty, the design company left copyright notices as comments on some of the pages. It's like leaving an apology note at the site of an embassy bombing. |
Maniac (V) Inmate From: there...no..there..... |
posted 01-28-2002 14:10
quote:
|
Paranoid (IV) Inmate From: overlooking the bay |
posted 01-28-2002 15:08
i discovered dreamweaver code when i checked the code on a friend's site to see what she had done that created a bottom scroll bar even at full screen!! that's when i decided her site would be good for refreshing my html skills! |
Bipolar (III) Inmate From: Canada |
posted 01-28-2002 16:35
Dreamweaver has nice aspects. I made a website for a soccer organization and they wanted me to put the schedule on the internet. So I Went into dreamweaver, made a Huge A$$ table (like 15 colums by 30 rows) then saved it as an html, closed dreamweaver and opened it in notepad and edited it from there. I don't want to waste time writing out all those <table><tr><td> quote: |
Paranoid (IV) Inmate From: Milwaukee |
posted 01-28-2002 17:21
I'm with you, Marf -- data entry in big tables is one thing that I do use Dreamweaver for. But I still use HomeSite's table wizard to lay them out if they're simple, or I do it by hand if they're not. |
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 01-28-2002 22:18
Perfect Thunder: Well as annoying (and pervasive) as DW is you know there is always something worse out there - my personal pet hate is Word 2000. I've now had a number of people asking me to help with their pages exported from WORD2K and the simple answer is no I can't help!! |
Paranoid (IV) Inmate From: Milwaukee |
posted 01-29-2002 21:34
I know exactly what you mean, Emp. The site I'm working on has one (thankfully only one) page exported from Word2K, and it's absolutely bizarre. It saves all the proprietary Word file format stuff as XML, so you get these XML markings in the file that are just strings of numbers... it generates CSS for each text style saved in the document... and THEN it generates old-school table-based font-tag-heavy HTML. It's the weirdest code I've ever seen. |
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 01-29-2002 22:05
PT: Its is bad but I understand why its there - the thing that gets me is people who: |
Paranoid (IV) Inmate From: overlooking the bay |
posted 01-30-2002 14:05
marf - try HTML Beauty @ http://www.max.co.yu/htmlbeauty/ |
Paranoid (IV) Inmate From: Minneapolis, MN, USA |
posted 01-31-2002 17:15
I've had a lot of experience with bad code too. One really nice feature of Dreamweaver is the BBEdit integration (on Mac, on PC it's Homesite integration?). You can have the document open in both programs and it even maintains the selection between programs. So when you have to fix some horribly unbalanced illegal table markup, you can use dreamweaver to figure out which <td> corresponds to which </td> by selecting it in Dreamweaver, then switching over to the editor. |
Paranoid (IV) Inmate From: Milwaukee |
posted 01-31-2002 17:50
Here's the root of my dissatisfaction with Dreamweaver's CSS -- I created a very stylesheet-heavy site for a client, and I sent him the HTML and the CSS together. The HTML referred to the CSS using a commented @import statement, which is a standard practice (correct me if I'm wrong). I didn't use <link rel="stylesheet"...> because I wanted the ability to add spot styles to individual documents, while preserving the imported CSS file. |
Paranoid (IV) Inmate From: overlooking the bay |
posted 01-31-2002 19:06
looks like dreamweaver to me.. all the way to the - table width="105%" - which creates the forever scrollbar at the bottom of the page |
Paranoid (IV) Inmate From: Minneapolis, MN, USA |
posted 01-31-2002 19:07
Ew, yeah. I don't use that DW rollover script, and when it comes to stylesheets, I edit them in DW, but I use PHP to load extra stylesheets depending on the browser. |
Bipolar (III) Inmate From: midair |
posted 02-01-2002 06:50
I have only read some of dream weaver CSS but the most salient difference between tables and CSS is that CSS requires PrePlanning.. I have had to "think ahead" in CSS more than in even the most complex tables..as CSS has 10 ways of doing the same thing but not even 9.5 of those ways may be worthy or correct to use..Some other points 1) a machine works top down..a to b to c..when I get to c, I may realize at point H I have to go back and insert something ..after A, before B... while dreamweaver or any machine will try to "fix" at that point H ... 2) rather than go to p.x and change the codes a bit to include a change, a machine will make another p.y.. identical to p.x..but including something common to both but not stipulated in p.x at its inception.. THESE machine techniques have "worked" somewhat and only bloated the code in table html but CSS is sensitive to "scrambling" and the straight line approach: "insert this here, insert that there" coding in CSS will give what it gets.. scrambled web pages.. I hope this makes sense because..UNLESS.. machines start using standard "templates" I doubt machines are going to be able to ever do CSS without mangling it.. I may be wrong..but that is my take on it.. |
Paranoid (IV) Inmate From: Minneapolis, MN, USA |
posted 02-01-2002 17:50
Well, admittedly I only use CSS for font information, not layout, so I can't comment on DW's higher level CSS support. |
Maniac (V) Mad Scientist From: Long Island, NY |
posted 02-01-2002 17:50
Let's face it. The average person doesn't care how or why the TV works. What they care about is if they can watch Friends. The same thing applies to web design. The average person doesn't care whether the site they are visiting was created by hand or through a bloated editor. Applications such as Dreamweaver and FrontPage are going to be around for a while because it gives those unwilling to learn HTML and CSS the ability to create a website. Not everyone wants to learn how to create the site for themselves. Some people like being able to click an icon on there desktop and have there browser open up. They don't want to know why, thats boring, they want to surf the net, thats fun. |
Bipolar (III) Inmate From: midair |
posted 02-04-2002 16:47
Justah..web pages are big projects.. there is the coding, the content to write, organize and layout, there are graphics to create.. There are so many parts, Yes I would love a WSYWIG to work really well so I didn't have to create the paper before I can do the art..I have to make paper, which is a mechanical process in many ways, time consuming and after a while very repetitive.. I don''t thinks a good web page maker is going to put anyone out of business as the truly creative, the artist, writers, layout designers would have more time to create that part of the page...so my criticism is disappointment.. I really wish an off the shelf editor could free me from writing endless divs or tables..so I could spend more time on graphics and writing.. the fun parts..but I don't think it will happen.. |
Paranoid (IV) Inmate From: Milwaukee |
posted 02-05-2002 00:38
Want to know a secret? Part of my distaste for WYSIWYG editors is my fear that within a few years, they'll make my hard-won hand-coding abilities utterly irrelevant, and then I'll join the ranks of coopers, wainwrights, fullers, paste-up artists, telegraph operators, and stagecoach drivers. |
Bipolar (III) Inmate From: midair |
posted 02-06-2002 04:03
O ... I hope so!! I could spend all those hours creating animations.. graphics, writing really clever content..and developing interactive things and studying programming.. you will not be out of a job..you will just have better , more meticulously crafted content.. Content sells, not coding.. artists will never be out of work on the web..what sells? Content Content Content..not coding..the only difference between good and bad coding is people notice bad coding.. good coding is not what makes a great page..so I am standing in line to buy the first wysiwyg that meets even my minimum standard of good coding.. |
Paranoid (IV) Inmate From: in your head |
posted 02-11-2002 08:33
Whoo...I saw my name! heh.. Thank you C:\ for kind words.. |
Bipolar (III) Inmate From: CA, USA |
posted 02-13-2002 22:23
Agreed Ducati. DW 4.0 makes you learn a lot, especially if you work with design view and code view togeather. I use hand coding only when absolutely necessary. As you said time is money and DW saves MONEY. For me Fireworks works better than photoshop cuz i am not a good designer. |
Paranoid (IV) Inmate From: Milwaukee |
posted 02-14-2002 04:18
I guess this is just a web-code version of the Photoshop filters vs. hand-drawing argument. And most of the same points apply to each side, so I'll just leave it at this. |