Slashdot Mirror


User: mbrix

mbrix's activity in the archive.

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

Comments · 11

  1. HDTV? on Cable HDTV Not Ready For Primetime? · · Score: 4, Interesting

    Can someone please explain HDTV to me? While I was in the states this summer, I saw HDTV on a ~60 inch television. It was amazing. What exactly is this technology, and more importantly, what's the status in Europe? :-)

    I live in Denmark myself.

  2. Re:Meanwhile... on Colorado Researchers Crack Internet Chess Club · · Score: 3, Interesting

    Not in Denmark (and I suspect, many other countries). We are moving to chip-based cards instead. Actually, Denmark is almost fully converted away from magnetic cards.

  3. That's not Europe! on iTunes Europe Goes Live · · Score: 3, Insightful

    Now here is a good example of using big words in titles that are not at all covering for the real thing. "iTunes Europe goes Live". I didn't know that Europe was only UK, France and Germany. This is the same thing as to say that USA is California and Florida.

  4. What can we use this "proof" for? on CD-Rs and MP3s Not Hurting Record Sales · · Score: 4, Insightful

    Why is this important to prove? Even though downloading music doesn't hurt CD sales, does it make it more right? If downloading music becomes legal, *then* it will hurt CD sales. Without doubt.

  5. Re:New Uptime Server on Uptime Realities in the Internet World · · Score: 1

    TuxTime has been up for a long, long time, it even has more participating computers than the "New Uptimes Project".

  6. I just hate it when.. on A Selective History Of The Keyboard · · Score: 1

    I read half-way through the article and the site gets slashdotted.

  7. Netscape 7 on Mozilla RC3 Released · · Score: 5, Insightful

    With the upcoming release of Mozilla 1.0, Netscape 7 will be based on that. I really hope reviewers, developers and users will take a new view on Netscape so Netscape can gain some of the lost market share. I'm tired of seeing websites which simply don't care about Netscape/Mozilla support...

    And don't start saying "hey, I don't need Netscape, I want plain Mozilla!". You're right, but Netscape is for (l)users. If Netscape 7 has success, you'll also have more luck surfing the internet with your Mozilla browser.

    By the way, MozillaZine is also a great source of information for Mozilla-fans.

  8. Re:Don't see the problem on Murray Cumming on Programming for GNOME with C++ · · Score: 2, Interesting

    Go see the gtkmm FAQ: Why use gtkmm instead of GTK+?.

    Working with STL-style interfaces, and having the chance to use std::string and std::vector to input data to your widgets is just *great*.

    Of course, all the other advantages of C++ can be used as an argument on why to use the C++ interface.

    You never mentioned why you don't want to use the C++ interface, maybe you should mention what you consider the disadvantages.

  9. Re:Qt bad gtkmm good? on Murray Cumming on Programming for GNOME with C++ · · Score: 1

    In one one his slides, they are compared pretty nicely:

    http://www.murrayc.com/murray/talks/2002/GUADEC3 /s lides/html/img6.htm

    I have been programming gtkmm for about a year now, and I really love the APIs. If you know the STL, you'll also feel at home with the gtkmm API.

    As an example, the Gtk::Notebook widget provides push_back() for pushing back your widgets, and you can iterate through the list using rows().begin() and rows().end().

    Another thing is that you won't have to fiddle with MOC. And no reason to add 'Q_OBJECT' to all of your classes.

    I'm looking forward for the Windows support, then we'll have a *great*, 100% free widget set for Windows.

  10. Re:The only real downside is the implementations on Downsides to the C++ STL? · · Score: 1

    You are wrong. Look at std::vector, it has both a [] operator and a at() member - the at() member throws an exception while [] does not, you have a choice.

  11. The only real downside is the implementations on Downsides to the C++ STL? · · Score: 1

    To sum up the different comments - the only real downside is the implementations on the different platforms. First of all, not all compilers have STL implemented fully (I think g++ 3.1pre has it all). Second, older systems and embedded systems totally lack an STL implementation. The rumours about the STL having a lot of overhead because of virtual functions etc. is not true - one of the goals with the STL was speed and therefor it was implemented without virtual functions, but just concrete templated classes. Sure, a std::vector has overhead compared to a built-in array, but development is usually faster using vector because it dynamically resizes and it throws exceptions when trying to reach an element which is out of range.