Slashdot Mirror


User: drxenos

drxenos's activity in the archive.

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

Comments · 675

  1. Re:Written Before Christianity Was PAGANIZED on British Library Puts Oldest Surviving Bible Online · · Score: 2, Insightful

    How do you know? It maybe not be that they were lying, but nut-job crazy. Besides, you think no one has every gone to their grave hiding the truth?

  2. Re:Written Before Christianity Was PAGANIZED on British Library Puts Oldest Surviving Bible Online · · Score: 2, Insightful

    I don't know, why don't you ask the "Heaven's Gate" cult members.

  3. Re:Funniest Quote on 13-Year-Old Trades iPod For a Walkman For a Week · · Score: 1

    I remember reading an article recently where a woman bought a new ipod and gave her old one to her daughter. The daughter got mad looking at the big, ugly, old ipod and told her mother she was ruining her life.

  4. Re:hmm missing... on Elegant Bachelor Dinner · · Score: 1

    Oh God, yes.

  5. Where to complain on Time Warner To Offer Unlimited Bandwidth For $150 · · Score: 1

    Anyone know what the best way to complain? I have TWC, and I've already emailed them to say I will cancel when this comes to my area. I seriously doubt that will have much of an effect, though.

  6. Re:There is no problem on CFLs Causing Utility Woes · · Score: 2

    Can you explain this a little more for a non-electrical engineer? What exact is apparent power? How does is affect the utility company and not me? Thanks.

  7. Cool on Tesla Coil Imperial March · · Score: 1

    How did they get it to sync with the music?

  8. Re:Buy European? No chance. on USAF Seeks Air Force One Replacement · · Score: 1

    Sure, if you gave them a nice hint like that ("name an airliner"). I didn't say "name an airliner." I said, "what kind of plane is used as Air Force One." I work in avionics, and I don't believe a lot of my colleagues know the answer.

  9. Re:Buy European? No chance. on USAF Seeks Air Force One Replacement · · Score: 1

    Whether or not a 747 itself is recognizable, I won't argue, and isn't my point. Walk up to random person on the street and ask them what kind of plane is used as Air Force One, and I doubt many of them will know the answer.

  10. Re:Buy European? No chance. on USAF Seeks Air Force One Replacement · · Score: 1

    Not completely. The fuselage and blades are built in the UK. Other components are built in Italy.

  11. Re:Buy European? No chance. on USAF Seeks Air Force One Replacement · · Score: 1

    Again, I know that. Now you're just nitpicking. Besides, try telling Lockheed UK that they aren't a European company. LMSI in Owego, NY is the prime, but LM an International corporation.

  12. Re:Buy European? No chance. on USAF Seeks Air Force One Replacement · · Score: 1

    I know that. My point is AgustaWestland is a European company, and is a subcontractor to LM (the prime). People raised a stink because of it, but LM still won the contract.

  13. Re:Buy European? No chance. on USAF Seeks Air Force One Replacement · · Score: 1

    I would argue that the average American does not know or care what kind of plane it is.

  14. Re:Buy European? No chance. on USAF Seeks Air Force One Replacement · · Score: 1

    What does the prime contractor have to do with it? Marine One is contracted to an American company, but the Aircraft is built by a European company.

  15. Re:Buy European? No chance. on USAF Seeks Air Force One Replacement · · Score: 5, Informative

    You're wrong. The helicopter replacing Marine One is European. Why wouldn't they do the same for Air Force One?

  16. Re:She's bad-stupid, and this is why: on Woman Admits Sending $400K To Nigerian Scammer · · Score: 1

    I was going to feel sorry for her, but she whined in the article it would take her TWO years to recouple her loses. Just two years to earn back 1/2 a million.

  17. Re:"Best"? on Ioke Tries To Combine the Best of Lisp and Ruby · · Score: 1

    No, no, no. Dylan Thomas, not Bob Dylan!

  18. Re:wrong answer on How to Search Today's Usenet For Programming Information? · · Score: 1

    (and the groups is actual comp.std.c++)

  19. Re:wrong answer on How to Search Today's Usenet For Programming Information? · · Score: 1

    comp.lang.std.c++ is dead. Has been for a while.

  20. Re:Does it matter? on How Kernel Hackers Boosted the Speed of Desktop Linux · · Score: 1

    It was the presenter that stated this, not the comments. It was something they didn't allow in their 5 second boot up. The comments were just, well, commenting on this.

  21. Re:Hell no. on Should IT Unionize? · · Score: 3, Informative

    My dad was an electrician in a union shop. He would get called in to work a lot to change a light bulb, because no one else was allowed to.

  22. Re:C#++? on Interview Update With Bjarne Stroustrup On C++0x · · Score: 1

    Well, I respect your opinions, but we will have to agree to disagree.

  23. Re:Null on Interview Update With Bjarne Stroustrup On C++0x · · Score: 1

    Also, you are confused about GCC. It does not agree with you. It warns you if you USE NULL in an expression. It does not have an issue with it BEING a integer expression. compiler this in gcc:
    int main()
    {
    void* p = 1 - 1;
    return 0;
    }

    That is a valid C program according to the standard AND GCC.

  24. Re:Null on Interview Update With Bjarne Stroustrup On C++0x · · Score: 1

    Yes, and an integral constant expression resolving to 0 is a null pointer constant. What is your point? 0 is a null pointer constant, as is (1-1) and ((void*)0).

    Your opinion on the C++ standard is irrelevant.

  25. Re:Null on Interview Update With Bjarne Stroustrup On C++0x · · Score: 1

    Sorry, but you are confused. The C standard requires that NULL be an expression that resolved to either a null void pointer or an integer expression that resolves to 0. The C++ standard (which the article is about) requires that NULL be an integer expression that resolves to 0. Because of the stronger typing in C++, NULL cannot be a void pointer. C++ does not allow an implicit cast from a void* (only to a void*).