Slashdot Mirror


User: tuffy

tuffy's activity in the archive.

Stories
0
Comments
1,442
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,442

  1. editing over ssh on (Stupid) Useful Emacs Tricks? · · Score: 5, Informative
    Always handy when doing a bit of work remotely. Put:

    (require 'tramp)
    (setq tramp-default-method "scp")

    in one's .emacs file. Then open remote files with:

    /username@host:remote_path

  2. Re:Continuity on David Tennant Stands Down From "Doctor Who" · · Score: 3, Insightful

    Yet "the Three Doctors" establishes that the first Doctor is, in fact, the first. The dating of UNIT stories is also impossible to pin down (an alternative 1970s? the 1980s?) not to mention the mess caused by the TV movie's "half-human" line. Even the Daleks' origins differ wildly between what's established in their original story versus what came much later in "Genesis of the Daleks."

    Continuity has never been one of Doctor Who's strong points since the show is often self-contradictory.

  3. Re:On a personal note... on Researcher Warns of "Digital Dark Age" · · Score: 1

    If you really want to be remembered, it's best to accomplish something they'll read about in their history books.

    Change the world, and other people will preserve your existence forever.

  4. Re:and HOW did you conclude that 'crazies' were wr on Fossett's Plane Found · · Score: 1
  5. Re:Playing God! on Bringing Giant Tortoises Back From Extinction · · Score: 1

    I just can't see "Giant Tortoises go on rampage"

    Everybody, walk for your lives!

  6. Re:Why "lazy"? on Why Lazy Functional Programming Languages Rule · · Score: 5, Informative

    They're "lazy" because they don't do any work until necessary. For example, a function can return an infinitely long list, but only the elements you request will actually be calculated. Or, to compare them to Python, it's like having everything function like an iterator.

  7. Re:Printing on Examining Chrome's Source Code · · Score: 1

    you print stuff out? from a browser? you mean... like a web page that will probably change tomorrow?

    It seems you've answered your own question.

  8. Re:Good luck to australian gamers on SPORE Released 5 Days Early In Australia · · Score: 2, Informative

    Just because no one likes SecuROM doesn't mean one is entitled to download the game for free.

  9. Re:Oh gee, that solves it, case closed... on NIST Releases Report On WTC 7 Collapse · · Score: 2, Insightful

    It is compeltely obvious to so many people on so many levels that the building was imploded

    Controlled implosions on large buildings require months of preparation, miles of detonator wire, and literally tons of explosive charges placed at thousands of locations - sometimes requiring the demolition of interior walls. I've not yet heard a convincing explanation on how this process could be accomplished without anyone noticing.

  10. Re:OpenSSH bug? on Red Hat, Fedora Servers Compromised · · Score: 1

    The bottom paragraph of the security advisory "details" section lists a minor bugfix, in addition to clean packages related to the breakin.

  11. Re:OpenSSH bug? on Red Hat, Fedora Servers Compromised · · Score: 2, Informative

    Red Hat's OpenSSH bug involves X11 forwarding. As I recall, Debian's OpenSSH bug was a "fix" that dramatically reduced the entropy available for randomizing. I don't believe the two are related.

  12. Re:Did we really make it to the moon? on NASA Shuttle Replacement's Problems Are Worsening · · Score: 1, Insightful

    Not only does NASA not have the Apollo equipment, they don't even have the plans anymore!

    That's an urban myth. NASA has a complete Apollo rocket suspended in pieces from the ceiling in its tourist center. I have pictures.

  13. Re:What's the story with the Yellow Castle? on Lego Secret Vault Contains All Sets In History · · Score: 1

    That was one of the first sets I ever received.

    Had I known it would become so valuable, I would've kept better track of all the pieces.

  14. Re:My bigest boneheaded move on Bone-Headed IT Mistakes · · Score: 2, Funny

    While working as a student computer lab attendant, a fresh-faced new user once asked me what the rename command was on the SunOS boxes. He told me he'd already tried "rn" and "rm", and now his files had disappeared.

    I'm sure he learned something new that day.

  15. Re:No Big Deal on Firefox 3 Release On Tuesday · · Score: 2, Insightful

    The main one that accumulates memory with open tabs? I have heard that it was still not addressed in FF3, but that was a bit ago and I hope this is it!

    It has been addressed. While FF2 would hog all my available RAM over the course of a day, FF3 releases memory regularly as tabs are closed.

  16. Re:Addons on Firefox 3 Release On Tuesday · · Score: 5, Informative

    NoScript, Adblock Plus (w. Filterset.G) and FlashBlock are supported in the current 3.0pre Firefox, so they'll work in the final build. Checking Mozilla's addons website isn't that hard, really.

  17. Re:Don't let the door hit you on the way out... on Open Source Killing Commercial Developer Tools · · Score: 1

    But I don't get why enabling cut n paste would lower the learning curve.

    Since most everything else uses Ctrl-X/C/V for cut/copy/paste shortcuts, having Emacs use those same bindings is easier to adapt to than trying to learn its old Ctrl-W/Meta-W/Ctrl-Y bindings.

    The main point is that with a few minor one-time tweaks, Emacs doesn't have to be a pain to learn or use for those that want to.

  18. Re:Don't let the door hit you on the way out... on Open Source Killing Commercial Developer Tools · · Score: 1

    On top of that the emacs death combo buttons would probably give me carpel tunnel, so adding sick leave every once in a while would not help (I'm not kidding, my hands are not made to do the button combinations, tried E-macs got real sore hands and gave up)

    That's probably because your "Ctrl" key is in the wrong spot. Try moving it next to the "A" key to minimize hand strain.

    Also, in modern Emacs builds, enabling "Options"->"C-x/C-c/C-v Cut and Paste" lowers the learning curve dramatically.

  19. Re:GIT? on FreeBSD Begins Switch to Subversion · · Score: 2, Informative

    Emacs is also GPLed, but that doesn't mean everything I write with it is also automatically GPLed. Unless the BSD people are planning to become Git developers, the source license makes no difference. Try reading it sometime.

  20. Re:Beta XORG as well on Fedora 9 (Sulphur) Released · · Score: 4, Informative

    Beta NVidia drivers are available for the beta x.org server. There's also the Nouveau drivers, which might be good enough for 2D performance.

  21. Re:Sadly I've given up on Linux Desktop Distro Shootout · · Score: 2, Insightful

    How do you propose removing the freedom of developers to work on things outside of the One True Distro?

  22. Re:Python+Fortran or JAVA+Groovy on Are C and C++ Losing Ground? · · Score: 1

    I'm not convinced Java's "synchronized" facilities are a significant improvement over Python's global interpreter lock. They both try to solve the same problem of shared data management across threads in a similar way, and I think neither will really scale to huge multi-core systems so long as the lock-and-key mechanisms remain in place.

    Erlang's "nothing shared" philosophy, and functional programming in general, seem to me like a more viable strategy for building large, reliable software systems that can span dozens, or hundreds, of CPU cores.

  23. Re:Apart from the physics on How Ancient Mechanics Thought About Machines · · Score: 1

    The last thing you need is to be sat in the middle seat between two really fat slaves...

    I suppose the nature of the job ensured they wouldn't stay really fat for long.

  24. Re:Contradict a Theory? on Bill Allows Teachers to Contradict Evolution · · Score: 1

    Wasn't the model of the earth flat at one time? I mean, it's great there is a model called evolution, but don't fool yourself into thinking it is absolutely true, no matter what additional information comes about.

    Even the ancient Greeks knew the earth was round, and measured its size pretty accurately too.

    All the facts, from fossil records to DNA, point to evolution as the mechanism by which species change. The finer points of its operation are debatable, but the overall theory will not. There simply aren't going to be any facts which contradict evolution, anymore than facts will arise to show the earth is not round. It's a solved problem, and it's time to move on.

  25. Re:Contradict a Theory? on Bill Allows Teachers to Contradict Evolution · · Score: 1

    Ah, the old "evolution is religion" notion rears its ugly head - again.

    People get riled up because you've trotted out the same old pile of ignorant misunderstands the anti-evolution crowd is so fond of, and those who grasp the subject are getting a bit tired of having to correct them.