Slashdot Mirror


User: rqqrtnb

rqqrtnb's activity in the archive.

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

Comments · 111

  1. Hydrogen is a nonsensical proposition on Combined Gasoline/Hydrogen Fuel Station Opens · · Score: 2, Insightful

    Don't be fooled. The Oil Junta loves to tell you that we must invest in hydrogen now.

    Experts all agree that these investments are nonsensical, since hydrogen is not a transitional fuel, it's way too futuristic, and we must first go via biodiesel.

    By proposing hydrogen NOW, oil criminals can go on with their business and tell us 20 years from now that the Hydrogen experiment failed.

    Meanwhile, they refuse to develop REAL alternative fuels.

    WE MUST EXPOSE THE FRAUD BEHIND THE HYDROGEN PROPOSITION.

  2. It's the User Interface on Less Might Be More · · Score: 0

    While a Rage 128 is enough for non-gaming usage on a PC, it doesn't fly on the Mac. Even my early Radeon is a bit creaky. Why? Because Apple's using the GPU a lot more than Microsoft is (at least until Longhorn hits)... with Windows, unless an application uses OpenGL or DirectX the video card's not doing all that much more than the Amiga Blitter did in 1985. With OS X (and with Longhorn, remember) the whole GUI is getting fed through OpenGL (or in the case of Longhorn, DirectX).

    There's already some experiments with 3D GUIs. Mac OS X is taking the first stumbling steps with Expose. Sun's demonstrated a much more 3d Java desktop, and I've seen a 3D collaborative environment that lets you "look around" and see other people's workstations as avatars standing in front of floating windows and you can look "over their shoulder" (hopefully only at windows they've explicitly made public). I can imagine an environment where windows don't iconify or hide, they just fade into the background (using the GPU's fog effect, of course), and where skinned interfaces are really texture-mapped 3D objects you can move and rotate.

    When this really starts taking off, so will the graphics cards, complete with realistic turbojet sounds from their fans.

  3. Re:Reap what you Sow on Academics Take On Government Net Censorship · · Score: -1, Troll

    When I say "Change things" I mean with a club and a gun.

    The point I was trying to make Is WHY THE FUCK SHOULD I CARE ?

    The Chinese people PUT their Goverment in Power PERIOD, whatever happens as a result of that is their fault. So WHY , give me 1 REASON , WHY Should I care in the least about censorship in China ?

  4. Reap what you Sow on Academics Take On Government Net Censorship · · Score: 0, Flamebait

    So what ?!?!
    Their Govt CENSORS stuff

    THEY ARE THE PEOPLE THAT PUT THE GOVERMENT IN POWER !!!

    THEY HAVE THE OPTION TO CHANGE THINGS !!!!

    Why dont they ? Because they value security MORE than Freedom. Why the hell should I feel bad about some Marxist regimes censorship ? If THEY cared so much en-masse THEY would do something about it. THEY obviously dont care , why should I ?

  5. American technology is helping repress the Chinese on Academics Take On Government Net Censorship · · Score: 5, Interesting

    When I worked at GTE the company got the contract to lay the fiber optic cable around the border of China and put in the network centers that setup a ring around China. Total control of all the traffic in and out of the country, or so they hoped. A career limiting move came when I wrote Chuck Lee, CEO of GTE, and said we were helping the same Communist government that gave us Tianamen Square and would continue to repress the Chinese people using this technology. But Bean Counters only care about profit and damn the people that get get screwed over in the process.

    As a side note, I knew a lad working near me from China who had been at Tianamen Square the day before and then the day after the massacre happened. When he saw what the army had done to their own people he went home, packed and left for Hong Kong and then to the US.

    Censorship is only one way the Communists will use to stay in power and shooting another bunch of college kids can happen again.

  6. Freenet? on Academics Take On Government Net Censorship · · Score: 0

    Why haven't I seen any comments about using Freenet for this yet? Where's Ian hiding today?

  7. That's nice, but... on AmigaOS 4.0 Developer Pre-release · · Score: 2, Insightful

    ...where are the machines for me to run it on?
    I'm not making fun of anyone here, and I seriously would like to know; I've always been hearing about Amiga this and Amiga that here on Slashdot every once in a while, and doing a little sniffing around on the web there appears to be a pretty active Amiga community. Also, they're still developing the operating system, so there still must be Amigas, right? Right?

    Well, that's what I was hoping, but after doing some heavy searching on google I haven't been able to turn up a single machine. All of the suspect web sites like Amiga's corporate site and other places don't give any information other than "Contact your local Amiga dealer." Great. Where am I supposed to find one of those? After a little searching about that, nothing good really came up. Most of the sites I found either a) didn't exist anymore or b) didn't really have any Amiga stuff.

    Okay, maybe I am just looking in all of the wrong places, but if somebody could point me out to some good resources then that would be great; I always love to try different and unusual systems, and I'm really interested in this AmigaOS. I just don't have anything to run it on.

  8. Perl6 is a mistake on Apocalypse 12 From Larry Wall · · Score: 1, Interesting
    I've been using perl pretty much constantly since the Pink Camel, and believe me, Perl 5 is an extremely good language for quick scripting things. That's what it was designed for. Sure, you can do big projects in it, but it's not exactly ideal. Recently I've started using Ruby as well, and I intend to move my department over to it instead of wasting time with Perl 6.

    One of the goals of Perl 6 is to make non-trivial projects possible. That's good. The way it's being done is bad. Perl was once a lightweight, extremely flexible language. Now it's become a huge ugly monster. People wanted OO, so a nasty hack was bolted on top to allow some semblance of it. Now this nasty hack is being expanded. Sure, the code's different, but the basic form is the same. Kludge upon kludge upon kludge; I'd much rather have a nice, clean, pure language (and not one with loads of irritating whitespace thank you very much).

    The same goes for the syntax. All the switching between $, @ and % is really irritating (ask a newbie how to get at the length of the keys array of a hash inside a hash, for example), and the changes proposed for 6 are just making this worse -- it seems that Larry, in his infinite wisdom, wants to prefix every data type with a different hard-to-type character. Perl was only designed for the three data types, and adding more is a mess.

    Perl 6 is a complete rewrite, but it keeps all the mess which has accumulated over the previous versions. This is not good. Sure, my const int $var = 27; may look neat (in the same way that, say, Pascal does), but $var isn't entirely constant, or entirely an integer, it's just a hack which makes it sort of behave like one. The whole thing is an exercise in pseudo-computer science masturbation with little real purpose except to please the managers who dislike the one thing that makes Perl special.

    On a similar note is regexes. I'm an avid fan of regular expressions simply because a nondeterministic finite automata is far more flexible than linear code. However, Larry must have been smoking that cheap $2 crack when he wrote this. Does he want Perl 6 to be flex or something?

    I won't be going on to use 6. It's a nice idea, but it's completely unnecessary. It won't make large projects any easier to manage (the language is still, at heart, an almighty hack -- an impressive one, but still a hack). It won't make OO any cleaner. It won't make development any faster. To put it bluntly, Perl scripts will still look less beautiful than our friend Mr Goatse. I'd prefer to use a language which has always been pure synthesis of science and engineering, not some half-baked imposter.

    Perl 6 will be nice, but I'm guessing it will be the end of Perl. It can't do what it wants to do whilst still being based upon a nasty mess. There are now other options, which provide all of Perl's power and none of the mess. Sorry, but *BSD^H^H^H^H Perl is dying. Larry is buggering it up the ass without lubricants, just like Shoeboy is doing to Larry's daughter.

  9. As a record store owner on 2003 CD Sales Officially Down 7.6 Percent · · Score: -1, Troll

    My business faces ruin. CD sales have dropped through the floor. People aren't buying half as many CDs as they did just a year ago. Revenue is down and costs are up. My store has survived for years, but I now face the prospect of bankruptcy. Every day I ask myself why this is happening.

    I bought the store about 12 years ago. It was one of those boutique record stores that sell obscure, independent releases that no-one listens to, not even the people that buy them. I decided that to grow the business I'd need to aim for a different demographic, the family market. My store specialised in family music - stuff that the whole family could listen to. I don't sell sick stuff like Marilyn Manson or cop-killer rap, and I'm proud to have one of the most extensive Christian rock sections that I know of.

    The business strategy worked. People flocked to my store, knowing that they (and their children) could safely purchase records without profanity or violent lyrics. Over the years I expanded the business and took on more clean-cut and friendly employees. It took hard work and long hours but I had achieved my dream - owning a profitable business that I had built with my own hands, from the ground up. But now, this dream is turning into a nightmare.

    Every day, fewer and fewer customers enter my store to buy fewer and fewer CDs. Why is no one buying CDs? Are people not interested in music? Do people prefer to watch TV, see films, read books? I don't know. But there is one, inescapable truth - Internet piracy is mostly to blame. The statistics speak for themselves - one in three discs world wide is a pirate. On The Internet, you can find and download hundreds of dollars worth of music in just minutes. It has the potential to destroy the music industry, from artists, to record companies to stores like my own. Before you point to the supposed "economic downturn", I'll note that the book store just across from my store is doing great business. Unlike CDs, it's harder to copy books over The Internet.

    A week ago, an unpleasant experience with pirates gave me an idea. In my store, I overheard a teenage patron talking to his friend.

    "Dude, I'm going to put this CD on the Internet right away."

    "Yeah, dude, that's really lete [sic], you'll get lots of respect."

    I was fuming. So they were out to destroy the record industry from right under my nose? Fat chance. When they came to the counter to make their purchase, I grabbed the little shit by his shirt. "So...you're going to copy this to your friends over The Internet, punk?" I asked him in my best Clint Eastwood/Dirty Harry voice.

    "Uh y-yeh." He mumbled, shocked.

    "That's it. What's your name? You're blacklisted. Now take yourself and your little bitch friend out of my store - and don't come back." I barked. Cravenly, they complied and scampered off.

    So that's my idea - a national blacklist of pirates. If somebody cannot obey the basic rules of society, then they should be excluded from society. If pirates want to steal from the music industry, then the music industry should exclude them. It's that simple. One strike, and you're out - no reputable record store will allow you to buy another CD. If the pirates can't buy the CDS to begin with, then they won't be able to copy them over The Internet, will they? It's no different to doctors blacklisting drug dealers from buying prescription medicine.

    I have just written a letter to the RIAA outlining my proposal. Suing pirates one by one isn't going far enough. Not to mention pirates use the fact that they're being sued to unfairly portray themselves as victims. A national register of pirates would make the problem far easier to deal with. People would be encouraged to give the names of suspected pirates to a hotline, similar to TIPS. Once we know the size of the problem, the police and other law enforcement agencies will be forced to take piracy seriously. They have fought the War on Drugs with skill, so why not the War on Piracy?

    This evening, my daughters a

  10. Fartscape is so lame on Sci Fi Confirms Forthcoming Farscape Miniseries · · Score: -1, Troll

    Farscape is so lame, so "deja vu" and so stupid, that i had an orgasm just by knowing it had been canceled!

    It was just another pure fantasy show set in space ala Star Wars. There was little or no
    "science" about it. Personally, I dislike these type of fantasy shows and I see the current Trek as heading down this path. Shit, even with all the
    Western motif, Jos Whedon Firefly seems to be one of the most acurate portrayals of space life I have seen in a while (ie no muppets or aliens
    that defy logic or reason, the space ships made no sound in space! (Last movie that did that was 2001: ASO I believe) and finally, they seem to have some reasonable technologies and not some shit made up by a mystic race of aliens using some fairy dust and a ritualist chant. :>/

    The day they'll decide to create a REAL good sci-fi serie (such as TNG) i'll be relieved from the lameness surrounding most of the actual tv shows.

  11. Move On to Firefly !!! on Sci Fi Confirms Forthcoming Farscape Miniseries · · Score: 4, Interesting

    At risk of getting modded down as off topic here or as a troll (he says with a straight face), let me suggest that all you Farscape fans out there get behind Firefly!!! Farscape is about a hunk surrounded by hot babes and puppets flying around in the gut of some kind of space-creepy. Firefly is about a real group of people with guns, no aliens, bonding for that warm family feeling in a hunk-of-junk honest-to-god spaceship that let's you go aaahhh... at the end of the ep. Much more satisfying.

  12. Maybe that's why some don't like Bush on TV, ADHD and Doing Useful Things · · Score: -1, Troll

    Too many people are watching TV, losing their ability to think. Thus, these same people are the ones who don't like Bush. Technically, you can say they are still babies who haven't grown up, yet.

  13. Re:Cut-n-paste from adequacy.org on TV, ADHD and Doing Useful Things · · Score: 1

    I'm surprised your comment got through the Karma bonus. Perhaps someone has given you the benefit of the doubt. Berry-berry and scurvy do exist, they are diseases and are treatable. Unlike the 'illness' mentioned in the article.

    As you can see, this is a complex issue not amenable to simplistic analysis.

    ME, ADHD, Anorexia and RSI are different, in that the symptoms (tiredness, aches and pains, not eating) are all things that normal people do all the time. If I don't feel like going to work on Monday morning, am I depressed ? Do I suffer from ME ? Or am I exactly like every other working joe/josephine in the USA ?

  14. The Malaise of the Middle Classes on TV, ADHD and Doing Useful Things · · Score: -1, Troll
    America's middle classes have never had it so good. Two decades of economic success have brought wealth and happiness to anybody who was prepared to work hard. Americans are now better off in real terms than at any previous time in our history. Indeed, President Clinton himself went as far as to say that we are living in an "era of unprecedented prosperity". But scratch the surface of this glittering facade, and you will find not everything in the garden is rosy.
    A certain minority of Americans are inventing new illnesses in order to avoid work.

    The economic miracle that was started off by Ronald Reagan in the 80s, and continued through the George Bush Sr and Clinton administrations is one the wonders of the modern world. The solid economic base of Amreica, coupled with the explosion of the American designed world-wide-web and Internet have created opportunities for all regardless of education, race, sex or class. Anyone in America who wants a job will be able to take their pick from a selection of attractive and highly paid positions due to the strength of the American economy.

    So why is it then that the middle classes have taken to faking diseases and why are otherwise respectable physicians joining in this collective fraud ?

    Dyslexia, M.E., Attention Deficit Disorder, Repetitive Strain Injury, Anorexia. You have probably heard of these diseases before. At least one of your co-workers has probably taken time off work for one of these 'illnesses' in the last month. And yet, up until now no evidence has been produced to support the existence of any these afflictions as actual medical conditions. Let's analyse these 'sicknesses' one by one.
    • Dyslexia. This is the 'diagnosis' given to a middle class child who cannot read owing to low intelligence. It is an attempt to medicalize a problem which in reality is a social one: All men are not created equal. When God gave out the brains, some of us were fortunate enough to be given a shiny new BMW 7-Series sedan, some of us got '97 5.0 Mustang, and some of us (the unfortunate few) got nothing more than an old skateboard.

      Dyslexia does not exist. Stupid children who cannot read do exist.

    • M.E. (also known as the 'yuppie flu'). Again the middle classes cannot stomach the fact that they are not superhuman beings. Consequently when one of them needs to take a day off work, due to being what normal people would call "tired" they medicalize the problem (by giving it a long medical-sounding name) and hey-presto you can get all the time off work you want. Not bad for simply being tired. I wonder what our forefathers who built America by the sweat of their brows would say to a modern yuppie suffering from M.E. ?

      M.E. does not exist. People who need to go to bed a bit earlier do exist.

    • Attention Deficit Disorder (ADD). This one is quite sinister. For thousands of years, children were allowed to be carefree spirits, wandering wherever the mood took them. Investigating a world which is new and fresh to them, getting distracted when something more interesting came along. This was called 'a childhood'. In the modern hell that is middle-class America, a child is not allowed to have a healthy curiosity. No. The moment a child behaves like children have done for thousands of years, the middle class parent reaches for the Ritalin, to dope the poor kid up to better fit with his middle-class golf-playing lifestyle.

      ADD does not exist. Healthy childhood curiosity does exist.

    • RSI. (repetitive strain injury). Another medicalization of a non-medical problem. For centuries it was well known that if you did something repetative for a long time, it could have consequences. Cowboys doing their bit to tame the wild frontier often became 'saddle sore'. Railwaymen laying the tracks across our great continent suffered 'sleeper driver's ear' where the noise from banging in the sleepers to the ground would become too much. In both these cases the 'cure' was si
  15. Re:Sigh. on Little Robots Play Soccer · · Score: 1, Insightful

    If someone says soccer, you know what it is. If someone says football, you have to find out which of the several different sports they are referring to.

    Americans may not like soccer, but at least they have a better less-confusing name for it.

  16. Help on NY Holds Spam Scam Contest · · Score: 0

    I have here for sale a product that will eliminate dumb OE posts and decipher the incoherent ones. It's part Quattr0ne's Enigma Machine and part voodoo black magic (from Madame Zeroni, no less!)

    I call it "Jsemkral's Give-It-The-Finger;" it gives the bad posts the finger just like Jsemkral always flips the bird.

    You can order it online at SpammersDelite. It is available for a limited time for the low, low price of only $2099.99!

    And if you order within the next half hour, recieve our NEW program, W32.SpyWare.Class, that presents you with the best offers from all of our business partners, 1 million at a time!

    How can you lose with that?

    Our customer service representatives are standing by their computers in Bangalore as we speak! Order now!

  17. I need your help on NY Holds Spam Scam Contest · · Score: 5, Funny

    My search a winning entry for this contest is going to cost $800. However, I am guaranteed to be the winner. I have $500 saved up already, so if you send me $300 I will split the top prize with you 50/50. Even though you only provide 37.5% of the cost, you get 50% of the benefit! How could you go wrong!?

  18. Two words: Linux zealots on What Differentiates Linux from Windows? · · Score: -1, Flamebait

    A spectre is haunting the world, the spectre of the Linux zealot.

    What the Linux zealot is will appear evident to whoever has experienced or came in contact with the discussions which daily rage the Web disguised as news, e-mails, reference material, etc. The Linux zealot, is nothing but an animal wandering unceasingly in virtual and true reality (which moreover he treats in the same way) claiming to be an authority on the Linux operating system, an out-and-out guarantor for everyone's freedom, opposed to any safeguard of intellectual works (for a Linux zealot, the expression "copyright" is tantamount to sin against the Holy Spirit: there is no kind of expiation); in fact, he champions software freedom as a fundamental point for world evolution.

    But first and foremost, the Linux zealot is a deeply dangerous being as he claims to be the guardian of truth, and sees with suspicion (when it goes off well) or scorn (for the rest of cases, i.e. most of them) those people who simply think differently from him.

    But what's Linux? A Linux zealot will never give an authentic answer to this kind of question. He won't, not because he doesn't want to (even if this is the case), but because this question has been answered already, somewhere else by someone else. Linux is nothing but an operating system. The Linux zealot will claim that it is a different operating system from all others. But this is not the case. Because an OS is an OS, its main function is to manage the resources of a machine we will call "computer" from now on, for comfort of description. By the term "computer" we mean what is commonly meant by this expression, i. e. the system of hardware resources which are fixed to a certain purpose, be it home use, business use, or server management. Linux is an operating system. Like Windows, MS-DOS, OS/2, etc. There is no difference, in this sense, between Linux and other operating systems. Linux manages a computer, no more, no less. So do MS-DOS, Windows and OS/2. What the Linux zealot self-importantly and arrogantly highlights, is the fact that Linux is a free operating system, i.e., it is made available free of charge to the end user. This of course isn't true at all, but the Linux Zealot believes it. Linux is freely distributable, not free of charge. This means that the kernel and everything included in the operating system's minimal requirements can be freely distributed, not that they must be distributed free of charge. This is the first great misapprehension of the Linux zealots, who find their claim challenged by facts: if the essential parts which make the operating system, and some additional software, are freely distributable, they should explain the reason of the costs -- not prohibitive but certainly notable -- of the most popular Linux distributions, Red Hat and SuSE foremost. And most of all, they should explain the fact that companies like Red Hat are regularly listed on the stock exchange, and Mr. Linux Torvalds enjoys a rather high standard of living. These benefactors of mankind, these software alternatives, these computer non-conformists (so much non-conformist as to be terribly conformist in their non-conformism) naturally justify the distributing companies' profits with excuses like "but there's a printed manual", "but the bundled software is qualitatively and numerically superior compared to the most popular distribution". "but it is easier to install" and other unspeakable nonsense. "On the other hand" they say "if someone wants Linux, they can just as easily download it from the Internet". Sure. Download it from the Internet. But how long must you stay connected, if you regularly pay an Internet bill, to complete the download of an updated version of a decent distribution of an operating system? So what? Is Linux free? No. Linux is not free, same as nothing downloaded from the Internet is free, unless you have access to an University server or can in whatever way scrounge a connection. If you ask a Linux zealot to burn the material you are interested in, he will do so with great d

  19. Also with Linux Root Kit on Heise Online Reveals Trojan / Spam Connection · · Score: 4, Interesting

    Hello!

    This article does not surprise at all. Thus I already read some months ago in the net of a root kit for Linux, which on the stricken computer installs itself and camouflages and then a special SMTP server starts, which from the outside refers always 1000 email addresses in the way of Client server communication and sends then the Spam. In the connection it sent back even still the Resultcodes to the server.

    In the case it was more difficult to pursue the author back because on the one hand the servers were located in several states and on the other hand the companies, to which the IPs/Domains belonged again mail box or dummy firms was.

    The problem is that here regular servers were stricken, which did not have dial up IP and thus also not over RBLs are recognized.

    Which one from it learns is probably clear: Safety updates bring in, mail content scaning (spamassassin), and feel safe never.

    Unfortunately did not know I meant articles any longer to find, otherwise I would have quoted him :(

  20. This is ridiculous on Practical C++ · · Score: 0, Troll

    I tried writing a program using C++ and it didn't even do anything. When I write programs in Visual Basic (The Pro Version) they almost always work pretty well. Obviously, C++ has some serious problems. Besides that I can easily get lots of sample programs that I can modify to suit my needs. I saved my company thousands of dollars by making some simple changes to some sample programs to make a program to track the employees I manage time and attendance and print out weekly reports. I did this in only a couple of days of work. Who knows how long that would take with some obscure programming language like C++? Probably 6 to 8 months, I would guess.

  21. C++ Should Be The Only Programming Language on Practical C++ · · Score: -1

    Today's Software and IT industries are plagued by programming errors. While some of these errors are the result of illegal use of non-Microsoft software on rogue networks, the majority of problems stem from difficulties in mingling code of different programming languages. Standarization on the best-of-breed programming language, C++, would undoubtedly reduce errors in software.

    In this post, I seek to dispel the myth that non-C++ languages are beneficial in proper Software Engineering. I outline how standardization on the C++ language can strengthen your corporation's bottom line. And I describe how to contact the men in Congress to have C++ use finally made legally mandatory.

    C++, a programming language invented by Lucent's Bjarney Strupstrup in 1995, has been hailed as a God-send to Computer Science since its creation. Based on Richie Kerninghan's language "C+", C++ brought several previously-theoretical programming languages features to the mainstream:

    Church-Rosser Compliance
    Known as "multiple inheritance" in the programming world and as "being Church-Rosser" in academia, C++'s compliance to this IEEE standard immediately placed it head-and-shoulders above other languages. "Churrossity" allows programmers to use blocks of code, called "objects," in place of other blocks of code ("arrays".) The layman can think of this as "allowing 'new' code to 'run' old code." This advance has not been possible in previous logic-based languages such as Ada.

    Multi-Byte Characters
    C++ allowed use of "Beaster," a subset of Microsoft's COM ("Common Object Model") windowing layer. The Beaster system allows non-English-speakers such as the Welsh to use computing technology, as it could redirect the signals used to display non-English characters on a computer's monitor screen or laser printer. It is also useful in helping the blind, who speak a specialized subset of English called "ALS."

    Pass-By-Text
    A non-recursive pass-by-text mechanism existed in Kerninghan's C+, called "macro facility." But Strupstrup did Kerninghan one better with the "String Template Loader" variable passing mechanism, which allowed text to be passed to procedures at run-time. This sped up code execution times, as code could be compiled while the user was running the program. This eliminated speed loss caused by incompatibility from obselete computer chips (Motorola and ADM.)

    The superiority of C++ over other languages should be obvious. But is switching to it from other languages possible in your corporation? Astute observers will note that the eco-terrorist group FSF produces a C++ compiler called "DJGPP." Under President Bush's War on Terror, any organization supporting a terrorist organization is recursively itself a terrorist organization.

    Corporations needn't worry. Microsoft has its own C++ offering, "Visual Studio." As an added bonus, Microsoft Visual Studio is highly standards compliant. It features a visual programming interface, and several features not found elsewhere (such as a visual debugger and an AOL instant messanger client called "Windows Messaging".)

    But these advantages can only be realized if code written in inferior languages can be kept from polluting the inter-web eco-space. When compilers for other languages are available, low-level managers are tempted to write code in them. Why? Often times, managers are brought up from the ranks of Software Engineers, and thus lack an Executive's sense for using the right tool for the job. When these managers write code in a jungled zoo of languages, code in one program is unable to interact with code from another program (churrossity.) Only by standardizing on C++ can all programs run together smoothly. Using C++ to eliminate software errors will jump-start the sagging technology industry. This will boost our economy as a whole, which in turn will help us to win the War on Terror.

    The effort to legally mandate this has been going on for a while. But it needs your help. Even the smallest person, su

  22. SAVE THE HUBBLE FOUNDATION! on A Way to Save Hubble? · · Score: 0

    They do it with whales, don't they?

    Come on, get your placards, dress up like monkeys, and decend upon
    Washington.

    The million monkey march!

  23. Too many features. on Yahoo! Switches Search Engines · · Score: 2, Insightful

    Y! should research how many of their features are currently used regularily by their users. IMHO, I do not think that cramming a web site with extra features does improve the user experience.

    It is good to see that Y! is interested in iproving their services in many areas, but they should concentrate on some specific business instead of trying to get a part of the market in as many different business markets as possible.

    Call me oldfashioned, or offtopic, or whatnot, but I miss the days when you could talk to some store owner who has been specialized in one specific field and who could give you advice based on his experience. Don't get me wrong, I know that such people still exist, but they are getting rarer if you compare to all the Wal-Martish stores that are "diversifying" their line of products and services. The same is seen online...

  24. Competition is good on Yahoo! Switches Search Engines · · Score: 2, Insightful

    Just cause Google is currently the leader doesnt mean Yahoo doesnt deserve the chance to take the crown!

    Would you prefer technology stagnate?

    Good luck to the teams at both google and yahoo!

    I dont believe in brand loyalty. Cause no company has believed in customer loyalty.

  25. Hungary? on More on IBM 75GXP Drive Fiasco · · Score: 1

    I know it was rumored that the problematic drives came from the Hungarian plant... was this ever confirmed?