Jump to content

Daniel0

Staff Alumni
  • Posts

    11,885
  • Joined

  • Last visited

Everything posted by Daniel0

  1. Run netstat -abo as an admin. -a shows all connection and associated ports. -b shows which executable file that is associated to the connections. -o shows the PID of the process associated to the connections. I guess that'll give you the answers you need.
  2. Do you think you could find that topic again? I can't get my sound working either after installing in 7.10. It's really annoying me.
  3. You could create a click heatmap. Then you'll know where people clicks the most.
  4. FYI, VMware is a company, not a product/program thus you can't try/use VMware just like you can't use Microsoft or use Canonical. VMware creates products such as VMware Workstation, VMware Server, VMware Player etc.
  5. VMware Player is free.
  6. Is this it? http://www.google.com/codesearch?hl=en&q=+c99shell+show:ylMYDgivMgc:_qEh5QkJxGQ:O6mB0IitiOo&sa=N&cd=1&ct=rc&cs_p=http://herozero.wordpress.com&cs_f=2007/06/27/c99shellphp-v10/-001#first
  7. I've been able to do a Gentoo install using the GLI, but then I couldn't figure out how to get my wifi to work. What kind of problem?
  8. I'd do echo <<<EOF <div>some more html tags, saome values from the db</div> <div>some more html tags</div> <div>some more html tags</div> <div>some more html tags</div> EOF;
  9. Last time I checked Gentoo does have a live cd with GUI installer.
  10. Then who is going to pay you?
  11. Number two. That way you can select some of the data without selecting all. Also you don't have to use resources to serialize and unserialize the objects all the time.
  12. I'll use whatever eases my work as long as it doesn't have any significant effect on performance (which an HTML class shouldn't have unless it's very poorly written).
  13. Aha... this must be a sign meaning "go to bed, it's late"... :-\ Works now (only in FF though (probably Opera as well, haven't tested)). Then everything is as usually...
  14. Even if you do work freelance then you'll still need some clients who in the end will have the final word.
  15. Oh, yes, that's correct. Still doesn't work the way a table would though. It does make it display something in Firefox now (before it was all blank) though, but it's just 1 2 3 4 instead of 1 2 3 4
  16. You can't do that. At least it doesn't work for me. <style type="text/css"> .table { display: table; } .tr { display: table-row; } .td { display: table-column; } </style> <div class='table'> <div class='tr'> <div class='td'>1</td> <div class='td'>2</td> </div> <div class='tr'> <div class='td'>3</td> <div class='td'>4</td> </div> </div> does not give the same result as: <table> <tr> <td>1</td> <td>2</td> </tr> <tr> <td>3</td> <td>4</td> </tr> </table> Besides, even if it did work then you are essentially still designing in tables and therefore making it more difficult for yourself to maintain. Also, another example of semantics could be the semantic difference between <ul> (unordered/bulleted list) and <ol> (ordered/numbered list). Take for example a list of favorite movies in each list. With an unordered list it will be implied that the movies are in no specific order, i.e. that the first listed movie is not necessarily better than number two. On the contrary with an ordered list the first listed movie is better than the one listed as number two. The reason why it makes sense to use a list for a navigation menu is because that is essentially what it is, a list of links.
  17. Ever heard of viral marketing?
  18. You could also have deleted the desktop.ini file.
  19. Well, you have another form outside the PHP code...
  20. It's not OS independent when it has been compiled.
  21. On my old laptop I had Ubuntu installed as well. I like it very much - no problems. Two weeks ago I got a new laptop (old one got stolen >_>) and since I knew that 7.10 would be released within short time I waited. I downloaded it, installed it and everything seemed to work, but it does for some reason refuse to recognize my sound card and no sound means no Ubuntu for me.
  22. The list approach is the best way because (and I repeat myself) it is more semantically correct. Do display it next to each other you could use display:inline;.
  23. THAT wouldn't make it easier for screen readers, but it is more semantically correct to use a list rather than a table. You will benefit from being able to change the way it looks easier though. Also, if we take semantics in linguistics, then consider if you decided to call tables for dogs, planes for grass, computer for car etc. It is just not right!!
  24. No offense, but you do clearly NOT understand it from technical and logical standpoints. That's why people start using analogies.
  25. You can, but if you use tables for presentation then you haven't separated content from presentation. You can, but if you look at the HTML source then you'll see that it remains the same. It's only the CSS that changes. You can, but what about the people without Javascript. Actually I wasn't talking about the rollovers but the design in general. It would take much more HTML to do it in tables. -- I don't think you got the point of most of what people in this topic said. Re-read them
×
×
  • Create New...

Important Information

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.