Jump to content
xisto Community

Tyssen

Members
  • Content Count

    1,159
  • Joined

  • Last visited

Posts posted by Tyssen


  1. Sorry Tyssen, I disagree. I've seen the damage it can do.

    Maybe I should've said simplistic view. In my opinion people who do damage to themselves with drugs already have that 'loser' inside them. I know/have known plenty of people who have used drugs but no-one I've known has ever had a problem with them and very few of them I would consider losers. The sort of people I'm talking about include successful business people and parents.

    Certainly there are plenty of losers who use drugs and people for whom drugs have made them bigger losers than what they already were, but to say that every person who has ever used drugs is a loser is just too much of a blanket statement. For instance, this survey indicates that the percentages of people who have used drugs in their lifetime is nearly 40% in both Australia & the US. Can you honestly say that you think nearly half the population of your country (let's assume Canada isn't too far off those stats as well) are losers?

  2. The dog IS gonna pee all over the placeIt is NOT gonna learn everything you try to teach it...
    It will take your stuff at two a clock at night and chew on it
    It is gonna whine all night so you cant sleep before your exams
    it is NOT gonna be the perfect dog who runs beside you on the fields on a shiny day
    But it IS gonna run away and not come back when you take of the leash
    and you ARE, depending on where you live, gonna spend a lot of time in the cold rain with it...
    It have to pee every morning and evening when you're cold and tired and in your PJ
    And it CAN'T be home alone for long without ruining stuff
    AND THE LIST CONTINUES ANOTHER 10 PAGES!

    It should also be pointed out that most of the behaviour on that list doesn't last for ever (well, not for all dogs anyway).

  3. Whether you believe in a "Christian" God, or any God at all, there is an influence there which will impact our opinions which has as its root the religious beliefs we hold, so I suspect, as does Tyssen, that it will be nearly impossible to dis-allow Religion from this debate.

    That wasn't actually what I was hinting at. There's so many obviously religious people on this board that I felt sure that it would be too much for someone to resist bringing it up.

  4. So anyway, I think it would be better to pick an environment and stick with it - either IIS on Windows with ASP, or Apache on Linux with PHP.

    It doesn't have to be that way. Install something like XAMPP on Windows and you can run PHP under Apache and ASP under IIS. You have to stop and start each server each time you swap from one to another, but other than that they work just fine on the same machine.

  5. Hmm... I see your concern but I don't see a way out. Perhaps you can direct me to someplace that explicitly details potential problems with relative positioning all the way? I've used it to some success so far, that's why I designed the script that way. Would you mind discussing the idea at greater length with me, if the need arises?

     

    The problem with relative/absolute positioning is that CSS newbies often don't understand the concept of 'positioning context' whereby an element takes its positioning coordinates from the nearest parent element with positon: relative/absolute set. In the absence of a parent with that, it defaults to the body.

     

    So, speaking from my experience on CSSCreator, creating CSS layouts full of positioning is likely to cause more problems than it solves. Positioning requires that both the element and a parent element have position: relative/absolute set. If you don't know that and you edit position:relative out of something cos you think it's not needed, your layout can go haywire. I've seen enough people posting problems on there do do with creating layouts in Dreamweaver's design view mode which don't work to know that it is a real concern.

     

    Using margins/padding only involves setting the properties on the element in question. It doesn't require a setting on the parent element for it to work.

     

    You also mention that you hope experienced CSS coders will use it too. Well I reckon it's a fair bet that if the code that is turned out uses relative positioning in favour of margins, that it won't be held in too high a regard.

     

    EDIT: I've just given it a go and I'm afraid you've got a long way to go. Choosing the 'without stripping option' gave me back HTML code full of tables! And choosing the stripping option simply replaced all the tables with divs at the same time leaving table-specific info in place (cellpadding etc.).

    And the produced code has two other major flaws:

    1. It produces inline styles attached to each HTML tag which is pretty much pointless. The idea behind CSS is to separate content from presentation. Using inline CSS like that is no better than using font tags.

    2. It turns everything into divs! Even tags that it shouldn't like <select> etc. (Using the 'stripping' option actually removes perfectly valid HTML like <option> etc.) You can't turn everything into a div. There's all the other tags like h1, h2 etc., p, ul, li, ol, blockquote etc. that should be used.

     

    I hate to sound harsh, but from the one test I've given your app, I wouldn't recommend that you release it for public consumption.


  6. Their culture is not built upon the same principles as Western civilization, so their purposes and motives behind this technology must be veiled and nefarious.

    While I'm not necessarily disagreeing that they're out to cause trouble, to say that they're nefarious just because they're not Western is the sort of attitude that's causing the Western world so much trouble with the Middle East these days.

  7. Window moving/resizing scripts are, in my opinion, one of the rudest and most annoying things that javascript can do. I've got my window set the way it is for a reason - cos I like it that way. I don't want the designer of a site I haven't even seen yet to change my window without even asking me. It's like me walking into someone else's house and moving their furniture around.


  8. You need to set up your machine to run as a web server. If you've got XP Pro, you can do it under IIS - just add your script to a folder in Inetpub/wwwroot/ and then in your browser go to LOCALHOST/nameOfTheFolder/nameOfFile.php. (If IIS isn't already installed, go to Control Panel/Add Remove Programs/Add Windows Components.)
    Alternatively, you can download something like XAMPP and install PHP, Apache and MySQL on your machine.
    Edit: BuffaloHelp beat me to it.

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.