Slashdot Mirror


User: InsaneCreator

InsaneCreator's activity in the archive.

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

Comments · 227

  1. Zack and Miri make a videogame on Re-imagined Silent Hill Announced · · Score: 2, Funny

    A re-imagining? With all male cast?

  2. What's a hiskey by-product? on Power In Scotland From Tides and Whiskey · · Score: 1

    Helius Energy to install a power plant fueled entirely by whiskey by-products.

    That's an excellent idea. Raging drunks do have a lot of energy.

  3. Re:Oh, Yes! on Matt Damon as Kirk in Star Trek XI? · · Score: 4, Funny

    Jason Mewes - Mr. Spock

    At least that would mean he could be the first motherf**ker to see new galaxies... Or find a new alien lifeform... and f**k it.

  4. Not that difficult on Earth Sandwich · · Score: 1

    Call me when someone manages to make a moebius strip sandwich.

  5. Re:So, to sum it up on The Truth About Suprnova Shutdown · · Score: 4, Informative

    The scanned letter is just a list of conficated equipment (streznik = server, osebni racunalnik = personal computer) which is to be returned, because the charges against him were dropped.

  6. Re:Coincidence? on Computer Associates Sells Ingres DB Tech · · Score: 1

    Not only that, but a new version of PostgreSQL is also being released in about an hour. Get ready for a database news overdose. :)

  7. extensions on Comparing MySQL and PostgreSQL 2 · · Score: 2, Interesting

    After 4 years of using both PostgreSQL and MySQL, I'd say that one of the biggest differences between them is their extensibility.

    If PG lacks a feature, you have a very good chance of finding a script or an extension which implements equivalent functionality. Materialized views, ordering by different locales and hierarchical queries are some examples of this.

    On the other hand, if MySQL doesn't have a feature you need, you're pretty much screwed.

  8. Not exactly new on Debian GNU/Linux 3.1 (r0a) Quick Tour · · Score: 2, Funny

    Ah, these installer screenshots bring back memories... of RedHat's installer... from 8 years ago.

  9. Not the only remaining ones on Extinct Wildflower Found In California · · Score: 0

    I saw some of those flowers behind my house the other day when I was taking my pet Dodo for a walk.

  10. yeah, that... on PythonChallenge - an Amusing Way to Explore Python · · Score: 4, Funny

    Many people reported that playing the challenge is highly addictive and it is great fun.

    It's even more addictive and fun to express solutions as perl one-liners. :)

  11. Re:Features on Which is Better, Firefox or Opera? · · Score: 1

    XSLT, on the other hand, belongs on the server, not the client.

    This is only true because some clients don't support it. But because such clients are pretty rare in the world of business apps, most of us prefrer to ignore them over doing their work for them and simply list compatible clients instead.

    Uh, you mean displaying the XML source? Get a source editor, man.

    No, I mean building DOM trees with JS and serializing them to XML, without loading large JS libraries or pasting tags together.

  12. Features on Which is Better, Firefox or Opera? · · Score: 1

    Last time I checked Opera (8.0) had these problems:

    - No XSLT support - CSS is not the only stylesheet language out there and FF in IE both support it.

    - No support for building arbitary DOM trees for in-browser XML generation (also supported by both FF and IE).

    - It took seven tries to succesfuly import a certificate. Sometimes it would show up in the cert list, only to disappear after a restart.

    - It has no support for digital form signing. (FF provides crypto.signText function and there are numerous free components available for doing this in IE)

    - When using SSL with cert based authentication, everything got slow. Really sllooowww. It took 30 seconds to load a page over LAN and several seconds for JavaScript events to fire.

    - JS errors are completely useles. They basically say: opps, something went wrong.

    I'd be glad to hear about solutions to the problems listed above, but until then, I'm convinced that FF (and even IE) is a much better choice than Opera.

  13. Dune? on Mars Rover Stuck in a Dune · · Score: 0, Redundant

    Watch out for those sand worms!

  14. I can already see it... on Camel-Riding Robots · · Score: 2, Funny

    Bend it like soccer unit 3500-4X!

  15. Gifts on Paris Hilton Recruited to Publicize Linux · · Score: 1

    I hear they promised her perls and rubys for her services. Either that, or she's been sniffing PHP again...

  16. Re:Question about Key Logging software on Keylogging Used To Catch Bank Crackers · · Score: 2, Interesting

    The early trojans (like NetBus & pals) would copy the passwords from input fields when you typed them in. I'm not sure how things work nowdays, since newer versions of Windows don't allow this anymore.

  17. PHP programmers on Zend Taking PHP In the Wrong Direction? · · Score: 4, Insightful

    Why is PHP become more like Java, when the PHP developer community seems to want anything but that to happen?

    That's because most of the PHP programmers are uneducated writers of throw-away code. They are people who use PHP because they can make dynamic pages without needing to really learn anything; people who mix HTML and SQL; people who never bother to check for errors; people who think register_globals was a great idea, because they didn't have to type "complicated statements" like echo $_POST['somevar']; and the list goes on and on.

    The most common argument I hear against PHP becoming more like Java is that now there are so many new things you need to learn. But this is not due to changes in the language making it harder to write crappy code - that's just as easy as it was before. The main reason for needing to learn new stuff seems to be the increasing number of competent programers in the PHP community who put pressure on the incompetent ones, who in turn pound their little fists on the table and cry that PHP is acquiring too many features from other languages. I'm sorry, but knowing the difference between "if" and "for" statements does not make you a programmer.

    Ripping off Java is probbably the only real chance for PHP to be taken more seriously in the business world. After all, it worked for C#. ;-)

  18. Just disable it on Laptops w/o Trackpads? · · Score: 1, Redundant

    In windows 2000 you can open the device manager and disable any piece of hardware, including the trackpad. I'd be surprised if this wasn't possible with other operating systems.

  19. Re:Move the problem away on High Performance MySQL · · Score: 1

    Interesting stuff. I wasn't aware of such functionality being available under Linux. Thanks to everyone who suggested LVM.

  20. Re:Sometimes MySQL indexes are bad... on High Performance MySQL · · Score: 2, Informative

    Umm, why would you do this?

    Because using an index requires random data access which is more expensive than sequential access. There is a point where doing an index scan takes more time than just going over all the records in a table (example: small tables, condition matches many rows, etc). Any sane query planner should/will choose the faster method.

  21. mysql backup on High Performance MySQL · · Score: 4, Interesting

    I see one of the topics covered is backing up data. Would somebody care to explain how to make a consistent backup of a mysql database?

    Plain mysqldump does not export consistent data across tables. While you could lock all tables for the duration of backup, that's not likely going to be possible if you're aiming for "high performance". Mysqlhotcopy only works for myisam tables and simply tar-ing up data files is just asking for a disaster to happen. So how do you make a consistent backup without setting up a dedicated replication slave for this purpose?

    (No, this is not a troll; I am in fact looking for a good way to back up mysql data on my server)

  22. Re:An important security sidenote on IE Shines On Broken Code · · Score: 4, Insightful

    My first instinct would be that the HTML parsing engine in Internet Explorer was written by a different team of programmers than worked on the rest of the software

    I's say the same about outlook express. Most security holes in OE were due to bad "glue" between components. And if I'm not mistaken, most holes in IE are also caused by bad integration.
    It sure looks like the expert programmers create components which are then bolted together by an army of "learn programming in 24 hours" drones.

  23. Re:We won't see it as version 12.0 on Microsoft Plans New Server Products For Office v12 · · Score: 1

    Along with Windows2000 came Office2000. Along came WindowsXP, and up pops OfficeXP.

    Longhorn Office is probbably next - because your workers are nothing but cattle.

  24. Re:What was number 4? on One Terrible Job: IT Manager · · Score: 4, Funny

    Would that make him a shIT manager?

  25. Nice looking cars on BMW Shows Off World's Fastest Hydrogen Car · · Score: 3, Interesting

    Car companies keep showing us all theese incredible looking prototypes, but why won't they sell us a car that looks the same? By the time a new car makes it to the salons it looks almost exactly like all the other damn cars you can choose from, and attaching a baboon's but to the rear end is considered to be a bold new design direction. yech.