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:Funny Metallica quote on Music Industry Drafts Code of Conduct for ISPs · · Score: 5, Funny

    "If Microsoft made toilet paper it would be called Butt Wiper." Brian Briggs

    Shouldn't they call it "Anal Explorer"?

  2. Yummy on Scientific American Gives Up · · Score: 1

    Mmmmm, Karma Whoring Goodness..... Now, that's good eatin'!

  3. Re:What I do is... on Computer Crash Reactions Examined · · Score: 1

    My dad, who hates computers with a passion, had a very old XT that my sister didn't want anymore. After calling to see if I wanted it (I collect old computers), he took it outside and blasted away at it with his .357. I think he was smiling for a week after that!

  4. Re:It's inefficient on True Visual Programming · · Score: 1

    I wasn't defending it, just trying to explain it to the OP.

  5. Re:It's inefficient on True Visual Programming · · Score: 2, Informative

    I don't think you understand what "visual programming" is. None of the example you cite are real visual programming. Visual Basic, et. al., are not true visual programming. They are IDEs to help in building software. Visual programming requires no (or almost no) coding. It is all graphical. One example (I forget the system) involved using blackboxes. The boxes has particular functions (i.e., a signal processor). The boxes had connections for there inputs and outputs, and properties to modify their behavior. You just inserted the boxes you wanted, and connected them controlling the flow of your data. This system reminded me of designing digital logic circuits graphically. It's hard to explain, but it was actually more powerful than my description. There are also systems to generate code from UML.

  6. Re:If GCC can compile C++, then... on GCC 4.0 Preview · · Score: 1

    No, the later name was replaced by the former when more langauges were added to GCC.

  7. Re:If GCC can compile C++, then... on GCC 4.0 Preview · · Score: 1

    I can't believe that everyone that replied to this is wrong! gcc is a frontend for all the languages in the collection. It use to stand for Gnu C Compiler when it was just C. Now it stands for Gnu Compiler Collection. gcc is not a compiler. It will execute the correct compiler based on file extension. g++ is the actual g++ compiler. It will not only compile the source as C++, but will automatically link with the C++ library (if necessary). If you compile from gcc instead of g++, you most explicitly pull in the library yourself.

  8. Re:boost, please ? on GCC 4.0 Preview · · Score: 1

    Some of the Boost libraries will be part of the next version of the C++ standard, though I don't know the specific ones.

  9. Re:bit of nitpicking on Israeli Army Frowns on D&D · · Score: 1

    Well, no, they are called RPGs in the USA: rocket propelled grenades.

  10. TaxAct on Open Source Tax Products? · · Score: 1

    I prefer TaxAct. It's about 1/3 the price and does just as good of a job.

  11. Re:There's a good reason on Israeli Army Frowns on D&D · · Score: 1

    But how can you make that assertion when you have met only two? Using that logic, you can make any claim.

  12. Re:There's a good reason on Israeli Army Frowns on D&D · · Score: 1

    Anecdotal evidence is proof of nothing. There have been millions of people over the years who have played D&D or other RPGs. You cite two examples. This is not even a statistical blip. I have known a lot of people how have played these games in my 3+ decades, and all but a couple are well adjusted (whatever that means) people with good jobs and families.

  13. Re:Don't write C++ without boost! on Programming Tools You've Used? · · Score: 1

    Saying that one language is "faster" than another shows your utter lack of logical thought.

  14. Re:the only thing in my hand during D&D is sod on Israeli Army Frowns on D&D · · Score: 1

    Ah, I see your confusion now. Yes, there were boxed sets like that (there were 5--Basic, intermediate, expert, master, and immortal I like was the progression). They were all D&D. But I can see your confusion think the progression led to advanced. It doesn't.

  15. Re:IDF has smart people working for them ... on Israeli Army Frowns on D&D · · Score: 2, Insightful

    If you tried with with me, you would have found your self playing alone. Jump off a cliff because you didn't get the stats you wanted? Fine, your character is dead and you are done.

  16. Re:the only thing in my hand during D&D is sod on Israeli Army Frowns on D&D · · Score: 2, Informative

    AD&D wasn't just another book. It was an entire line of rulebooks. AD&D was derived from D&D, but had more complicated rules and options. The main different I remember is that in D&D character races were also classes (you played an Elf class). With AD&D, the were separate (You could play an Elf whose is of the fighter class). When WoTC bought TSR and created the 3rd edition, they dropped the advanced from the name. I have pretty much every rulebook since the original "whitebox" and can readily see firsthand D&D's changes throughout the years.

  17. Re:not in c++ on Optimizations - Programmer vs. Compiler? · · Score: 1

    Sorry, it's early, first cup of coffee, and didn't proof read. I hope you get the gist.

  18. Re:not in c++ on Optimizations - Programmer vs. Compiler? · · Score: 1

    I would not call auto_ptr smart by any stretch of the would. It has a lot of problem. Besides, it does would with !=, so does not fit your argument. BOOST is not part of of the standard, so also do not fit your argument. By the by, the BOOST libraries that are going into the next release of the standard have already been chosen (though I'm not privy to that info.)

  19. Re:not in c++ on Optimizations - Programmer vs. Compiler? · · Score: 1

    Except that there are not so called "smart pointers" defined by Standard C++.

  20. Re:!var is not always the same as var == NULL on Optimizations - Programmer vs. Compiler? · · Score: 1

    How is that imformative?? It's dead wrong!!! Both ANSI C and C++ require that the compiler treat 0 as a null pointer value, regardless of the internal representation used for NULL. They also require that !p and p == NULL BOTH evaluate to true if p is NULL. I'm shocked how many people are writing the same above crap in this thread.

  21. Re:!p versus p==NULL on Optimizations - Programmer vs. Compiler? · · Score: 1

    ANSI C++ does require the NULL macro to be defined, and required it to be 0.

  22. Re:(ptr == NULL) is wrong in C, bad in C++ on Optimizations - Programmer vs. Compiler? · · Score: 1

    You really should read the standard. To BOTH standard C and C++, a value of 0 indicates to the compiler that it is a null pointer, REGARDLESS of whether a null pointer's internal representation is really 0. Comparing ANY pointer to ANY type against 0 is always valid in both languages.

  23. Re:NULL not always 0 on Optimizations - Programmer vs. Compiler? · · Score: 1

    You really should read the standard sometime. Compilers don't convert NULL to anything. They never see it. Both ANSI C and C++ require NULL to be a macro and require it to be 0. Internally, a null pointer can be anything. But a value of 0, when used with pointers, always indicates to the programmer AND the compiler that it is a null pointer. NULL and 0 are equivilent.

  24. RE: Update from Foley on Arcade Kit Seller Applies for MAME Trademark [updated] · · Score: 1

    I don't care if he is trying to protect his business. That still doesn't give him the right to try to copyright and trademark someone elses work. And regardless of what he is saying now, if he is allowed to do so, what's to stop him from trying and stamp out MAME in the future?

  25. Re:It's dead, Jim on Death of the Album? · · Score: 1

    Seven years??? They just release a new album within the last few months.