Slashdot Mirror


User: chgros

chgros's activity in the archive.

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

Comments · 544

  1. Re:Mouse Gestures on Building a Better Mozilla With Plugins · · Score: 1

    I used to think the same, until I tried RadialContext,
    which is basically adding a menu to those gestures (so you can still do the more obscure ones). See previous thread.

  2. Nitpicking... on What Was Your Worst Computer Accident? · · Score: 1

    -iname => -name (no need to be case insensitive here
    | -> use -exec instead
    awk -> Why not just echo ?
    find -name '.*' -exec echo chown root:root {} ";"
    Just remove the "echo" to actually run it...
    Other problem : it changes all regular files that start with a "." in the hierarchy instead of all files / directories starting with a "." in the current directory.

  3. Re:Civ and SimCity type games on Educational Software To Donate With Laptop? · · Score: 1

    SimCity IS American-centric.

  4. Re:10 years in the making! on FreeDOS Turns 10 Years Old Today · · Score: 1

    I find it humorous that it's still in Beta after 10 years of development.

    I'm not poo-pooing the effort, but you have to admit that that's a long time before declaring 1.0!

    GNU/Hurd is at 0.2 right now...

  5. Re:Non-Free, Why not just use Excel? on NewsForge Reviews Excel Clone for Linux · · Score: 1

    Because Excel is even less free?

  6. fisson power... on NASA Abandons SimCIty Microwave Power Concept · · Score: 1

    is pretty well established now.
    You're thinking of fusion power.

  7. Re:Outstanding idea. . . and will never happen. . on NASA Abandons SimCIty Microwave Power Concept · · Score: 1

    3. Beware anyone, anywhere, who leads his argument with the 2nd law of thermodynamic
    Well in this case it used right: energy conversion has to be wasteful (i.e. create entropy). However as you point out, the amount of power wasted when the initial power is "free" is not really relevant (especially if the power is wasted into space).
    But his point that the amount of resources to build the plant could be higher than what it produces is appealing (though of course it would be interesting to have some numbers), I read for instance that solar panels cost more energy to create than they produced during their lifetime (to be verified, I think I read it here on /.)

  8. Re:Getting a counterweight? on Scientist Sees Space Elevator in 15 Years · · Score: 1

    but the cable has to be much much stronger since it would be three times longer and must support its own weight.
    The weight would be the exact same as that of a counterweight (to keep the center of gravity at the same place), so you are wrong here.

  9. Re:In other news... on U.S. Navy to Deploy Rail Guns by 2011 · · Score: 1

    But, what about the sonic boom? I mean, even a small thing crossing the speed barrier makes a noise (ref: a bullwhip) -- how loud will it be on deck with n of these things breaking the sound barrier every 10 seconds?
    Regular rifle ammo (e.g. NATO 5.57 or 7.62) goes about 700m/s IIRC. That's about twice the speed of sound.

  10. Re:I highly doubt this webpage. on Our Friend, The Meter · · Score: 1

    it's why English uses eleven and twelve instead of oneteen and twoteen.
    Note that in French, we have this until 16 (onze=11 douze treize quatorze quinze seize=16).
    The main point here is that for usual numbers we use base 10, so it makes sense to do the same for measurements. It might have been better if we had 12 fingers, but well...

  11. Re:Quick tutorial on Huffman Coding on Computational Origami and David Huffman · · Score: 1

    Huffman coding is a way of representing some stream of symbols using bits in the most optimal way possible.
    Note that you must know beforehand the probability of each symbol (though there is a possibility of adaptive Huffmann encoding, but of course it's not optimal)

  12. Re:Not just self modding, but C++ classes on stack on WinXP SP2 Sacrifices Compatibility for Security · · Score: 1

    Would be nice if it were that simple, but a nice trick used throughout GOOD c++ programming is to allocate, say, an MFC dialog on the stack, as this automatically solves many memory leak problems and is tons faster than new.
    A class instance is data. It doesn't contain any code (it contains a pointer to a vtable, which itself points to code...). So you can keep allocating objects on the stack, it is indeed faster / safer.

  13. Re:Firefox is great on Mozilla Project Officially Releases Firefox 0.9 · · Score: 2, Informative

    I really enjoy the new version but have noticed that the Firefox browser loads much slower initially than IE. I have tested this on two machines. Anyone else with the same problem?
    IE is preloaded by windows, so always starts nearly instantly. Just keep firefox open :-)

  14. Re:From an ocaml convert: on Searching for the Best Scripting Language · · Score: 1

    Interesting... I had found a workaround somewhere but it involved modifying the Set module, which I didn't want to do. I'll check this out...

  15. Re:From an ocaml convert: on Searching for the Best Scripting Language · · Score: 1

    I also like OCaml (learned it in school), although it has a missing feature: you can't for instance define a union type with a member that would have a set of the same type e.g.:

    type t =
    A of a |
    B of t Set
    won't work...

    Also the lack of any kind of overload is very annoying.
    I actually use it for scripting (too lazy to learn Perl when I already have this), while doing "serious" programs in C++.

  16. Re:don't bother........ on Why Learning Assembly Language Is Still Good · · Score: 1

    I actually know asm, but if you have to put everything into a structure first I don't really see how it is better than pushing it to the stack (since putting the values into the structure takes as many instructions as it would take to put the arguments directly into the stack, and the structure is probably already on the stack anyway)
    Of course it's different if you pass the same arguments along several times...

  17. Re:don't bother........ on Why Learning Assembly Language Is Still Good · · Score: 1

    the thing to do is create a class that contains all the parameters and just pass in a reference to an object of that class. Then your code is both efficient AND easy to understand.
    How is that supposed to be more efficient? (I agree about the readability part though)

  18. Re:Compatability checklist. on Microsoft's Magical 'Myth-Busting' Tour · · Score: 1

    And then compare disk footprint of those exact same distros in the exact same configuration.
    Yes, because hard disks are so small.

  19. Re:Really . . . on Build A Darknet To Capture Naughty Traffic · · Score: 1

    Snail mail can easily have dropped packets
    Yes, especially mail-in rebates

  20. Re:Music? on World's Fastest Flash Memory Card? · · Score: 2, Interesting

    Of course, I'd assume it will play Ogg Vorbis, right?
    I actually play music on my Zaurus (it's mostly ogg), since my computer (though a laptop) is VERY noisy. I only have a 128MB card though, so I make a playlist (using Gjay) every night and have a script copy the files to the card. It works nicely (though the opie media player is buggy, notably it has what is probably a nasty memory leak, and is always killed when I turn the thing back on the next day. Also when it has a problem with a file, it stops instead of just skipping)

  21. Re:Humans still did all the work. on First All-Artificial Feature Film Released · · Score: 1

    making this possibly the world's first all-artificial movie.

    It seems to me that humans still did most of the work

    OK, how many artificial things do you know that are not human made?

  22. Re:Dear Lord... on Microsoft Receives Patent For Double-Click · · Score: 4, Insightful

    Amazing...
    clicky

  23. Re:Wow on Shareaza 2.0 Released Under GPL · · Score: 1

    (which all fit on a single floppy!)
    How many projects do you have whose source doesn't fit on a floppy??
    e.g. : bittorrent source = 230kb (compressed)

  24. Re:Not in this case... on New Largest Prime Found: Over 7 Million Digits · · Score: 1

    I guess I can just point you to any reference on arithmetic: Zn, set of integers modulo n, is a ring (a field if n is prime); the transformation from Z is a homomorphism, so these kinds of operations on equalities is perfectly valid.

  25. Re:Not in this case... on New Largest Prime Found: Over 7 Million Digits · · Score: 1

    OK:
    3 is prime
    4 = 3 + 1