Slashdot Mirror


User: mightybaldking

mightybaldking's activity in the archive.

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

Comments · 95

  1. Re:Several of these already exist on Congress Debating "No-Work" Database · · Score: 1

    Fibonacci was an Italian. He is known as the man who advocated the use of the ARABIC number system in Europe. This makes him a terrorist in my books.

  2. Re:What kind of idiot... on Big Red Button Disasters? · · Score: 1

    I'll join the threadjack. When I was in University, I worked as a mover for a company that would hire ANYBODY. We did mostly office moves under heavy supervision (Of course we couldn't be trusted.) I have never had my value as a person questioned as much as I did during that time. The upside of the job was that I could put 40 hours in on a weekend on a cash basis, which left me the entire week free for books and beer.

  3. Lights on consumer electronics. on PC World's 20 Most Annoying Tech Products · · Score: 1

    When I turn off the stereo, I want it to go OFF. I don't want a little red light to appear to tell me it's off. Now, replace that little red light with a 1000000 candle power white LED. That way, my neighbours across the street can tell that I've turned the stereo off by that eerie glow in my living room.

  4. Re:This is a good thing? on Linked List Patented in 2006 · · Score: 1

    When I took data structures, we did singly and doubly linked lists, binary, and n-ary trees (various forms), and graphs. I would suggest that any n-ary linked list is actually a graph.

    As for your horsehair paintbrush example, I would suggest that perhaps a Platypus fur brush is a better idea:
    Horse Hair - Done
    Badger - Done
    Boar - done
    Platypus? New, Novel -- Patent it!

  5. Re:Bizarre. on Australia Rules Linking to Copyright Material Also Illegal · · Score: 1

    No, it's more akin to shutting the library down because there's a photocopier in the lobby.

  6. Re:Continue is the "Devil" on Developing Java Software · · Score: 1

    I disagree. If you are using an IDE that provides the option of collapsing blocks, then wrapping the code to be skipped actually makes the code easier to read.

    Otherwise, your continue/break is at the right hand side, which makes the flow hard to follow on a quick scan.

    Of course, if you have too many levels of nesting, maybe you should refactor and put some of that code in methods.

  7. Re:Continue is the "Devil" on Developing Java Software · · Score: 1

    Continue is really not necessary at all.

    Print out all numbers from 1 - 10 except 7
    for (int i=1; i=10; i++)
    {
              if (i==7)
                        continue; // go to end of loop and continue with next iteration
              else // solely for clarity
                        System.out.println(i);
    }

    is in all ways equivalent to:

    for (int i=1; i=10; i++)
    {
              if (i!=7)
                      System.out.println(i);
    }

    if (condition) continue;

    can always be replaced with:
    if (!condition)
    { // code to "continue" over.
    }
    The cost is 1 layer of nesting, the benefit is a lot of clarity.

    I also feel the same way about break statements. If you need one, you should probably rewrite your loop conditions.

  8. Re:Raised Dots. on Judge Says U.S. Money Violates Rights of the Blind · · Score: 1

    I just checked the six $20 (CDN) bills in my wallet.
    They were new from the atm on Saturday, and I don't sit on my wallet.
    All the raised dots are so flattened out that I can't feel them. The only way I can find them is to hold the bill edgewise to the light and glance along the edge of the bill.

    Sorry, doesn't work.

  9. Language and Technology is irrelevant on Choosing Your Next Programming Job — Perl Or .NET? · · Score: 1

    I would look into how each company manages development. The advantage of the big company is that you will probably work with someone who has more knowledge and experience than you. There is also a good chance that you can move up the ranks there. In the small company, you're it. You are at the top of the development ladder, and there is nowhere to go from there. However, in the small company, there is an opportunity to shine, and really show what you can do.

  10. Re:Simple Child Care on School Bans 'Tag' · · Score: 1

    No, Ice Hockey is American and European. Hockey is Canadian.

  11. Re:2 OS's running simultaneously on Boot Linux, BSD, and OS X from Vista · · Score: 1

    That's how I do it!

  12. Not this again. on Web Censorship on the University Campus? · · Score: 1

    The solution is simple: Throttle ports commonly used for torrents/P2P from 9-5. Let the poor students download their pr0n and Warez at night.

  13. I can't wait! on Intel Pledges 80 Core Processor in 5 Years · · Score: 1

    Duke Nukem Forever is just going to fly on one of those.

  14. Re:Special software for Canada? on Australia Conducting Electronic Census · · Score: 1

    I had to install an Operating System, NIC drivers and a web browser.
    I shouldn't have to do this to fill out a Census!!! I should be able to do it directly from BIOS.

  15. Re:Oh, Yes! on Matt Damon as Kirk in Star Trek XI? · · Score: 1

    I'll agree with you there. Best writing in the series, and a really good overarching plotline.

  16. Re:curious on Patriot Act Bypasses Facebook Privacy · · Score: 2, Interesting

    why would they require a security clearence?

    To keep the immigrants out.

    5 years experience and Security clearance are the two best ways to discriminate without actually saying "No Dogs or Irish"

  17. Re:Nice but... on 2.5" Drives On the Desktop · · Score: 1

    Aren't drives still constant angular velocity?
    Don't the slower moving inner sectors store data more densely than the faster outer sectors?

    I don't quite see the relationship between platter size and speed. In fact, I think the smaller drive would be faster in a badly fragmented drive as the head has a small distance to move in the worst case.

  18. Re:That begs the question on UBC Engineers Reach Mileage Of Over 3000 MPG · · Score: 3, Insightful

    However, in this case the OP was using a phrase incorrectly when there was a perfectly correct alternative that is no more difficult to say.

  19. Re:That begs the question on UBC Engineers Reach Mileage Of Over 3000 MPG · · Score: 1

    Mod parent Up.

    Not flamebait.

    "But if it isn't flamebait, it wouldn't have been modded as such." <-- That's begging the question

  20. Re:Well, Duh... on Dry Ice Made into Super-tough Glass · · Score: 1

    It's a joke site. Jonathan Goode (grade 7) applied findings from many fields of science to support his conclusion that God designed women for homemaking: physics shows that women have a lower center of gravity than men, making them more suited to carrying groceries and laundry baskets; biology shows that women were designed to carry un-born babies in their wombs and to feed born babies milk, making them the natural choice for child rearing; social sciences show that the wages for women workers are lower than for normal workers, meaning that they are unable to work as well and thus earn equal pay; and exegetics shows that God created Eve as a companion for Adam, not as a co-worker.

  21. Re:It's not the size, but what you do with it. on Three 3D Web Browsers Reviewed · · Score: 1

    Tab? It essentially walks you through all clickable items in a linear fashion.

  22. Re:It's not the size, but what you do with it. on Three 3D Web Browsers Reviewed · · Score: 1

    So really, what you're saying is that you want a 1d interface?

  23. It doesn't matter... on Would Vendor Liability for Bugs Kill OSS? · · Score: 1

    If this is mandated, then the software manufacturer will only warrant the software fit for specific uses. This warranty is void if: The user connects to any network not on Microsoft's approved network list. The user installs any software not explicitly covered on the MS Software compatibility list. The user ever enters data incorrectly. ... You can see where I'm going here. It's not just ms, EVERY vendor would have to create a similar license

  24. Re:It's still in the Milky Way on Three Neptune-sized Planets Found Nearby · · Score: 1

    It's a bit late, I know, but you missed a decimal point there. It was (point eight C) 41 ~= 32/sqrt(1-.64/1) (although, I may have include acceleration time in the original calc. Therefore, 41 years pass, not thousands. Read the freaking post before you get all snarky.

  25. Re:It's still in the Milky Way on Three Neptune-sized Planets Found Nearby · · Score: 1

    To use Heinlein's analysis from Expanded Universe: 1g constant boost gets us to light speed in 1 year. Assume a maximum speed of .8C, and we get there in 52 years. At .8C, the travellers only perceive 32 years. So, if we can build a 1g boost rocket, and find a fuel source (Non-trivial) we could conceivable travel this distance in a lifetime, and still have some useful years left.