Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 21

Thread: Content Management Systems

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Orca Whisperer
    Join Date
    Oct 2009
    Location
    Buffalo, NY
    Posts
    22,593
    Kelli, that's what I thought you would do. Your app requirements seem pretty "out there" (as in, not something everyone and their mother is doing, hence not likely to have a pre-rolled package).
    Big Giant Meteor 2020 - We need to make Earth Great Again

    http://www.coreyreichle.com

  2. #2
    Banned
    Join Date
    May 2009
    Posts
    9,698
    Quote Originally Posted by KC2UGV View Post
    Kelli, that's what I thought you would do. Your app requirements seem pretty "out there" (as in, not something everyone and their mother is doing, hence not likely to have a pre-rolled package).
    Pretty much, yes. My biggest headache is keeping up with whatever new BS changes are made to browsers (usually IE) that don't conform to any standards. It gets ridiculous having to write different code for three or more browser standards. I like doing something ONCE, not two, three, four, five times. I stopped coding for Windows for that very reason. Software that ran on Windows 95 should run on Windows 7. I can understand it not working the other way around, but for Chrissakes... /rant

  3. #3
    Orca Whisperer
    Join Date
    Oct 2009
    Location
    Buffalo, NY
    Posts
    22,593
    Quote Originally Posted by N2KKM View Post
    Pretty much, yes. My biggest headache is keeping up with whatever new BS changes are made to browsers (usually IE) that don't conform to any standards. It gets ridiculous having to write different code for three or more browser standards. I like doing something ONCE, not two, three, four, five times. I stopped coding for Windows for that very reason. Software that ran on Windows 95 should run on Windows 7. I can understand it not working the other way around, but for Chrissakes... /rant
    Code for standard CSS and HTML. Use exclusion style sheets for the IE workarounds :)
    <!--[if IE]><link href="/ie.css" rel="stylesheet" type="text/css" /><![endif]-->
    Big Giant Meteor 2020 - We need to make Earth Great Again

    http://www.coreyreichle.com

  4. #4
    Banned
    Join Date
    May 2009
    Posts
    9,698
    Quote Originally Posted by KC2UGV View Post
    Code for standard CSS and HTML. Use exclusion style sheets for the IE workarounds :)
    <!--[if IE]><link href="/ie.css" rel="stylesheet" type="text/css" /><![endif]-->
    Yeah I hear ya. That's exactly what I'm talking about. There's actually three different builds. One for Firefox, Opera and company, one for IE 5 and 6, and another for IE 7+.

    I also use a LOT of Javascript and AJAX, so that makes things even more interesting.

  5. #5
    Orca Whisperer kf0rt's Avatar
    Join Date
    Jan 2007
    Location
    Denver 'burbs
    Posts
    11,068
    But, but... Microsoft's gonna make the Web more beautiful! :vomit:

    http://www.beautyoftheweb.com/

  6. #6
    Orca Whisperer n2ize's Avatar
    Join Date
    Dec 2007
    Location
    Crestwood, New York
    Posts
    33,899
    Good luck. Last time I did Website Programming was using Perl along with whatever Perl module it is that provides an easy OOP interface between the browser screen and MySQL. Never got into Ajax or javascript so I'm out of touch with how it's all being done these days. However, I've noticed some of my Perl driven apps are still up and running. They're not pretty but they've stood the test of time I suppose.
    I keep my 2 feet on the ground, and my head in the twilight zone.

  7. #7
    Conch Master W2NAP's Avatar
    Join Date
    Mar 2008
    Location
    W2NAP
    Posts
    5,942
    i hated perl. tryed that long long long ago.

    rather deal with php lol
    I AM THE VOICE OF THE VOICELESS!

  8. #8
    Banned
    Join Date
    May 2009
    Posts
    9,698
    Quote Originally Posted by W2IBC View Post
    i hated perl. tryed that long long long ago.

    rather deal with php lol
    I wrote a database for a sales company back in the late 90's using Perl and VB6. It used flat files to store data and they had like 50,000 items of office supplies, with pictures. The website was automatically updated by the warehouse database which was the VB app. It was pretty cool. I should be a friggin' millionaire. I have no clue why I'm not. Oh well.

  9. #9
    Banned
    Join Date
    May 2009
    Posts
    9,698
    Quote Originally Posted by N2KKM View Post
    I wrote a database for a sales company back in the late 90's using Perl and VB6. It used flat files to store data and they had like 50,000 items of office supplies, with pictures. The website was automatically updated by the warehouse database which was the VB app. It was pretty cool. I should be a friggin' millionaire. I have no clue why I'm not. Oh well.
    Heh, just found that code project (the Perl side) on my Netbook in the web development section of my Apache directory. I forgot how many modules I wrote for that. Dozens. There's probably 100,000 lines of Perl code. I made $10,000 on that job. Took me about two months.

  10. #10
    Banned
    Join Date
    May 2009
    Posts
    9,698
    ....
    Last edited by N2CHX; 09-24-2010 at 05:29 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •