Slashdot Mirror


User: NineNine

NineNine's activity in the archive.

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

Comments · 4,658

  1. Porn sites? No way! on Internet Firms Launch New Web Rating System · · Score: 2

    Porn sites would utilize this? Huh? the purpose of a porn site is to get as many visitors as humanly possible to earn money. Why in the hell would any sane porn site owner voluntarily do something that will REDUCE the number of visitors coming to his/her site? No. Porn sites will NOT use this system.

  2. Re:"Open Monopoly" should really be called... on Software "Open Monopoly" · · Score: 1

    If someone tried to raise their IT consulting rates because "Apache is the only game out there," someone else would jump in with all the knowledge for half the price, and the problem would be solved.


    You're assuming that everybody values their time and knowledge at $0. That's not true. I don't care how much competition there is, if consulting rates for what I do go down below a certain level, that's it. I'm out. I'll go do something else. You ALWAYS have to pay for expertise, unless you want a legion of high school kids running your IT departments.

  3. Re:Why Wireless? on AT&T Wireless Drops Fixed Wireless · · Score: 1

    How very idealistic of you. But, how, exactly, would a non-profit ISP do any better than all of the mom-and-pop ISPs who have gone under, and even the big ones that actually know what they're doing? Screw nonprofit. If you think that you can do it better, than do it, and walk away with a personal fortune. If you can't do any better, than shut your yap, please.

  4. Why buy an Xbox at all? on Crashing Xbox Kiosks · · Score: 2

    What's the point of a computer in a console? If I wanted better games with better graphics, but didn't mind fighting with configuration, hardware specs, blah, I'd just play a computer game. A console is for those of us who want to smoke a bowl, grab a bag of Doritos, and veg out in front of the TV. It's designed to be FUN. To me, dealing with a hard drive, OS, etc. is exactly what I DON'T want from a game system. Screw that. All I need from my console is a place to put the CD/cartridge in, and a power button. Anything else is to damn complicated. I'll stick with the PS/2. Remember: "Puff, Puff Give!"

  5. You're not going to find anything on Opposing Open Source? · · Score: 1

    The truth is that Open Source is a religion. Those who love it, write about it and preach every second they have. Those who don't care, quite honestly, don't care. I don't write open source code, I won't write open source code, so why would I waste my time trying to convince others NOT to use Open Source? I have plenty of work. I have plenty to do without proselytizing AGAINST Open Source.

  6. It's simple on Opposing Open Source? · · Score: 1

    Very simple. Developers generally don't get paid to develop Open Source. There are millions and millions of developers (like myself) who don't code for free. That's a big negative.

  7. Where's the Gartner Group? on Linux Kernel Bugs · · Score: 1, Troll

    Well, where's the Gartner Group proclaiming that people should immediately switch from Linux to another platform?

  8. Re:Procmail on EFF speaks out against MAPS · · Score: 1

    Procmail is not for the uninitiated. The uninitiated should just get a Yahoo Mail account which does an exceptional job of stopping spam.

  9. Who's bandwidth?? on Neighborhood Area Networks? · · Score: 1

    NAN's are assuming that there's a local super-geek that wants to give up his bandwidth, and run a server all of the time. That's not going to happen all that much. Plus, NAN's only work in cities or very tightly clustered neighborhoods. That's irrelevant for most people in at least the US.

  10. Slashdot is a terrorist organization! on Gilmore Commission Recommends Secret 'Cyber Court' · · Score: 1

    Slashdot is a terrorist organization. The link to the article for this story was a web server for the US House of Representatives, and since it's been Slashdotted, that constitutues an "attack". Looks like Taco should be expecting a knock at his front door by some men in suits.

  11. Re:does not apply.. on Microsoft: The Gatekeeper of the Internet · · Score: 2, Funny

    How many Linux users are going to buy clothes from L.L. Bean or Chadwick's?


    Don't most of them buy clothes from K-Mart and the Salvation Army, anyway?

  12. Re:if we don't do it on the moon first... on Goldin to Retire from NASA · · Score: 2

    most of these programs required no more than $100M to survive, but couldn't get even that, at a time when our gov't spends that much every day dropping bombs on empty "terrorist training camps".

    Let's make the world a safe place before we go off wrecking other planets/moons, etc. Imagine what those nutbags could to with commercial trips to/from the moon and airtight moon colonies?? It would make 9/11 look like a cherry bomb in comparison.

  13. Re:Bug reduction? on CIOs Band Together Against Paying For Software Bugs · · Score: 1

    their business model assumes they will maintain monopoly status so you won't have anywhere else to go when your subscription is up - so how is there any more motivation under this business model?


    How'd you get to this? With a subscription, there's less invested in the software, so it's EASIER to switch. What monopoly status are you talking about?

  14. Re:The first national bank in Spain doesn't use th on MySQL 4.0 Released · · Score: 1

    . So, you have read one book and think that everyone that doesn't agree to that concrete book doesn't have a clue?


    Actually, I've read many books, taken many classes, and gotten an Oracle certification. But hey, what do I know?

  15. Re:No, no, no on MySQL 4.0 Released · · Score: 2

    Well, I'm not talking about theory. I'm a full-time, professional database developer. I've even got an Oracle cert. It's not just theory. I've seen instances where people who know nothing about databases create a database and treat it like it's an Excel worksheet. No foreign keys, no views, etc. It turns into a real nightmare. Currently, I'm working on converting an old client-server app from a database with no foreign keys. Let me tell you, the app was good, but not PERFECT. Thus, there's a lot of garbage data, and to convert it requires a TON of data massaging. No, I've seen databases created correctly, and those without, and I can say without a doubt that unless you're building a small database for personal use, a DB with no foreign keys is an absolute mess. Hell, what's the point of having a relational database without data constraints? You might as well just create some flat text files and query those through a provider.

  16. No, no, no on MySQL 4.0 Released · · Score: 4, Interesting

    You don't need foreign keys to maintain referential integrity. A proper GUI, among many other things, can enforce this anyway. It is a nice feature, but definitely not needed in a well designed system. Further they slow down performance and I have seen projects where they are not used because of this.



    This is a terrible suggestion. Unless you're developing a tiny application that only you will be using, anybody who doesn't use foreign keys is completely incompetent. I know, it sounds harsh, but it's true. Not using foreign keys is like writing an application with just one long main() procedure. A. You're assuming that only one gui and no users will ever access this database. B. If the GUI isn't perfect, your data is garbage. C. It makes future analysis and upgrades very difficult, if not impossible.

    These can be nice too, but I personally never use them. They are simply not required in any project I've ever seen. Actually I think views are confusing because they mask the real tables. I think this is a style issue more than anything else, YMMV.

    Wow. Views are useful for security, and for performance.

    No offense guy, but you know absolutely nothing about databases. You really should not be giving out advice on them. Pick up a BASIC database theory book and read it. When you're done, read it again. You have a lot to learn.

  17. RIAA: Come get my MP3's on RIAA Wants Right To Hack · · Score: 2

    I dare you.

  18. Re:Are you gay? on Ask Wil Wheaton Anything · · Score: 1, Funny

    Obviously, whoever modded this as "flamebait" has never seen an episode of Star Trek with this guy in it.

  19. Are you gay? on Ask Wil Wheaton Anything · · Score: -1, Redundant

    That's it. That's all I want to know. Are you gay? I know, it's a no-brainer, but still, I'd like to hear it from the horse's mouth.

  20. Re:An RDBMS in Java? on Lutris, Close Source, And The Open Source Community · · Score: 2

    Wow. Talk about clueless. What do you think Oracle is written in?

  21. Nope on Lutris, Close Source, And The Open Source Community · · Score: 1

    Wow. Talk about naive. The moral is very obviously simply don't write code for free. Period. There's absolutely no point in coding for free when you can do the exact same thing and be compensated for it.

  22. Re:The lone cowboy... on Senate Trashes Civil Liberties; House to Vote Today · · Score: 0, Flamebait

    Wow. You are truly stupid. They want to stop people from killing innocent Americans, you stupid sack of shit.

  23. Re:I hope I did my part on Senate Trashes Civil Liberties; House to Vote Today · · Score: 1

    Look, dude. Each Rep and Senator has MILLIONS of constituents. They can't repond to each one. Deal with it. And, just because you're opposed to it, doesn't mean that they are. It's MAJORITY rule, and obviously, the MAJORITY supports this. Deal with it.

  24. Re:Hackers and Cyber-terrorists????? on Senate Trashes Civil Liberties; House to Vote Today · · Score: 1

    First off. Slashdot is about the only place where "crackers" are people who maliciously damage systems and "hackers" are people who "hack" code. That's completely irrelevant in this discussion, also.

  25. Re:The lone cowboy... on Senate Trashes Civil Liberties; House to Vote Today · · Score: 1

    I think that the goal is very simple and very clear: stop terrorism.