Slashdot Mirror


User: metarox

metarox's activity in the archive.

Stories
0
Comments
31
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 31

  1. Good Read on SimCity 5: How Not To Design a Single Player Game · · Score: 1

    Well I had already skipped over buying this over the DRM, Origin, DLC crap and the price but reading this really opens some eyes in that they really seemed to have built SimFarmVille http://arstechnica.com/gaming/2013/03/simcity-impressions-we-waited-ten-years-for-this/

  2. Teen Open House Parties on Canadian Copyright Board To Charge For Music At Weddings, Parades · · Score: 1

    Can't wait for them to crack down on teen open house parties!

  3. Re:So PvP delay and a new skill and rune systems on Diablo 3 To Be Released On May 15th · · Score: 1

    It's actually 6 active skill slots + 1 potion slot.

  4. Re:Programmer != Engineer, idiot. on Career Advice: Don't Call Yourself a Programmer · · Score: 1

    Not in the province of Quebec, you can't call yourself engineer or pretend your are one. If caught you will be fined.

    http://www.peo.on.ca/enforcement/Quebec_MS_April2004.pdf

  5. Re:This is ridiculous! on GNOME and KDE Devs Wrangle Over 'System Settings' Name · · Score: 1

    Is there a law that says software has to get fat over time?

    Do you need a car analogy on this?

  6. Re:Good Lord. on Canadian Theatre Chain Sued for Abusive Search · · Score: 1

    We have the "blamecanada" tag, maybe we need the "blameusa" tag now =]

  7. Re:They Forgot One! on Location-Based Search Was Patented In 1999 · · Score: 1

    Well then we're all safe in at least 10 provinces in Canada! Don't know about the other 3 territories though.

  8. Why not a dual drive on Elite Won't Replace Premium or Core Skus · · Score: 1

    Hell, I'd release one with a dual drive able to read both formats and be done with it!

  9. Re:Better late than never... on Sony Exec Says Luxury Could Be PS3's Downfall · · Score: 1

    That's why I'm waiting for the Zelda bundle at less than 200 which will be in a year or two (hopefully the console will be easier to find by then!)

    I got the Cube with the 4 Zelda game disc back in the days.

  10. Re:Screw You... on U.S. Senators Pressure Canada on Canadian DMCA · · Score: 2, Informative

    Well Diebold is on it's way out as posted by a previous story. Could that solve some of the problems?

  11. Re:Take PHP outside web pages altogether. on March To Be Month of PHP Bugs · · Score: 1

    Actually, that bug is resolved in PHP 5.2.1

    http://bugs.php.net/bug.php?id=35106

  12. Re:even if... on March To Be Month of PHP Bugs · · Score: 1

    I'd use a define( 'APP_PATH', value ), instead of a variable, at least it can't be overridden by GET/POST/REQUEST variables directly if a bright guy enables global vars.

  13. Suhosin Extension on March To Be Month of PHP Bugs · · Score: 1

    On a side note, anyone know where I could find that Suhosin extension compiled as a binary (DLL) for windows ?

  14. Patient Enough on The Wii - Is the Magic Gone? · · Score: 1

    I'll be waiting for the first batch with defects to go through. And I'll also wait until enough interesting games come out. And finally, I'll wait until they package a game with it (I bought the GC with the 4 Zelda games special disc).

    Until then, please continue to fight for them =]

  15. Re:Me too. on Bosworth On Why AJAX Failed, Then Succeeded · · Score: 1

    In IE and Firefox you can request (through a javascript call) that the user authorize a javascript connexion to an external domain. It will prompt the user with a dialog asking if he accepts. Again in IE, if you say yes, it's for all connexions to that domain, in Firefox the user has to explicitly check the box (always allow connexions for this domain) else the box will reopen again on the next connexion try. You can also use your server as a proxy to gather all the info from other servers before rerouting them, but that just increases your server load (you could cache it to help).

  16. Re:yup, php is JUST LIKE visual basic on Microsoft Partners With Zend · · Score: 1

    No, the default PHP5 behavior is all by reference If you want a copy you have to explicitly use the clone operation on the object to get a copy. http://mjtsai.com/blog/2004/07/15/php-5-object-ref erences/

  17. Re:Lack of PHP Security in 5 sentences, Not 500 Pa on Pro PHP Security · · Score: 1

    Think you need to wake-up, since PHP 5 there is the PDO extension set which supports lots of DBs and there is also the MySQL(i) extension which stands for "improved" that has prepared statements. But you are right that PHP security doesn't hold in 5 lines, it's a matter of getting something generic and right once and for all and propagate that in the tutorials to the noobs that start using it every day.

  18. Re:Solution for PHP programmers on SQL Injection Attacks Increasing · · Score: 1

    That's why some people will override PHP's default session handling and implement their own layer with possibly the addition of encryption to it so tampering can't be done. With a simple CRC check added to it before encryption you can prevent (if you are paranoid) nasty things especially if you are on shared hosting where someone could try to alter the data.

  19. Re:Solution for PHP programmers on SQL Injection Attacks Increasing · · Score: 1

    htmlentities() is another alternative that parses all HTML characters that are meant to be represented as and it supports the encoding of your choice.

  20. Re:Is bootup time really that big of an issue? on A Magnetic Memory Alternative to Hard Disk · · Score: 2, Interesting

    you could probably get your computer to sleep lowering power consumption to very low values and on a single key-press having everything restored almost instantly.

  21. Passwords on FBI Password Database Compromised by Consultant · · Score: 2, Insightful

    I can't believe that they don't even have some sort of verification that the passwords aren't common things. Heck even here, when you try to change your passwords everywhere there are so many restrictions that it can't be a dictionary word or easy to guess. Simple rules - at least 1 CAP letter (means at least 1 letter) - at least one symbol (@#.,& etc.) - at least 1 number - at least 8 chars long How hard is it to enforce this.

  22. Re:PHP quality on YouTube Killer (Media Portal w/ Revenue Sharing) · · Score: 1

    I tried to find the source of the benchmark I read this from, but I can't find it anymore. But basically, there was a pretty significant lost of time if used alot in some code because whether there is a triggered error or not, the code has to go through some iterations because of the @. In a loop it could reduce performance depending on how much it is used. I agree that if you use it only for one line it really doesn't make a difference (usually performance hit is the DB connection more than PHP execution time) but for people wanting to optimize like hell, I would avoid it. Also, it suppresses errors even fatal ones, so your code could generate a fatal error, stop executing and you wouldn't know why because the error is suppressed completely.And no basic error checking makes for sloppy code in the long run.

    Don't worry, I'm an Ada/C++ developer (PHP is for playing on spare time/projects)

  23. Re:PHP quality on YouTube Killer (Media Portal w/ Revenue Sharing) · · Score: 5, Informative

    The usage of @ degrades performance drastically, you're better off shutting the errors off with ini_set( 'display_errors', 0 ); and having everything go to the log file. OTOH a minimal amount of error checking wouldn't be bad either so you can customize the error messages triggered.

  24. Re:spacious? on Sony Pins Hopes on E-Distro · · Score: 1

    yeah but they keep saying it's not a console it's a Computer!!! =]

  25. Re:I've heard that one before... on Moore's Law Staying Strong Through 30nm · · Score: 1

    What you miss here is that the companies will milk the cow at every level they can to make their life longer. I'm pretty sure they could just jump down to 45nm or even 30nm right away, but hey, if we do that, after everyone has the best, nothing more to buy.