Slashdot Mirror


User: mfwitten

mfwitten's activity in the archive.

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

Comments · 337

  1. Re:Theory vs. Fact on The Hidden Reality Draws Ire From Physicists · · Score: 1

    If something is all salt, than it is not sugar at all.

    By grammar alone: The word "than" implies exclusion; while the exclusion is on a continuum in the case of the mixture, such a continuum doesn't even exist when using the terms "theory" and "fact" as a scientist would use them.

    To the layman, the word "theory" means "not proved to be factual" (it is more akin to what a scientist would call "hypothesis"); here a continuum would exist. However, to the scientist, the word "theory" describes a set of related/self-consistent/dependent statements regardless of whether or not they are physical facts: The Theory of Evolution was a theory before it was proved to be factual, and it remains a theory after it was proved to be factual.

    The statement "it is more theory than fact" is like saying: "it is more thing than cat" (it is a thing regardless of whether or not it is a cat).

  2. Theory vs. Fact on The Hidden Reality Draws Ire From Physicists · · Score: 2

    more theory than fact

    To scientists, these terms are not mutually exclusive.

  3. Re:Wow this is a bit onesided. on The Ambiguity of "Open" and VP8 Vs. H.264 · · Score: 1

    It is possible for anyone to have contributed or to contribute further to the C++ standard; all members of the 'committee' are volunteers.

  4. Re:Summary is incorrect on Sony Adopts Objective-C and GNUstep Frameworks · · Score: 1
    What is particulary humorous is that the Maintainer of GNUstep recently wrote a blog post titled GNUstep Is Not OpenStep...:

    Hey guys. I thought I would make this blog post to make a point: GNUstep is not OpenStep. GNUstep is a Cocoa implementation and has been for quite some time.

  5. Re:Devil's Advocate: What about competition? on Like Democracy, the Web Needs To Be Defended · · Score: 1

    AT&TOL is begging for people to please give them a try because they put the internets in your computer

    I'm looking forward to my FREE HOURS !

  6. Re:An interesting motto on Austria's 'Bionic Man' Dies In Car Crash · · Score: 1
    Maybe I'm not cynical enough. The Austrian article says the same thing:

    "Lebe nicht für andere, sondern lebe für dich!", war das Motto des gelernten Kfz-Mechanikers, der mit 17 Jahren auf einen Strommasten geklettert war und dabei beide Arme verloren hatte.

  7. Re:An interesting motto on Austria's 'Bionic Man' Dies In Car Crash · · Score: 1
    Given the context:

    "I love driving. My licence has given me back my independence," he wrote, saying his motto was: "Don't live for others, live for yourself!"

    I think the motto as printed is a mistranslation. Consider this variant:

    "I love driving. My licence has given me back my independence," he wrote, saying his motto was: "Don't live through others, live through yourself!"

  8. Re:How fast was that galaxy moving? on Record-Breaking Galaxy Found In Deep Hubble Image · · Score: 2, Insightful

    Think of space as muffin batter, and think of the galaxies as chocolate chips in the batter; as this mixture bakes, the batter expands everywhere, and consequently the chocolate chips become farther apart from each other.

    Or, think of space as a balloon, and think of the galaxies as little ink marks on the surface of the balloon; as air is pumped into the balloon, the surface of the balloon expands, and consequently the chocolate chips become farther apart from each other.

    There is no central point from which galaxies were flung; after all, into what could they have been flung? Instead, the space between matter has expanded with time (and the greater the distance between two things, the greater the rate of expansion between them).

  9. Re:Creator and Overseer of Android Responds on Steve Jobs Lashes Out At Android · · Score: 1

    Not open like Firefox, not open like OpenOffice. Open like Darwin.... I'm just saying that its openness provides no real benefit and shouldn't be regarded as a positive selling point.

    I may disagree here; from what I understand, Android users ultimately* don't have to wait for some centralized authority to approve an application, and consequently Android users don't have to worry about some centralized authority removing acces to applications.

    *Official `App Stores' aren't required; in that sense, Android does provide users with more computing benefits.

  10. Re:Creator and Overseer of Android Responds on Steve Jobs Lashes Out At Android · · Score: 1

    Typical elite geek attitude that only people who know how to hack are entitled to the fullest benefits of computing.

    Only people who know how to hack are CAPABLE of harnassing the fullest benefits of computing.

  11. Re:And in typical Ballmer fashion on Ballmer Promises Microsoft Tablet By Christmas · · Score: 1

    .NET is not even a C/C++ framework, so why it's listed alongside gcc is beyond my comprehension. It's like complaining that you can't write Rails apps with gcc.

    From gcc's website:

    GCC, the GNU Compiler Collection

    GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...). GCC was originally written as the compiler for the GNU operating system. The GNU system was developed to be 100% free software, free in the sense that it respects the user's freedom.

  12. Re:No amount of documentation ... on Autotools · · Score: 1

    For instance, instead of making a C program which outputs values with printf, make it so that the values are used as initializers for static data. Then use the cross-compiling toolchain's "nm" utility to extract the values from the compiled object file. You don't have to run a program to know how wide a (void *) is. Just do "static char size_of_void_star[sizeof (void *)]". Compile it, and then interrogate the .o to discover what is the content of the size of the data region named by size_of_void_star!

    <limits.h>