Slashdot Mirror


User: twistedcubic

twistedcubic's activity in the archive.

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

Comments · 1,281

  1. Re:Is LaTeX worth it for humanities/soc. sciences? on Collaborative Academic Writing Software? · · Score: 1

    Just a nitpick: Knuth didn't write the LaTeX extension. And the error messages are much easier to track than those of GCC (IMO). The key is to note the line number of the first error, which almost always indicates where the first error is (except maybe when you have unbalanced braces, which your favorite editor can sort out).

  2. Re:Did His Contract Specify "Internal Waters"? on How To Rack Up $28,000 In Roaming Without Leaving the US · · Score: 1

    After 18 months of AT&T dropped calls, I just pressed the phone rep until she let me out of the contract w/o the fee. AT&T in California is just crap. But people are just used to it (kinda like pre Windows XP always crashing). Now I know what the most important aspect of cell phone service is. I traded good reception and stable connections for 2500 rollover minutes (gee, I just realized I'm stupid). I look forward to getting my $2 from any upcoming class action suits about the "fewest dropped calls" lie.

  3. Re:I'm a high school student.... on Mathematics Reading List For High School Students? · · Score: 1

    I wish I had known about Kunth's book in high school. The title is misleading-- I might have noticed it if "math" were in the title. Awesome books!

  4. Re:What is the point? on Triple Booting an Intel Mac the Right Way · · Score: 1

    I used to think the same until I got a Mac. I love the Terminal App, and I use the exact same software I use on Linux-- GNU Screen, Vim, Unison, TeXlive, GCC, Git, virtual desktops (spaces) etc... I just don't see the difference, really. AND, with the Mac laptop I get 5+ hours of battery life and a slim case for $1000.

    I don't dual boot because it seems nowadays everyone is compiling free software for Intel Macs (and I don't use Fink anymore). All my desktops are Linux, but I do like how Itunes handles podcasts, which I'm addicted to (Itunes is more polished than Rhythmbox, but I can go with either).

    I could never use OS X on a desktop-- it would be way too inflexible. But when I'm on the road, Vim in the Terminal App with long battery life is just AWESOME.

  5. Re:You might like... on ASUS and Intel Launch Collaborative PC Design Site · · Score: 1

    You provided a link with no images. That's the best part.

  6. Re:woah woah woah on Poll Finds 23 Percent of Texans Think Obama is Muslim · · Score: 1


    I think you're reading a different New Testament than I am.


    Did you skip the parts written by Paul?

  7. Re:Please. on Poll Finds 23 Percent of Texans Think Obama is Muslim · · Score: 1

    What if all "respectable economists" are stupid? I would be more interesting in hearing a detailed, mathematical analysis of why the bailout is needed. Paranoia and gut feelings of "respectable economists" don't count. There was no evidence given, by anyone, that the commercial paper market couldn't sort itself out (with some casualties, of course, but that's life). If you claim that these economists know better than us, please give a link to their detailed explanations. It's not possible to come to these conclusions without doing some number crunching. Where is it?

  8. Re:How could 63% of people be wrong? on Poll Finds 23 Percent of Texans Think Obama is Muslim · · Score: 2, Informative


    Most people opposed the $700 billion bailout. I've yet to find a serious economist or capitalist who believes that no action was a valid alternative...
    I heard a couple economists on NPR claim the problem would work itself out, mostly. I don't remember names, sorry. But really, I think you're making a mistake assuming economists are scientists. I think they're more like lawyers-- you can always find one with any given opinion.

  9. Re:What Type of Connection Are You Using? on Ubuntu 8.10 (Intrepid Ibex) Released · · Score: 1

    He's probably camped out in Canonical's basement, with his laptop connected to their LAN.

  10. Re:Before I hit their site on Lame Duck Challenge Ends With Free Codeweavers Software For All · · Score: 5, Informative

    Codeweavers is a respectable business. They sell a customized version of Wine which is tuned to run popular proprietary software (MS Office, Adobe stuff, etc...).

  11. Re:And the web site was already slow this morning. on Lame Duck Challenge Ends With Free Codeweavers Software For All · · Score: 1

    Coincidentally, I got up early today, at 4:30AM Pacific time. Still too late.

  12. Re:This just in: on Compromised SSH Keys Lead To Linux Rootkit Attack · · Score: 1

    How do you drop "capabilities to remount read-write"? What does this mean? Will you never be able to update your root filesystem again? I would use a VPN, but many public places offering wireless internet block all outgoing ports except tcp 80 and 443, so I have to run ssh servers on these.

  13. Re:You've GOT to be kidding! on NIST Releases Report On WTC 7 Collapse · · Score: 4, Insightful

    Well, if NIST says so, it MUST be true.

  14. Re:Open Voting on Diebold Admits Ohio Machines May Lose Votes · · Score: 1

    Let me guess. Your name is John Doe III, and your grandfather's name is John Doe?

  15. Re:Some counterpoints. on Interview Update With Bjarne Stroustrup On C++0x · · Score: 1

    As for the rest of it, I just wanted to see what an actual use of boost::any looks like. So far nobody seems to care to provide an example.

    You should probably read that as, "nobody here finds boost::any useful". Kinda like the example you gave, where you use a hash when there are likely better ways to represent what you want. The beauty of C++ is that, even if C++ had such a built-in construct, it would be much less error-prone because of type-checking.

  16. Re:That's Not "Ironic" on Iran Announces Manned Space Mission Plans · · Score: 3, Insightful

    Think again. We're unpopular, we're often complained about, BECAUSE WE ARE PREEMINENT. No other reason is necessary.

    Nonsense. If the U.S. doesn't have a history of meddling in middle eastern affairs, there is no 9/11. This is the explanation given by the terrorists. What reason is there to lie? If China wins more gold medals in the current Olympics, won't they be "PREEMINENT" as well? Once China's economy is bigger than ours, will China suffer terrorist attacks?

  17. Re:Some counterpoints. on Interview Update With Bjarne Stroustrup On C++0x · · Score: 1

    2. Likewise, an external library. But putting that aside for a moment, what's the C++ equivalent to this python code?
    d = {"name":"Bob", "age":42}
    print "Name is %s and age is %d" % (d["name"], d["age"])
    Keep in mind that this is a complete python program, no further code is required.

    #include<map>
    #include<string>
    #include<iostream>

    using namespace std;

    int main()
    {
            std::map<string,string> d;
            d["name"]="Bob"; d["age"]="42";
            cout<<"Name is "<<d["name"]<<" and age is "<<d["age"]<<endl;

            return 0;
    }

    Oh, but you might say, 42 is an integer, not a string. There are simple workarounds, but here's a better suggestion.

            struct Person {
                    Person(string n, int a): name(n),age(a) {}
                    string name;
                    int age;
            };

            Person D("Bob",42);
            cout<<"Name is "<<D.name<<" and age is "<<D.age<<endl;

    Note how the Person object can be re-used. To create another, I just write

    Person E("Alice",27);

    This is shorter than your cute example. But these comparisons are silly anyway.

  18. Re:I just don't get it.... on Interview Update With Bjarne Stroustrup On C++0x · · Score: 1

    2. Flexibility. In C++ it is essentially impossible to make, say, a dictionary where each key can refer to an object of a completely different type. This is what you refer to as "sloppy", but I actually find this flexibility to be essential in designing good software. The fact that C++ does not allow it forces me to either twist my program's design in unnatural ways to fit the language, or do a lot of extra work to twist C++ to fit my program's design.

    std::map does this, if I understand your description. I think you're just nitpicking the rest.

  19. Re:First arrival on My Job Went To India · · Score: 1

    So you're saying that the people who complain about outsourcing are can't get jobs because they're not decent workers or they act like Napoleon Dynamite? I wish that were true...

  20. Re:As I understand it... on Error-Proofing Data With Reed-Solomon Codes · · Score: 2, Insightful

    You mean to say injective, though being bijective is sufficient.

  21. Re:My LaTeX writing experience on Modern LaTeX Replacement? · · Score: 1

    Really, the TeXbook is where it's at, but Doob's Gentle Introduction to TeX (http://www.ctan.org/tex-archive/info/gentle/) can be digested in a day if you're a LaTeX veteran. If you want a book with all the commands (other than the TeXbook) there is another free book on CTAN: TeX by Topic, a Texnician's Reference (http://ctan.org/tex-archive/info/texbytopic/).

  22. Re:Why latex at all ? on Modern LaTeX Replacement? · · Score: 1

    I agree, LaTeX can be a pain. In my opinion, TeX is to LaTeX like Linux is to MS Windows. It takes a little while to learn to write useful macros, but the freedom and control you get as a result is mind-blowing.

  23. Re:FISA clearly violates consitution on ACLU Files Lawsuit Challenging FISA · · Score: 1

    Actually, I don't think it violates ex post facto. That would be retroactive guilt, not retroactive immunity.

  24. Re:Let me help you understand his point on Claimed Proof of Riemann Hypothesis · · Score: 1

    No need to be rude with the dense comment.

  25. Bookeye/KIC scanners, and the like on Digitizing Old Magazines? · · Score: 1

    Some libraries have this: http://www.dlsg.net/kic2.shtml. If you're in southern California, the UCLA biomedical library has one. Sixteen cents a page, though. The cool thing is that you can stick a USB drive into the thing and save in several image formats, including tiff. And you can preview the scan before saving (and paying for) images.