Slashdot Mirror


User: VGPowerlord

VGPowerlord's activity in the archive.

Stories
0
Comments
4,725
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4,725

  1. Family? Ha! on Game Music Concerts Spread Gamer Culture · · Score: 1

    I wish I could get my family to appreciate video game music, but they won't. They refuse to even listen to it, let alone appreciate it.

    Disclosure: I'm the current webmaster of VGMusic.com, and have worked for the site as far back as 1997.

  2. Re:Is it just me or is Slashdot just too opinionat on Lessig On Net Neutrality · · Score: 1
    Oops, should have looked closer at preview, that was supposed to be
    You forgot about the articles on how great Apple's <insert product here> is or how much Microsoft's <insert product here> sucks... sometimes both in the same article.
  3. Re:Is it just me or is Slashdot just too opinionat on Lessig On Net Neutrality · · Score: 1

    You forgot about the articles on how great Apple's is or how much Microsoft's sucks... sometimes both in the same article.

  4. Re:Lets publicize it! on Alan Cox Files Patent For DRM · · Score: 1

    For reference, since I forgot to go back and link them, Title 35 102 a and b both deal with works that have already been known or patented anywhere prior to the filing, in or out of the US.

  5. Re:How is this supposed to work? on Alan Cox Files Patent For DRM · · Score: 1

    It hasn't. However, the moment he tries to use it on one of the large companies, they'll haul the matter in to court, most likely bankrupting Mr. Cox in the process.

    Or did you forget that these are filthy rich companies we're talking about?

  6. Lets publicize it! on Alan Cox Files Patent For DRM · · Score: 1

    Good idea, lets publicize a patent that might have been able to slip past Apple, Microsoft, etc...

    Except that, by bringing it to the public limelight, you've just guaranteed that the aforementioned companies will attempt to get the patent thrown out due to section 102 a or b of Title 35 of the US Code (Patents).

  7. Re:Yes. on Is A Bad Attitude Damaging The IT Profession? · · Score: 1

    Psst... the year changed when you weren't looking. It's 2007 now.

  8. Re:No. on Is A Bad Attitude Damaging The IT Profession? · · Score: 1

    Minesweeper? What do you think this is, the 90s?

    Everyone knows it's World of Warcraft these days!

  9. Mod parent up on Inside the iPhone — 3G, ARM, OS X, 3rd Partyware · · Score: 1

    Damn, no mod points on me... and I already commented to this article, so even if I did, I counted use them.

  10. Re:Why are you all posting here... on Inside the iPhone — 3G, ARM, OS X, 3rd Partyware · · Score: 1

    Creative Labs is a small player? That's news to me, considering that they're extremely well known in the PC market for the Sound Blaster line of sound cards.

  11. Re:to all the complainers on Inside the iPhone — 3G, ARM, OS X, 3rd Partyware · · Score: 1

    I have to disagree. I have yet to read an article on roughlydrafted that isn't intentionally misrepresenting data (I originally put facts there, but they aren't facts if they aren't true) to make Apple look better.

    For a good example, go read the OSX vs. Vista articles.

  12. Re:Free Coasters! on Sun Is Giving Away Solaris 10 DVDs · · Score: 1

    For a limited time only, order one coaster and get a DVD case absolutely free*!

    * Offer not valid in countries whose names contain vowels.

  13. Re:It's the only way on Sun Is Giving Away Solaris 10 DVDs · · Score: 1

    Nice Freudian slip. :D

  14. Re:I wonder on Sun Is Giving Away Solaris 10 DVDs · · Score: 1

    er... three. I apparently can't count today.

  15. Re:I wonder on Sun Is Giving Away Solaris 10 DVDs · · Score: 1

    You forgot two:

    x. Any comment mentioning Firefox in a bad light will be modded Flamebait or Troll.
    y. Any comment mentioning Internet Explorer in a good light will be modded Overrated or Troll.
    z. Any comment mentioning Firefox in response to an IE or Opera article, but isn't subject to x above, will be modded Interesting or Insightful.

  16. Re:Linux ripped it off? on FreeBSD 6.2 Released To Mirrors · · Score: 1

    Only if you ignore that FreeBSD is a fork of 386BSD, which is itself a fork of 4.3BSD (or more accurately Net/2).

  17. Re:Sorry about that on Netscape Dumps Critical File, Breaks RSS 0.9 Feeds · · Score: 2, Informative

    They removed every file, causing a spike in 404s for all of them.

  18. Re:email designers? on New Outlook Won't Use IE To Render HTML · · Score: 1
    I don't get why people want to see plain text emails when they can be more expressive with simple styling.

    Simple, because it never stops with simple styling. People go "WOW! I can put purty graphix in muh emails! And tables! and music!" and down the slope we go.
  19. Re:What launch? on What is Apple Without Steve Jobs? · · Score: 1

    What do Macworld and Cisco's iPhone(tm) have to do with each other?

  20. Kirk died... on Shatner Leaks Trek XI Details · · Score: -1

    Didn't Kirk get killed off in Star Trek VII (Generations)?

  21. Re:6 posts and still no soviet russia line on AMD Aims At New Standard for Motherboards · · Score: 5, Funny

    In soviet russia the motherboard POSTs you!

    Happy now?

  22. Re:FIX CSS ALREADY on Firefox 3 Plans and IE8 Speculation · · Score: 1
    Also, doctypes aren't "valid" or "invalid", they either trigger strict mode or quirks mode. Saying that your doctype is valid is meaningless.

    Just because browsers do not implement real DTD checking yet does not mean valid doctypes are meaningless. We call this feature "not adhering to the standard."

    Syntax checkers, for example, do recognize DTDs.
  23. Re:Tool safety on PHP Application Insecurity - PHP or Devs Fault? · · Score: 1

    Before anyone accuses me of straw-manning this, I made mention of display_errors and php.ini-dist as well as php.ini-dist and shared hosting in my last post.

    People who use shared hosting systems have one of three problems:
    1. The errors are shown for everyone to see. (display_error on)
    2. The errors are hidden in the syslog or error_log where they can't see them. (display_error off, log_error on)
    3. The errors are thrown away completely. (display_error off, log_error off)

    The other catch is that packaging systems tend to preinstall php.ini-dist as php.ini rather than using php.ini-recommended. This means that, if you just install it from apt without checking the ini, you get the one with behavior that isn't recommended by default. Which is, in itself, a problem.

  24. Re:mysql_escape_string, mysql_real_escape_string, on PHP Application Insecurity - PHP or Devs Fault? · · Score: 2, Informative
    To the first part:
    When you're using like statements, you will have to pre-process things, yes. Most notably, escaping % and _ plus any other rules you want to implement (* to %, ? to _, explode on spaces with multiple LIKE statements to search on keywords, etc...).

    SELECT * FROM myData WHERE CONTAINS (column, 'FORMSOF (INFLECTIONAL, ?)')

    Parameters are intended for user input. I certainly hoping you aren't allowing users to type functions in directly...

    As for IN, I build up the placeholders using something like...
    $placeholders = array_fill(0, count($search_params), '?');
    $placeholders = implode(', ', $placeholders);
    $query = "SELECT last_name, first_name FROM patients WHERE disorder IN ($placeholders) ORDER BY last_name";

    Then bind the parameters when running the query. (I use ADODB for PHP.)
  25. Re:You are all lazy programmers! on PHP Application Insecurity - PHP or Devs Fault? · · Score: 1

    P.S. If you don't have a call to get_magic_quotes_gpc() in your program somewhere, you don't have the ability to write good PHP code.