Slashdot Mirror


User: blue+trane

blue+trane's activity in the archive.

Stories
0
Comments
2,072
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,072

  1. Re:Unions are such parasites on The Jungle · · Score: 1
    Unions don't protect the unskilled labourer, they protect the lazy worker and the stupid worker. They protect the ones who want to do the least amount of work and complain the loudest.

    So, what do you do with the "lazy ... and stupid worker"?

    The best answer in my opinion is to give them enough money to live decently on. That causes the least amount of strain on society (less crime, fear, etc.). If the wherewhithal to support them comes from my (and my employers') taxes, so be it. It's worth it.

  2. Re:Good, The New Workers need to unionise. on The Jungle · · Score: 1

    I've had to put up with lots of "stupid little things" instituted by management, too. Human nature is human nature. You go off on unions, but employers are guilty of as many annoying things that hinder my work.

  3. Re:Good, The New Workers need to unionise. on The Jungle · · Score: 1

    what skills do the employers have that leads you to cast your vote for them to not have to worry about these things?

  4. Re:Unions are bad, mmmkay? on The Jungle · · Score: 1

    some people should not work. they hinder efficiency. I would rather pay taxes so that those people don't have to work than have to deal with them in the workplace!

  5. Re:And "You'll never do lunch in this town again" on Can Companies Control What You Say After You Leave? · · Score: 1

    if you won, you might never need to get hired again

  6. Re:Ethics and Economy on Ethics In Computer Consulting · · Score: 1
    I hate looking people in the eyes. I get tired of seeing their judgments (which run about 99% unfavorable to me).

    Doesn't mean I'm not honest though. On the contrary.

    I've also been lied to unashamedly by people who looked me in the eyes (back when I used to look people in the eyes).

    One can smile and smile and smile and still be a villain. Same with looking people in the eye.

  7. Re:You Can't on Openly Published e-Commerce Security Precautions? · · Score: 1
    You cannot be sure of any online security. BBBBZZZZZTTTTTTT. The warm fuzzies ain't there. I'd rather go into a Radio Shack and give the 17-yr old geek my CC number - and look him in the eye - than put my Amex # on the big I.

    I would rather take whatever risk there is in using my credit card online, rather than go into a store and be made to feel like the cashier is doing me a favor by taking my money.

  8. Fuzzy Logic, the theory, is actually very powerful on Is the Net The Cause of California's Power Problems? · · Score: 1
    The internet capabilities of the computers included in the figures are NOT the ONLY function these machines have.

    Not to mention that the internet is not necessarily creating usage where none would have existed: if I didn't buy a book online, how much energy would I consume driving to the store? How much energy does an email take, compared to making a phone call, or sending a letter (all those postal trucks, sorting machines, etc...)

  9. Re:Any other examples? on Neural Networks In The Home? · · Score: 1

    ... the water coming on, scaulding hot... DOH! Freezing Cold... DOH! Slightly less hot... DOH! Slightly less cold... DOH! (and on and on for 5 minutes until it settles on a good temperature).

    This is the way your neural net does it, until it learns.

    In the same way a neural net in your shower would learn your user preferences without you having to explicitly set them, or even think about it.

    Of course you'd have the option to set them yourself if you liked...

  10. Re:&& == smarter?? on UK Researchers Make Neural Networks Smarter · · Score: 1

    if(animal is furry && animal is small && animal is domesticated) it's probably a cat or a dog.

    Problem is you have to hardcode in or read in what is furry and what is small and what is domesticated, whereas the nn figures out what these features are and adapts to changes in the input automatically. Otherwise you have some human extracting new features and hardcoding them somewhere.

  11. Re:It's been done for a while on Why Linux Lovers Jilt Java · · Score: 1

    I use it everyday. it runs at least as well as it runs on windows.

  12. Re:Java.isAHoax( ) on Why Linux Lovers Jilt Java · · Score: 1

    The ONE thing I thought was promising when I first heard of Java was the running on different platforms idea. Sounded good. Unfortunately it just didn't make it.

    java lets developers use their os of choice. our team has 2 linux and one nt user, and the servlets/jsp app runs on solaris and win2k as well.

  13. Re:forst netscape post! on Netscape 6 Vs. 4.7x · · Score: 2

    I'm more productive on linux because it's such a pain to surf the web using netscape.

  14. Re:Cheating the Network Reflex! on Quickie Twister · · Score: 1

    Then there's the "guess" method, which got me a 0 heh

  15. Re:Is anyone or any business really gonna back C# on Internet C++: Competition For Java And C Sharp? · · Score: 1

    right on! I agree with most everything this dude said

  16. Re:Hiding bugs: A real life example. on An Open Letter From Bob Young · · Score: 1

    My last company paid for an ms "mvp" support guy who came in every week and tried to sell us all on the full ms product line. When he found out I was using open source xml parsers he told me at ms they are not supposed to look at open source because of the "restrictive licenses".

  17. Re:b4d y00z3r2 on Yup, Somebody Cracked Slashdot · · Score: 1

    after years of watching secretaries jot down passwords on 3x5 cards and post-it notes and tuck them into the pencil drawer of a desk

    The basic fact is, passwords are a nuisance to remember.

    We need an easier way of authenticating. At least until we figure out how to take away everyone's motivation for stealing.

  18. Re:Functional Programming: try it in Perl! on What About Functional Languages? · · Score: 1

    here's one way in java:

    import java.util.Vector;
    public class testcount {
    public static void main( String args[] ) {
    try {
    Vector list = Count.down(Integer.parseInt(args[0]));
    for ( int i = 0; i list.size(); i++ )
    System.out.print( ((Integer)(list.elementAt(i))).toString() + " " );
    } catch (Exception e) {
    System.out.println("Usage: java countdown INT");
    }
    }
    }

    class Count {
    private static Vector list = new Vector();
    public static Vector down( int n ) {
    list.addElement( new Integer( n ));
    if ( n == 0 ) return list;
    return down( n-1 );
    }
    }

  19. Re:Bloody Larry Wall ... on What About Functional Languages? · · Score: 1

    Oops. I guess you forgot that computer and natural languages serve different purposes, and that the ambiguity that context-sensitivity brings along is undesirable when you're trying to get a computer to do something? Unless you're trying to get a computer to deal with ambiguous data (hence, Fuzzy Logic).

  20. Re:Clock and bus locking on Tampered Athlons Hit Oz · · Score: 1

    You should also add quotation marks around "misspelled" to prevent its being parsed as a past participle.

  21. Re:Client side java isn't the only Java on IBM JDK 1.3 For Linux · · Score: 1

    JSP can be slow, yes. This is mainly because of the two-step that happens when you access a JSP file: first the server compiles it as a servlet, then it serves the output of the servlet. Predictably, this tends to suck performance-wise, although the performance of the most popular JSP engines seems worlds better now than a year ago, and hopefully will continue to improve.

    The compilation of JSP into a servlet should only take place once, when the JSP script is called for the first time. Any subsequent calls use the already-compiled servlet (until the JSP script is modified, or the web server is rebooted...)

  22. Re:Anyone remember Freedom CPU project? on Free 32-bit Processor Core · · Score: 1

    Bill Gates Mini-Me? you just made me emit an uncontrolled snort of laughter which I couldn't stifle in time, thereby serving to reinforce the opinion of those in the cubes near me that I am certifiably insane.