Slashdot Mirror


What 2008 May Hold In Store for FOSS

eldavojohn writes to mention that LinuxPlanet has a brief discussion on what 2008 may hold for FOSS. The list includes thoughts on KDE 4, OOXML, DRM, and 3-D desktops. What boons for FOSS are you looking forward to in 2008?

266 comments

  1. opengl console by rucs_hack · · Score: 4, Interesting

    That's what I'd like, a version of bash implemented in opengl, so I can make the console apps I write look funky.

    Not perhaps the highest priority of the FOSS world, but sometimes you just gotta go with 'it`d be fun'.

    1. Re:opengl console by ByOhTek · · Score: 1

      What would you get from OpenGLing bash?

      You could render the terminal on OpenGL, but that would affect any program run on the terminal, not just bash.

      --
      Self proclaimed typo king, and inventor of the bear destroying coffee table (patent not pending).
    2. Re:opengl console by Anonymous Coward · · Score: 0

      i like your idea except for one thing.......
      many years down the road, it may in fact become the technology i laugh at in movies. what am i talking about? example. the movie 'hackers'.
      why is it, in scenes of movies with someone hacking there are all these mutlicolored words WOOSHING towards the screen with sound and all these pretty colors and fake OS's. im sure as most of us know hacking doesnt look particularly fun to the outsider.

      i know of one and a half exceptions to this particular type of falsified hacking scene in movies.

      in one of the matrix sequels trinity goes to disable some power station, and if you look closely shes actually nmaping a box. that i thought was kinda cool.

      the 'half' example is antitrust. there is one point where the kid is actually using nix, but the commands he used and the behavior of the console are all exaggerated

      id like to see standardization really take off for nix os's. there is not any one single distro that could toppple MS's os. but, if every distro was more integrated and standardized to the everyday person unix and linux would dominate the market.

      if a random computer user goes to the store they want to be able to buy a cd that is going to work out of the box with their computer, they dont want to worry about apt-getting, ./sysinstalling, cvsuping ports trees, compiling a custom kernel that should have already had support for _____ out of the box (and ill point fingers here, i thought it was the most retarded thing in the world when i went to use a fellow sysadmins fedora box to image a windows drive and come to find out fedora doesnt have ntfs support by default. you have to install ntfs3. come the fuck on. what is ntfs support in the kernel? 200k at tops? fucking retarded.)

      but standardization has to start somewhere, and as long as we keep creating apps and OS's that are inherently coded not to play along with one another, we will never see this unification except when it comes in the form we dont want it as. TCPA and a new network stack ala MS to secure the internet from terrorism.

    3. Re:opengl console by pionzypher · · Score: 1

      On that general topic... I'd like a decent visualization for xmms. ProjectM would be promising if it ever worked. Again, not high priority... but it's something I'd like for parties and it would be one less things my friends goad me about for using linux.

      Though I suppose things are well if I'm complaining about visualization plugins. :P

      --
      I'll believe in corporations having personhood when Texas executes one... - advocate_one
    4. Re:opengl console by poopdeville · · Score: 1

      Ruby? Python? SmallTalk?

      --
      After all, I am strangely colored.
    5. Re:opengl console by Curtman · · Score: 1

      I'd like a decent visualization for xmms.

      People still use XMMS? I thought most people moved on to Amarok/Rhythmbox years ago.
    6. Re:opengl console by Anonymous Coward · · Score: 0

      How about a terminal emulator with escape codes for OpenGL. Then you could use it from bash or from any scripting language. You could even display 3-D images with cat.

      Just a thought...

    7. Re:opengl console by 427_ci_505 · · Score: 1

      What would you get from OpenGLing bash?

      3D Databases ala Hackers :P

    8. Re:opengl console by caluml · · Score: 2, Interesting
      Yeah, Amarok, sure. If I need a quick little app to listen to streaming audio at work, of course I want to install some all-singing, all-dancing thing that pulls in Postgres, Ruby, etc.

      $ ldd /usr/bin/amarokapp | wc -l
      69
      No, XMMS did fine. And now I'm using Audacious, although it doesn't do some things as well as XMMS did. Amarok, while great isn't even in the same section as XMMS.
    9. Re:opengl console by SanityInAnarchy · · Score: 1

      Exactly.

      PowerShell is kind of cool, but not entirely unique. The one thing it has over Ruby/Python/Smalltalk is that it pretends to also be a decent commandline interface, which I very much doubt it is.

      --
      Don't thank God, thank a doctor!
    10. Re:opengl console by morgan_greywolf · · Score: 2, Interesting

      Speaking as a fairly competent Python programmer (you may look at my code and disagree, but I digress :), I have to say that while Python does smooth over some of the differences between platforms and distributions, it doesn't solve all the problems.

      Here's an example: I have a program for Epson Stylus printers that is a GUI front-end for escputil called Stylus Toolbox. Stylus Toolbox reads things like ink status from the printer. In order to do that, it must pass the raw printer device to escputil.

      Now, the user shouldn't have to configure Stylus Toolbox with the raw printer device. Stylus Toolbox should be able to get this information from CUPS (which escputil already relies upon). So, imagine a USB printer. Unfortunately, CUPS used to give information like usb:/dev/usb/lp0, but now it gives information like usb://vendor/identifier, so a single Stylus C88 connected to the box looks like usb://EPSON/Stylus%20/C88 (I have no idea what it returns if there's more than one C88. Anyone who knows let me know! It's not in the docs!)

      So, you have to get it from the USB port. Now there are multiple ways to do this. You could shell out to external commands like 'lsusb' and some combination of sending/receiving commands from the USB device, but this doesn't work well and isn't platform independent. You can also get the information from HAL, but this is only platform independent to a point -- what if a particular platform isn't supported by HAL? You're kinda screwed. And on Windows -- well, you gotta do it some other way.

      So, you get the idea. My latest dev version is getting the information from HAL, because that's an open standard, but that means new versions won't work on platforms that don't use HAL -- or at least the user will have to manually specify the raw printer device.

    11. Re:opengl console by Anonymous Coward · · Score: 0

      "I have to say that while Python does smooth over some of the differences between platforms and distributions, it doesn't solve all the problems. Here's an example: ..."

      You lost me. I really don't see the connection between Python and detecting printer ink cartridge status levels. Are suggesting that a programming language's core should provide built-in printer driver support?

    12. Re:opengl console by rucs_hack · · Score: 3, Funny

      People still use XMMS? I thought most people moved on to Amarok/Rhythmbox years ago

      Aha, you must be one of those Gentoo people :-)

    13. Re:opengl console by Hognoxious · · Score: 2, Funny

      it may in fact become the technology i laugh at in movies. what am i talking about?
      Wild guess - the shift key?
      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    14. Re:opengl console by Jonner · · Score: 1

      A more *nix-ish, *sh-ish approach would be to write standalone commands that allowed one to make OpenGL calls using command lines. Then, you could use whatever shell you wanted. But, since OpenGL manipulates large data sets like vertices and textures, I shudder to think what those command lines would look like.

    15. Re:opengl console by MrHanky · · Score: 1

      Comment rating:
          50% Interesting
          30% Overrated
          20% Funny

      2008: the year when Slashdot ditches its "news for nerds" slogan for something more fitting, like "news for the technologically illiterate and cringeworthy trolls for the rest of us".

    16. Re:opengl console by pembo13 · · Score: 1

      I'm pretty sure that amarokapp doesn't need Postgres and Ruby -- unless something has seriously changed of late.

      --
      "Thanks for all the money you paid to us. We've used it to buy off ISO among other things" -Microsoft
    17. Re:opengl console by dasunt · · Score: 1

      XMMS mostly works[1] for me, and it minimizes nicely, plus I can use xmms-shell to tie other things to it.

      What feature of amarok/rhythmbox do I need?

      Does amarok or rhythmbox even minimuze as small as xmms? I can't find a screenshot of either not taking up most of the screen.


      [1]I would like XMMS to understand what UTF8 is when it is minimized.

    18. Re:opengl console by Anonymous Coward · · Score: 0

      +5, Hilarious.

      To you, Sir, I would award all my points.

    19. Re:opengl console by morgan_greywolf · · Score: 1

      It's just an example. I'm not saying that at all. The point was that I was demonstrating that platform differences do indeed still exist. Python tries to smooth them over to some extent by providing modules that work cross-platform, but not all modules are cross-platform nor can they be and I used this program as an example to show that. IOW, if you care about being cross-platform, you still end up having to write compatibility layers just like you would do in C -- an example being Mozilla's cross platform toolkit. I don't actually give that much of a rat's ass whether Stylus Toolbox works on OSes other the major Linux distros. It would be nice if it also worked well on BSD with full functionality like device autodetection, but this isn't strictly required.

    20. Re:opengl console by jhol13 · · Score: 2, Interesting

      Cheez ... I'd be happy with a terminal which handles ctrl-c (etc). as copy.

      Besides, I'm already 2008! Bite that!

    21. Re:opengl console by caluml · · Score: 1
      These are the options that Amarok has in Gentoo:

      media-sound/amarok-1.4.7-r2 USE="ifp kde mp4%* musicbrainz opengl postgres -amazon% -arts -daap -debug -ipod -mtp -mysql -njb -python% (-real) -visualization -xinerama (-aac%*) (-noamazon%*)"
      Not sure about Postgres now - but I'm fairly sure that when I first installed it, it demanded either MySQL or Postgres to do all its playlist/rating stuff. And now my ratings are in there, I don't want to change.

      The ruby dependency is hard-coded in in Gentoo - I think it's for the lyric scripts. It's the only app on my whole system that requires it, which annoys me.
    22. Re:opengl console by Anonymous Coward · · Score: 0

      The ruby dependency is hard-coded in in Gentoo

      Amarok 1.4.7's README contains:

      DEPENDENCIES
      ==============
       
      Required
          * KDE-Libs 3.3 (or newer)
            http://www.kde.org/
       
          * TagLib 1.4 (or newer)
            (metadata tagging library)
            http://freshmeat.net/projects/taglib
       
          * Ruby 1.8
            (programming language, used for scoring, lyrics, last.fm streams)
            http://www.ruby-lang.org/
      Amarok 1.4.7's amarok/configure.in.in contains:

      if test "x$RUBY" = "xno" -o "x$have_ruby_h" = "xno"; then
          amarok_error_noruby=yes
          DO_NOT_COMPILE="$DO_NOT_COMPILE amarok"
          no_amarok=yes
      fi
    23. Re:opengl console by larry+bagina · · Score: 1

      I've always considered control as a GUI modifier key to be bad form, considering it's historical usage. BeOS used Alt. MacOS has the Apple Key. Using the control key seems to be one of those "copy it from windows" ideas that plagues free software.

      --
      Do you even lift?

      These aren't the 'roids you're looking for.

    24. Re:opengl console by eno2001 · · Score: 4, Funny

      Oblig: "I know this! This is Unix"!

      --
      -"...bad old ideas look confusingly fresh when they are packaged as technology" - Jaron Lanier (Digital Maoism on Edge.o
    25. Re:opengl console by eno2001 · · Score: 1

      Hmmm... not sure I agree with you on objects. It seems to me that it takes a LOT more work to create an object and for little return. Whereas data and a function that can be applied to it are as simple as you can get. Any takers?

      --
      -"...bad old ideas look confusingly fresh when they are packaged as technology" - Jaron Lanier (Digital Maoism on Edge.o
    26. Re:opengl console by eno2001 · · Score: 1

      Xmms gave way to Audacious. Which is pretty much XMMS with good layer of updates. However, I long left XMMS for Totem (Gnome's default media player) for audio and have always been a Xine fan for everything else.

      --
      -"...bad old ideas look confusingly fresh when they are packaged as technology" - Jaron Lanier (Digital Maoism on Edge.o
    27. Re:opengl console by Bandman · · Score: 1

      Utterly off topic, but I've used that interface (or one very very similar) and it sucks, because it's constantly doing disk checks to see how big directories are so it can render them "properly". Basically the equivalent of running "du -h" on every directory. It makes it really slow to just browse around. Otherwise a neat effect, though.

    28. Re:opengl console by Bandman · · Score: 2, Informative

      If you haven't seen it (and I assume you have, but just in case) check out Antitrust. An overly enjoyable movie full of cheese with some pretty nice looking girls.

      There was a point where the head security guard was like "dust for prints on the shift and control keys; keys geeks use, but other people don't". I remember thinking "that's a pretty good idea".

    29. Re:opengl console by Bandman · · Score: 1

      I really think that it depends on the scope of the project.

      There are a few times where I suppose I could have used objects in my shell scripts, but then I'm insane sometimes. A shell script utilizing objects is probably more effective in another language.

      An example where I could see using objects in bash might be in my getrss

    30. Re:opengl console by Bandman · · Score: 2, Funny

      Hard coded in Gentoo? Isn't that against the law or something?

    31. Re:opengl console by Bandman · · Score: 1

      Ack! You, sir, offend my sensibilities.

    32. Re:opengl console by balazsbela · · Score: 1

      If that ever happened I could finally watch youtube vids in elinks.

    33. Re:opengl console by ErroneousBee · · Score: 1

      I'd like opengl in the GIMP layers dialog, to expand the layers in a 3D/isometric view.

      --
      **TODO** Steal someone elses sig.
    34. Re:opengl console by garaged · · Score: 1

      i use debian, but u know what, i started using amarok back in my gentoo days, ur right

      --
      I'm positive, don't belive me look at my karma
    35. Re:opengl console by Anonymous Coward · · Score: 0

      id like to see standardization really take off for nix os's. there is not any one single distro that could toppple MS's os. but, if every distro was more integrated and standardized to the everyday person unix and linux would dominate the market.

      It'll never happen for Linux because it's already far too fragmented. A different OS like Syllable can provide that sort of standardisation, but it's a long way off any making any significant impact on users.

    36. Re:opengl console by Curtman · · Score: 1

      Does amarok or rhythmbox even minimuze as small as xmms? I can't find a screenshot of either not taking up most of the screen.

      With Amarok, I use the notification applet most of the time. There isn't any reason to have it open and taking up most of the screen that I can see except when changing tunes. Then there's the player window or the minimized version of the player window

      I'm not sure what you're looking for, but one of those has to be it.
    37. Re:opengl console by pembo13 · · Score: 1

      See that's just a distro thing. In Fedora, in only mandatas SQlite

      --
      "Thanks for all the money you paid to us. We've used it to buy off ISO among other things" -Microsoft
  2. My hope for 2008 in FOSS by Enlarged+to+Show+Tex · · Score: 4, Funny

    A Linux port of Duke Nukem Forever, now that we finally know it isn't just vaporware...

    1. Re:My hope for 2008 in FOSS by Anonymous Coward · · Score: 0

      Do you still believe in Santa Claus too?

    2. Re:My hope for 2008 in FOSS by hritcu · · Score: 1
      --
      If you don't fail at least 90 percent of the time, you're not aiming high enough. (Alan Kay)
    3. Re:My hope for 2008 in FOSS by rainhill · · Score: 1

      where! where!!? :)

  3. Free Beer by IceCreamGuy · · Score: 5, Funny

    I've been hearing about this "free beer" with FOSS for years... maybe in 2008 we'll finally get some?

    1. Re:Free Beer by sumdumass · · Score: 1

      Actually, "Free Beer" is the name of the band that makes the sounds when opening and compiling programs. You've had it all along and didn't know it..

    2. Re:Free Beer by Wonko+the+Sane · · Score: 1

      I've never understood the appeal of beer. If FOSS started coming with beer then I'd switch back to microsoft.

    3. Re:Free Beer by LiquidCoooled · · Score: 5, Funny

      You don't have to drink beer with your OSS, I've heard Wine works really well with Microsoft cheese :)

      --
      liqbase :: faster than paper
    4. Re:Free Beer by maclizard · · Score: 1

      so what, are you too good for beer? because if you are, Microsoft might not be the best choice...

    5. Re:Free Beer by Reality+Master+101 · · Score: 1

      I've never understood the appeal of beer. If FOSS started coming with beer then I'd switch back to microsoft.

      I agree with you. Beer is totally disgusting. I have no idea why there is such widespread popularity. The only thing I can figure is that most people have a desensitized "bitter taste sense" and they just don't know that it tastes really bad. :)

      --
      Sometimes it's best to just let stupid people be stupid.
    6. Re:Free Beer by Anonymous Coward · · Score: 0

      No, my sense of bitterness is not desensitized. It has become more refined as I've tasted new and more bitter India Pale Ales. There are lots of kinds of sharp tastes, and while some are unpleasant, some are delicious. My favorite beer, Stone Brewery's Arrogant Bastard, has a strong taste of grapefruit. Stone's IPA has a strong taste of flowers.

      To each his own though.

    7. Re:Free Beer by Anonymous Coward · · Score: 0

      I've never understood the appeal of beer. If FOSS started coming with beer then I'd switch back to microsoft. Some beer is decent (Sam Adams), but other beer is downright vomit inducing (Budweiser, Busch, Miller, etc). Personally, when I drink it's either rum, rum with coke, a mojito (rum, carbonated water, sugar, lemon juice, mint leaves), or Mike's hard lemonade/lime.

      Still, I don't like the way alcohol makes me feel. I'd rather have free weed...

      --
      Occifer, I'm not as think as you stoned I am.
    8. Re:Free Beer by EsbenMoseHansen · · Score: 1

      Well of course, but you might have to brew it yourself, unless you can find someone to brew it for you. The recipe is here: free beer Personally, I plan to try it out sometime 2008.

      --
      Religion is regarded by the common people as true, by the wise as false, and by rulers as useful.
    9. Re:Free Beer by Anonymous Coward · · Score: 1, Funny

      Those people you're talking about - we call them men.

    10. Re:Free Beer by falconwolf · · Score: 1

      I agree with you. Beer is totally disgusting. I have no idea why there is such widespread popularity. The only thing I can figure is that most people have a desensitized "bitter taste sense" and they just don't know that it tastes really bad. :)

      It's possible to make a sweet beer. First leave out the hops, hops are what give beer it's bitterness. Then add more sugar when brewing but don't allow the yeast to convert it all to alcohol. Actually in Northern Europe beer made from fruits can be found everywhere. Though I haven't tried it yet I'd like to give it a shot at making beer with blueberries as well as strawberries. Many people like bitterness though, whereas some like sweet. Me, I love hot and may use peppers the next tyme I brew some beer.

      Falcon
    11. Re:Free Beer by Anonymous Coward · · Score: 0
      Slashdot ate your OE, here: Vores Oel

      Interesting concept.

    12. Re:Free Beer by apoc.famine · · Score: 1

      For the first 25 years of my life, I felt likewise. Now granted, my tastes may have changed, but in addition I found the "secret" about beer:

      The cheap stuff tastes like crap. The expensive stuff is often delicious.

      The barrier to entry? Cost. You won't go buy yourself an expensive chocolate stout or fine Belgian ale because they cost a lot of money, and you don't like beer. However, should that introduction ever be made, you might find that you can appreciate a good beer.

      It is possible that you really dislike beer, but most of the people I've found who say that haven't had a really good beer. Budweiser and Fosters and the rest of the beers which look and taste like urine aren't worth drinking. They make god sad.

      If you're in the US, and *think* you hate beer, find a bottle of Chocolate Stout from the Rogue Brewery. If you're in the NY area, find a Three Philosophers from Brewery Ommegang in upstate NY. Basically, try beers which cost the same as a good wine.

      Just as a real wine aficionado would happily drink a $20 bottle of Cabernet Sauvignon, but would recoil in horror at a $4 bottle of Boone's Farm Fuzzy Navel flavored malt beverage, so do beer aficionados turn their nose up at beers which look and taste like mine a few hours after I drink them. 99% of stores sell crap "beer", for the same people who appreciate Boone's Farm and Arbor Mist "wines". 95% of restaurants and bars do likewise.

      Even if you think you hate beer, don't be afraid to keep looking. Stay away from the big breweries, and try the darker wares of microbreweries. If you hate bitter beers, stay away from Pale Ales, especially IPA. (Even I can't do those.) There are some amazing Belgian beers in the Dubbel, Saison and Lambic styles, which easily rival fine wines. There's a very good chance you can find one or three beers you like, if you look hard enough. Of course, that's assuming you care enough to try.

      --
      Velociraptor = Distiraptor / Timeraptor
  4. heh, half mentioned in the summary by ByOhTek · · Score: 2, Interesting

    KDE4 is half of what I want.

    The other half is FreeBSD 7. Given it is on RC1 now, it'll be there in Feb is my guess.

    --
    Self proclaimed typo king, and inventor of the bear destroying coffee table (patent not pending).
    1. Re:heh, half mentioned in the summary by Junta · · Score: 1

      http://www.freebsd.org/releases/7.0R/schedule.html

      Of course, the 6.3 release seems to be behind schedule, but they haven't officially missed any 7.0 release milestones yet and the schedule puts it at mid January.

      --
      XML is like violence. If it doesn't solve the problem, use more.
    2. Re:heh, half mentioned in the summary by ByOhTek · · Score: 2, Interesting

      actually, that site has been excessively modified.

      it was originally supposed to have the final build on Dec 12. In the new schedule, RC1 was Dec. 12 and it wasn't built until last friday morning (Dec 28), RC2 was Dec 26, and not out yet. Beta4 (not listed on the page) was, I believe, second week in Dec, and not Nov 28.

      It's perpetually late. But perpetually late is better than badly bugged.

      --
      Self proclaimed typo king, and inventor of the bear destroying coffee table (patent not pending).
    3. Re:heh, half mentioned in the summary by ForumTroll · · Score: 1

      I'm using FreeBSD 7 RC1 right now and I've been using it throughout all of the 7.0 beta releases. It's been very stable and I haven't run into any significant problems yet. My only gripe so far is that ion3 was pulled from ports after more of Tuomo's antics. Once GHC is back in ports I plan to make the switch to xmonad.

      --
      "A Lisp programmer knows the value of everything, but the cost of nothing." - Alan Perlis
    4. Re:heh, half mentioned in the summary by celle · · Score: 1

      I just wish the ati graphics support and the games in ports would be kept up to date. My X600 barfs in some way on just about every opengl app in the ports system. Thats when it isn't really slow.

    5. Re:heh, half mentioned in the summary by bluej100 · · Score: 1

      No kidding. I can't wait to be able to refer Windows-using friends to FOSS apps like Amarok. 2008 may well be the year of FOSS on the Windows desktop, at least. And once we've taken the beach....

  5. 3d desktops? by s4m7 · · Score: 0, Troll

    who put 3d desktops on the list? what a waste of cpu time.

    --
    This comment is fully compliant with RFC 527.
    1. Re:3d desktops? by pandrijeczko · · Score: 1
      If they use the wasted GPU cycles on my graphics card then good luck to them, just leave my main CPU alone.

      But I do see absolutely no value in 3D desktops - much rather a relatively fast and slick 2d window manager with virtual desktops.

      --
      Gentoo Linux - another day, another USE flag.
    2. Re:3d desktops? by mhall119 · · Score: 2, Informative

      Most Linux 3D desktops actually relieve your CPU of some work. In a non-accelerated desktop your CPU is responsible for all of X's calculations. Composited window managers shift some of that burden to your GPU, which is better at that kind of thing anyway. I see no performance penalty from running Compiz on my box, and the window manager is actually _more_ responsive than metacity, especially during CPU intensive processes. And I only have a GeForce3, the bare minimum according to Compiz's specs (though I've also run it on a GeForce2, there were some issues with drop-shadows).

      --
      http://www.mhall119.com
    3. Re:3d desktops? by vertinox · · Score: 3, Insightful

      who put 3d desktops on the list? what a waste of cpu time.

      I think the idea was offload the desktop onto the GPU (who wouldn't be doing anything anyways until a game is loaded), which in theory would free up more CPU cycles for the regular old processor.

      Secondly, you can supposedly get better vector graphics and quicker response with a 3d engine for a desktop. The best example of this is of course not Linux for the Nintendo DS. Most 2d looking games for it are actually using a 3d engine because its easier to code for and less intensive on the CPU.

      That and it looks just as good at any resolution and screen DPI. It wasn't as big of an issue, but if you have a 30" monitor with an unreasonably high resolution and try to increase the size of your icons on a 2d desktop that doesn't use vectoring... You will notice how pixelated everything looks.

      --
      "I am the king of the Romans, and am superior to rules of grammar!"
      -Sigismund, Holy Roman Emperor (1368-1437)
    4. Re:3d desktops? by Tangent128 · · Score: 1

      Do any web browsers do that yet? I heard Gecko (via Cairo) uses hardware acceleration when available, but does that mean OpenGL?

    5. Re:3d desktops? by Bandman · · Score: 1

      Isn't it RAM intensive to do that, though?

    6. Re:3d desktops? by mhall119 · · Score: 1

      VRam mostly, though some chipsets use system memory for vram. My current compiz.real process is taking up 5.4Mb of memory.

      --
      http://www.mhall119.com
  6. Had to be said by MztrBlack · · Score: 5, Insightful

    I'm thinking many would not consider DRM in FOSS to be a boon of any sort...

  7. HURD by Anonymous Coward · · Score: 0

    GNU/HURD

    1. Re:HURD by Albert+Sandberg · · Score: 3, Funny

      I can't decide if this is funny or what so I don't wanna mod it, and since you're anonymous anyway I'll just assume it's RMS posting ;)

    2. Re:HURD by Anonymous Coward · · Score: 0

      Actually, when HURD becomes usable, it will just be GNU, as in GNU's Not Unix. HURD is part of GNU, so there's no reason to say anything like "GNU/HURD". That'd be like saying something like "KDE/KOffice" or "GIMP/GTK".

  8. I KNOW I KNOW! by ILuvRamen · · Score: 1, Flamebait

    I wanna see Linux turn into "the platform" for AI. I read something about it already becoming that so that'd be sweet. Right now you all know the famous categories. Windows is for business and other dumb stuff. Macs are apparently the thing to get for video and graphics work though I strongly disagree. And Linux is gonna be for anything with AI! Cuz AI programmers (and their programs) are smart enough to know that paying for an OS is stupid when you don't have to and you can't change much about the OS after you install it. And you don't need your AI creation freezing up while the OS makes a system restore point or crashing randomly (OS X and Windows). And in 2009 I hope a giant pengiun robot attacks Microsoft headquarters.

    --
    Google's Super Secret Search Algorithm: SELECT @search_results FROM internet WHERE @search_results = 'good'
    1. Re:I KNOW I KNOW! by peragrin · · Score: 5, Funny

      >>And in 2009 I hope a giant pengiun robot attacks Microsoft headquarters.

      Quick someone call the japanese. They can build it. It would be awesome even if it didn't have any weapons. Just walking around the MSFt campus would be great for laughs.

      --
      i thought once I was found, but it was only a dream.
    2. Re:I KNOW I KNOW! by corychristison · · Score: 4, Insightful

      I wanna see Linux turn into "the platform" for AI. I read something about it already becoming that so that'd be sweet. Right now you all know the famous categories.
      Alright. I'm still with you.

      Windows is for business and other dumb stuff.
      Business: I personally disagree as I've been using Linux for all of my business needs since 2002... but then again that is just me. I am going to assume that the 'other dumb stuff' is video games and malware. I agree on that note... although there are some fun games for Linux available.

      Macs are apparently the thing to get for video and graphics work though I strongly disagree.
      Yeah... Mac's have their place and they seem to be more media oriented. A good friend of mine is just finishing his last year in school for Video Production and Design (4 year program), so far he has yet to use a Mac. So I agree with you on this point.

      And Linux is gonna be for anything with AI! Cuz AI programmers (and their programs) are smart enough to know that paying for an OS is stupid when you don't have to and you can't change much about the OS after you install it. And you don't need your AI creation freezing up while the OS makes a system restore point or crashing randomly (OS X and Windows).
      I like to see Linux as an open platform for *any* use. I, personally, use it for everything. From my laptop, to my home PC, to my media center to my embedded linux system in my car.

      And in 2009 I hope a giant pengiun robot attacks Microsoft headquarters.
      This kind of bothers me, really. Yes, we all know Microsoft is "evil". I've heard it too many times to count. I do not, however, advocate the idea of physically destroying the company. In a sense, we need Microsoft for MANY reasons. Their OS sucks, yes, but the mass amounts of people who use it still don't understand it and manage to break it's brain-dead design. This creates a HUGE market for people to fix these systems and networks. I've been doing it for quite some time (on the side, of course) and sometimes that money is nice. How do you think I was able to afford my media center? My laptop? etc. etc.

      I'm not trying to say we should necessarily support a company that has a lot of bad practices, but they create a huge market for us to make money. When they release a new OS, they beef up the minimum requirements for it and in turn brings prices of last gen products down in price for us to use.

      ... yup. :-)
    3. Re:I KNOW I KNOW! by Wonko+the+Sane · · Score: 5, Insightful

      There is no reason that AI shouldn't be integrated into the OS, but "invisibly". Here's an example:

      Joe User gets a lot of email. He tends to be organized, so he likes to sort his mail into different folders. He could use procmail or his client's filtering capabilities, but why should he have to? OSS has good solutions to the text classifying problem

      If only the email client (or imap server) paid attention, he's already supplying all the input necessary for a text classifier to sort all his mail for him without any additional action on his part.

      When Joe (manually) moves an email from his inbox to a new folder, this is a training event.
      If Joe notices that an email is in an incorrect folder and moves it (manually) to the right one, this is a retraining event.

      This concept could be expanded to other applications: how about a window manager that remembers where you tend to arrange your applications and starts putting them in the right place to begin with? The ability do manually set placement rules like with KDE doesn't count. That's just a workaround for not using the information the user is already providing.

    4. Re:I KNOW I KNOW! by ByOhTek · · Score: 1

      You don't have to brush your teeth or shower, that would save you cost on water, soap, and toothpaste, it doesn't make brushing your teeth and showering stupid.

      Make a choice simply on financial cost is stupid. Performance, stability, functionality, usability, etc. All play a part. And before you say 'Linux is better', for all of these, I've not seen a major improvment with Linux over Windows in any of these categories, except if you have crappy hardware, Linux tends to be more stable. Malware is an issue, but a little paranoia has kept me malware free for a long time with very little effort.

      --
      Self proclaimed typo king, and inventor of the bear destroying coffee table (patent not pending).
    5. Re:I KNOW I KNOW! by Anonymous Coward · · Score: 0

      In a sense, we need Microsoft for MANY reasons. Their OS sucks, yes, but the mass amounts of people who use it still don't understand it and manage to break it's brain-dead design. This creates a HUGE market for people to fix these systems and networks. I've been doing it for quite some time (on the side, of course) and sometimes that money is nice. How do you think I was able to afford my media center? My laptop? etc. etc.

      I'm not trying to say we should necessarily support a company that has a lot of bad practices, but they create a huge market for us to make money. When they release a new OS, they beef up the minimum requirements for it and in turn brings prices of last gen products down in price for us to use.

      I knew it! Now, when finally we are on the brink of victory with advantage of giant robot penguin on our side, you are getting second thoughts, cold feet, etc., because you just selfishly want to let the booty tree grow up again! Just like with cops and criminals. They COULD eradicate crime, but NOOO,they don't want to deprecate themselves too.
    6. Re:I KNOW I KNOW! by macemoneta · · Score: 1

      Well, the giant penguin attacking Microsoft was done years ago...

      --

      Can You Say Linux? I Knew That You Could.

    7. Re:I KNOW I KNOW! by ILuvRamen · · Score: 1

      but XP and Vista tried to be the everything computer and now it's a bulky, slow, not well written pile of crap that's stuck with piles of legacy support. If you try to do too much, it never ends well. But then again if you mean different distros of Linux doing specialized tasks well so Linux in general doing everything, that's a good idea.

      --
      Google's Super Secret Search Algorithm: SELECT @search_results FROM internet WHERE @search_results = 'good'
    8. Re:I KNOW I KNOW! by Blakey+Rat · · Score: 1

      This concept could be expanded to other applications: how about a window manager that remembers where you tend to arrange your applications and starts putting them in the right place to begin with?

      You mean kind of like the spatial interface Apple had in 1984? Yeah, that'd be a great idea!

    9. Re:I KNOW I KNOW! by Sergeant+Pepper · · Score: 3, Funny

      ...giant penguin robot... ...someone call the japanese... Wouldn't the Japanese be much more likely to build a giant octopus robot?
    10. Re:I KNOW I KNOW! by corychristison · · Score: 1

      I roll my own when it comes to embedded or specialized tasks. I suppose I forgot to mention that in my previous post.

      I did not mean that the kernel needs to run anything and everything at once... I meant that GNU/Linux type OS's can do so much already with the proper software and configuration.

      It has never been a one-size fits all which is what Windows is. GNU/Linux is so modular in every aspect its no wonder Windows looks so bulky. ;-)

    11. Re:I KNOW I KNOW! by openfrog · · Score: 1

      I was going to mod you insightful, but you were already modded 5 Funny. Funny enough but ALSO insightful: brilliant, funny and insightful.... I really hope someone picks this up...

    12. Re:I KNOW I KNOW! by celle · · Score: 1
      "The slashdot discussion system is a joke run by arrogant, biased, opinion nazis"

      And long may they rein.

      Maybe we should just send a cattle prod to their wives with a note about why. I'm sure they'll have a reason to use it anyway. Send something worse each time they put up a truly idiotic story. Double the doses to Zonk and Kdawson or just increase on a logarithmic curve.

    13. Re:I KNOW I KNOW! by tic!lock · · Score: 1

      Or instead of one giant penguin robot, a herd of small self-reproducing penguin robots.

    14. Re:I KNOW I KNOW! by Anomolous+Cowturd · · Score: 1

      I don't think they'd stop at just eight tentacles.

      --
      Software patents delenda est.
    15. Re:I KNOW I KNOW! by This+Rhino+Flies · · Score: 1

      Your are pointing to some sort of automated user preferences tracking and optimization for opening windows or filtering email. This still doesn't have much to do with AI in the OS, but more in the windows manager/desktop environment or individual applications. AI in the OS might lead to a learning OS which optimizes and expands its own code base though. There needs to be a division between AI and (fuzzy)logic and were each of these components belong (OS or application).

    16. Re:I KNOW I KNOW! by Wonko+the+Sane · · Score: 1

      This goes back to the basic definition of AI. Actually, the basic definition of intelligence, neither of which is defined all that well. I say that if the computer can anticipate the user's desires and respond to them preemptively then that is good enough. Maybe intelligence doesn't require a super-sentient quantum neural network after all.

  9. Clueless by abigor · · Score: 1

    "Then we'll see if Java can become a major challenger to .NET and Mono."

    Huh?

    1. Re:Clueless by Alphager · · Score: 1

      "Then we'll see if Java can become a major challenger to .NET and Mono."

      Huh? Java 6 will be released under the GPL.
    2. Re:Clueless by abigor · · Score: 2, Interesting

      Yeah, I know. My quote refers to the "major challenger" part. There's infinitely more (well, not really, but close) Java deployed on enterprise Linux servers than .Net/Mono, free or not. I'm not sure what the "challenge" is. Obviously, a GPL'd Java is a good thing, but how that will help Java meet this "challenge" that doesn't exist mystifies me.

    3. Re:Clueless by AKAImBatman · · Score: 1

      In that context, I think the author meant that we'll see Java-derived OpenJava become a competitor to .NET-derived Mono. Which is kind of silly anyway, as they would only be competing over the mindshare of the OSS community. Both are likely to be included in future Linux distributions, though OpenJava will have the mild advantage of running all Java software out of the box. Mono is still struggling to be fully compatible with its parent platform. (Not that full compatibility was ever really the goal.)

      Still, the exact turn of phrase was rather amusing. :-)

    4. Re:Clueless by plague3106 · · Score: 1

      .Net has been growing very quickly, and the latest version of the framework will likely accelerate that. Linq is really a great feature, as are some of the other stuff you can do with .net (wpf, wcf, wf, etc).

    5. Re:Clueless by Neil+Hodges · · Score: 0, Flamebait

      With features like LINQ, it makes me wonder if C# developers really qualify as programmers anymore. Besides, all of those things you listed are Windows-specific APIs.

    6. Re:Clueless by plague3106 · · Score: 2, Interesting

      That's a rather absurd statement to make. I could just as easily say "with features like object orientation, it makes me wonder if C++ developers really qualify as programmers anymore." Linq is a higher level abstraction to let you write less code. But it doesn't do anything you couldn't without it. Just like C++ allows you to write less code than if you used assembly.

      What does it matter if the other APIs are Windows only? I thought competition was a good thing. The fact that WPF is tied to Windows doesn't make it less powerful in the slightest. If I can get something done quicker and cheaper using the Windows platform, but that means I have to give up cross platform ability.. well, it doesn't become as cut and dry as "well its not cross platform so its not an option."

    7. Re:Clueless by Bandman · · Score: 1

      Terrific. As if we needed MORE ability to splinter java and make it incompatible with itself...

    8. Re:Clueless by FreeGamer · · Score: 2, Informative

      Yup, that ridiculous sentence reflects the overall quality of this artcile. It's complete garbage. Take a few announcements, summarize as predictions, then somehow get posted on /. We already know KDE4 will be here in January, ATI announced specs for it's video drivers months ago, Ubuntu + Fedora + others already have Compiz as the default, OOXML is much publicized, and without further research I'm fairly certain the other 2 mentions issues (DRM + End Software Patent Coalition) are nothing new. And finally make some pathetic assertion that Java is trying to catch .NET and not the other way around.

      I know there's plenty of crap on the net but it seems that the crap filters are breaking down because I am finding myself directed to rubbish not-worth-reading articles on a far more regular basis through sites like /. and fsdaily than a few years ago.

      My 2008 prediction - /. standards get even worse.

    9. Re:Clueless by ScrewMaster · · Score: 1

      My 2008 prediction - /. standards get even worse.

      Given that it's now 2008, I'd say you already got that one right.

      --
      The higher the technology, the sharper that two-edged sword.
  10. Correction... by Junta · · Score: 3, Insightful

    Mostly, a waste of GPU time. But seriously, the expose-ripoff with window title search that compiz has is highly productive when you open lots of windows. Other stuff, pretty much eye candy to me, but I admit I don't try every thing or understand functional benefits some features I relegated to eye candy. There are ways to make use of rendering live to GL manipulated textures that I'm sure will increase (Vista I didn't see make functional use of it, OSX did better, and with all the many different directions people are taking 3D effects in compiz and other projects in the open-source world, some interesting stuff is probably yet to come.

    --
    XML is like violence. If it doesn't solve the problem, use more.
    1. Re:Correction... by baadger · · Score: 1

      Mostly, a waste of GPU time

      In my experience all the current "3D"*/"accelerated" desktop environment enhancements (atleast available on the Linux platform) require more CPU time as well.

      * Why the hell do people call them this when they are not even rendered to give the user a 3D perspective?

    2. Re:Correction... by PitaBred · · Score: 1

      Looking straight-on isn't a 3D perspective? Or do you really want to try using a 2D input device to dick with an isometric desktop view? Whoop-de-doo, you have a 3D-ish view into what is still a 2D interface. Unless the input devices change to make 3d navigation easier) and the displays change to display real 3D rather than a window to 3D, what we have now is about as efficient as you get.

    3. Re:Correction... by aj50 · · Score: 1

      Why the hell do people call them this when they are not even rendered to give the user a 3D perspective?

      Possibly because they make use of a GPU, most commonly associated with 3D graphics, because of the cube plugin for compiz (which obviously *is* 3d) or because 3D has this cool sound which people tend to remember.

      --
      I wish to remain anomalous
    4. Re:Correction... by Anonymous Coward · · Score: 0

      * Why the hell do people call them this when they are not even rendered to give the user a 3D perspective?

      Because they're mindless cattle?
    5. Re:Correction... by AvitarX · · Score: 1

      I really like the shift switcher with the mouse wheel to flip though windows.

      Also, when letting something run in the background I like ALT-MW transperency adjusting to look at it.

      Nothing earth shattering, but I like to use it vs not.

      No ugly window redraw when dragging across flash applets is nice too, but you may have more CPU than me, so it may not matter.

      --
      Wow, sent an e-mail as suggested when clicking on "use classic" banner, and got a fast response that addressed my msg
    6. Re:Correction... by AusIV · · Score: 1
      I'm rather fond of the Expo plugin (not to be mistaken for Scale, which is the expose-ripoff you refer to). Expo lets you view all of your virtual desktops simultaneously, and drag windows from one workspace to another. I never really used virtual desktops until compiz-fusion made it easy to visualize.


      I also like the Put plugin, which lets you use the Super key with the number pad to put windows in specific places on the screen. CF offers a variety of window switchers, all of which let you see the details of a window, rather than just a little, non-descript icon.

      I'm not a fan of the purely flash stuff, but I doubt anyone who says Compiz-fusion is a waste of resources really knows what it has to offer.

  11. Truly 2007^H8 is the year of Linux on the desktop by Mr_eX9 · · Score: 1

    and I for one welcome our new FOSS overlords.

  12. More linux-based home entertainment devices by willbry · · Score: 1

    I hope to see more home entertainment devices driven by linux, especially in the world of digital television as analog is phased out. For instance, right now I'm receiving free over-the-air digital television by using a linux-based digital-to-analog conversion box from the now defunct US Digital. I'm keeping a close watch as Feb. 2008 approaches to see what develops on my blog - http://williambryson.blogspot.com/.

    1. Re:More linux-based home entertainment devices by Anonymous Coward · · Score: 0

      The Pioneer plasma HDTVs are driven by Linux. You can even download the kernel source from their site too.

    2. Re:More linux-based home entertainment devices by msuarezalvarez · · Score: 1

      The Pioneer plasma HDTVs are driven by Linux. You can even download the kernel source from their site too.

      ``even''? They are under the obligation to do so!

    3. Re:More linux-based home entertainment devices by PitaBred · · Score: 2, Informative
      No, they aren't. They're obligated to only provide a way to get the source, not necessarily make it downloadable:

      3. You may copy and distribute the Program (or a work based on it,
      under Section 2) in object code or executable form under the terms of
      Sections 1 and 2 above provided that you also do one of the following:
       
          a) Accompany it with the complete corresponding machine-readable
          source code, which must be distributed under the terms of Sections
          1 and 2 above on a medium customarily used for software interchange; or,
       
          b) Accompany it with a written offer, valid for at least three
          years, to give any third party, for a charge no more than your
          cost of physically performing source distribution, a complete
          machine-readable copy of the corresponding source code, to be
          distributed under the terms of Sections 1 and 2 above on a medium
          customarily used for software interchange;
      See here for the full text. They could just send a letter with the TV saying "Write us for the source and we'll send you a CD" and they'd be fine.
  13. 2008: The year of the Linux desktop! by goldspider · · Score: 4, Funny

    I really REALLY mean it this time!

    --
    "Ask not what your country can do for you." --John F. Kennedy
    1. Re:2008: The year of the Linux desktop! by RAMMS+EIN · · Score: 1

      While I feel you may be right, has anyone considered that 2008 may be the year of Linux on the mobile?

      --
      Please correct me if I got my facts wrong.
    2. Re:2008: The year of the Linux desktop! by Dirtside · · Score: 1

      Well, when you said that "2008 is the year of the Linux desktop!" in 2003, we were all very confused, so... I guess it makes more sense this year.

      --
      "Destroy science and religion. Science would re-emerge exactly the same; but not religion." - Penn Jillette, paraphrased
  14. Virtualization by angryfirelord · · Score: 0

    Or that virtualization, which was such a hot topic in 2006, would have settled down to just another technology?

    I disagree, in fact I'm seeing more interest in the topic. I've poked around on various forums and there are quite a few number of people who see Virtualization as a good alternative to dual-booting (unless you have to play 3D games). The latest edition of VirtualBox runs quite nicely (on my Sempron 3400+ and 1GB RAM) and is easy to set up. I recommend it to anyone who's interested.

  15. More Linux games! :( by Spy+der+Mann · · Score: 2, Insightful

    Actually, I'm hoping for Linux ports of ANY commercial games. I've mailed a few game distributors asking why don't they include Linux versions of their games. The same answer: Not enough market share (and how do you expect the market share if the game publishers don't make Linux games? HMPH!)

    Why do they keep selling themselves to DirectX instead of OpenGL? GRRRR!

    1. Re:More Linux games! :( by nomadic · · Score: 1

      (and how do you expect the market share if the game publishers don't make Linux games? HMPH!)

      Loki tried it, and failed miserably. There really isn't that much demand out there.

    2. Re:More Linux games! :( by plague3106 · · Score: 0, Redundant

      You have the answer; not enough market share. Why should they spend money to help increase market share of an OS? Especially since its not clear making a Linux port would even have that effect.

    3. Re:More Linux games! :( by utnapistim · · Score: 1

      A Linux port of Duke Nukem Forever, now that we finally know it isn't just vaporware...
      Actually, I'm hoping for Linux ports of ANY commercial games. I've mailed a few game distributors asking why don't they include Linux versions of their games. The same answer: Not enough market share (and how do you expect the market share if the game publishers don't make Linux games? HMPH!)

      Don't worry! All popular games will have a Linux version, right after DNF for Linux appears!

      I mean ... once they see DNF on Linux, they are bound to port their own products (so, expect them right after DNF!)

      --
      Tie two birds together: although they have four wings, they cannot fly. (The blind man)
    4. Re:More Linux games! :( by Yosho · · Score: 4, Informative

      Why do they keep selling themselves to DirectX instead of OpenGL? GRRRR!

      Because DirectX and OpenGL are not equivalents. OpenGL is only an API for drawing graphics; with DirectX you can not only do graphics, but you can also handle sound, input, networking, and more. The only open source equivalent to DirectX that I'm aware of is SDL, which is perfectly usable, but honestly it's not nearly as powerful as DirectX is. If you want just as much power, you'll have to go hunting through half a dozen common different alternatives for every aspect of your game, and none of them will work on every Linux system out there.

      --
      Karma: Terrifying (mostly affected by atrocities you've committed)
    5. Re:More Linux games! :( by RandomStyuf · · Score: 3, Interesting

      Loki tried it, and failed miserably. There really isn't that much demand out there. Actually, I believe that Loki were very successful, as in, the company was profitable and the business model worked, and everything company wise was ok... The problem, from what I understood was more of the CEO and his wife using the companies funds as their personal bank account. Even if not, though, don't forget that Linux has changes substantially since 2002! In 2002 I would have never considered giving my sister any distro of Linux. Now my sister is dual booting openSuSE and Ubuntu debating with herself which she wants more (she has been dual booting them for over half a year, but she still can't choose...). My point is, the leaps Linux has made since 2002 are substantial, and anything that happened back then can not be used as an excuse now, because the landscape of the market is different. Ubuntu has introduced the idea of free operating systems to teenagers worldwide (I know at least in the USA, Belgium and Israel, where I've been working lately and talking to many Linux users) and many more would jump ship from Windows in an instant if they could play their games on it. If someone were to start a porting house, that would negotiate and port games and important programs over to Linux (important programs like the Adobe suit(Photoshop for example) and Quicken's programs), it would probably, not only be successful (provided they manage to find a good "platform" to base the "linux platform" on) but they will probably become very influential in matters of computer software.
    6. Re:More Linux games! :( by webmaster404 · · Score: 1

      It is the same thing with hardware. Just let the kernel hackers do it. For games it is just "Wine will catch up".

      --
      There is no "disagree" moderation, and troll, flamebait and overrated are not valid substitutes
    7. Re:More Linux games! :( by Anonymous Coward · · Score: 0

      Bollocks. Talk to the the people that port Windows games to Linux.

    8. Re:More Linux games! :( by Anonymous Coward · · Score: 0

      Bollocks. Talk to the the people that port Windows games to Linux.

      Yeah, that's a great example of a vibrant, profitable industry. They're doing a great job.

      Well, whenever they're not going bankrupt or telling you that their games will only run on particular approved versions of Linux.

    9. Re:More Linux games! :( by Bandman · · Score: 1

      I hate to say it, but you've got a point.

    10. Re:More Linux games! :( by Trogre · · Score: 3, Insightful

      Oh wipe the Aspergers from your mouth and think about what the GP might have really meant, which was probably OpenGL vs Direct3D.

      Those two can most certainly be compared.

      --
      "Nine times out of ten, starting a fire is not the best way to solve the problem." - my wife
    11. Re:More Linux games! :( by fat_mike · · Score: 0, Flamebait

      Is this sarcasm, or are you 12 years old.

      Or another thread to promote ads?

      No offense but you must have been raised in some backwater county to expect us to believe that you've lived in the USA, Belgium and Israel with that shitty grammar. English, do you speak it? Those three countries do and speak it well.

      "The problem, from what I understood was more of the CEO and his wife using the companies funds as their personal bank account. Even if not, though,"

      Yes, the old I heard it was true but don't have any evidence excuse.

      Loki was a fantastic concept and I contributed to it. The problem is:

      Company programs for DirectX, which is supported, documented and supplied by a company that isn't going anywhere soon.

      Company programs for OpenGL, then Pango, then SDL, then Audacity, then Oscar and Theora and Fedora and Unbuntu and KDE and Gnome and QT and whatever.

      All of which have basically hung on by a thread. Let's go through the "Linux Desktop Revolution" distro's.

      Slackware
      Suse (openSuse now)
      RedHat (Fedora)
      Mandrake (Mandravia)
      OpenBSD (STILL RUNS THE INTERNET JERK!)
      NetBSD (RUNS THE INTERNET AND KICKS ALL OTHER BSD'S ASSES)
      FreeBSD (Huh? What's going on?)
      Debian (King of the World, but why isn't my computer running it?)

    12. Re:More Linux games! :( by kazade84 · · Score: 5, Interesting

      SDL + OpenGL + OpenAL + OpenTNL (or HawkNL) + ODE + DevIL + FreeType. There you go, Windowing + Input + Threading, Graphics, Sound, Networking, Physics, Texture loading and Fonts all with a similar syntax (i.e. glEnable, alInit etc.) all also aim to be cross-platform and importantly, all bind together really well and will compile on pretty much any modern Linux distro, Windows or Mac OS. Of course Microsoft provides math functions (but honestly.. you only need to write a math lib once and there are plenty free ones out there anyway). Write a game using those libraries and you hardly need to do anything to make it completely cross-platform (just file paths *cough*boost-filesystem*cough* and a few other bits and pieces).

      There are 2 reasons Microsoft has a hold on the games market:

      1. They provided a decent, well-supported solution first (well by the time they got to DX7 or 8 anyway)
      2. Big games developers can't just change the way they work without a very VERY good reason.

      The only way we can expect a shift in Linux support in games is if Linux market share gets to about 20% and ATI/nVidia really start supporting open source drivers properly so Linux drivers can as fast (if not faster) than the Windows ones. It will happen... it'll just take time.

    13. Re:More Linux games! :( by xouumalperxe · · Score: 1

      No they can't, because OpenGL is an independent thing, and Direct3D is "bundled" with a big game-making package. That's the whole point. Direct3D is not superior per se. But the integrated environment is.

  16. What boons for FOSS are you looking forward to...? by iminplaya · · Score: 5, Insightful

    The end of the tyranny of copyright law. Only then will there be true progress. Otherwise, this and everything else will be buried under the dog pile of licensing, which has already begun.

    --
    What?
  17. Meaningless headlines (and articles) by Anonymous Coward · · Score: 0

    What a great article on what 2008 MAY NOT hold for FOSS.

    Keep those meaningless headlines coming for the new year.

  18. How are these predictions? by Zukix · · Score: 1

    In what way are these predictions?

    The article lists known points of debate or unfinished business from this year. Its the equivalent of a persistence weather forecast i.e. tomorrow will be the same as today.

    Might as well have stuck 'a year in review' as the title instead.

  19. Well... by Junta · · Score: 4, Funny

    bash *could* support opening an OpenGL screen to display a 3D model paper clip to help you enter commands...

    --
    XML is like violence. If it doesn't solve the problem, use more.
    1. Re:Well... by ByOhTek · · Score: 3, Funny
      *shudder*
      If it ever does that, I'm going to tcsh.

      I'm going to have nightmares you

      jerk insensitive clod.

      --
      Self proclaimed typo king, and inventor of the bear destroying coffee table (patent not pending).
    2. Re:Well... by jacquesm · · Score: 3, Funny

      I'm bookmarking this thread just in case it ever happen.

    3. Re:Well... by Anonymous Coward · · Score: 0

      hah! well I don't even NEED a monitor to use my terminal. I don't use X I just sense the electromagnetic field variations in the video buffer with my Geek Sense. So there. My user interface is more arcane than yours! I win! OpenGL indeed.

    4. Re:Well... by ByOhTek · · Score: 1

      if not wanting an obnoxious paperclip to help me out with bash is arcane...

      then I'm proud to like arcane things.

      --
      Self proclaimed typo king, and inventor of the bear destroying coffee table (patent not pending).
    5. Re:Well... by morgan_greywolf · · Score: 1

      At this point, I'd like to announce my new project -- ClippyBashGL! You type 'ls' and the 3D rendered paperclip says things like "It looks like you are trying to get a directory listing! Would you like help with that?" In the newest CVS, when you type 'rm -rf', the paperclip says "You are trying to delete a lot stuff! Continue or Allow?" and so on.

    6. Re:Well... by Anonymous Coward · · Score: 3, Funny

      "It looks like you're trying to find your present working directory ... would you like help?"

      "It looks like you're trying to pipe three dozen commands together ... would you like help?"

      "It looks like you're trying to telnet to a server ... would you like help?"

      "It looks like you're trying to use awk and grep ... sorry, can't help you on that one."

    7. Re:Well... by dschl · · Score: 1

      Don't joke. Something similar has been done before.

      --
      Slashdot - the place where you can look like a genius by restating the obvious
    8. Re:Well... by emurphy42 · · Score: 1

      Damn, beat me to it! I knew the author briefly in college, and he was way ahead of me on geek points even back then, running a Solaris server out of his dorm room. Of course, he learned to keep the volume turned down after we logged in and sent something to /dev/audio at some ungodly hour of the night...

    9. Re:Well... by morgan_greywolf · · Score: 1

      Your friend is SICK. Really SICK. And demented even!

      Did you know that you can install this in Ubuntu or Debian from Universe?

      that's just sick.

    10. Re:Well... by Anonymous Coward · · Score: 0

      Who says the FOSS community is not innovative and has no creativity?

    11. Re:Well... by Bandman · · Score: 1

      You need a video buffer? Wuss.

    12. Re:Well... by BrokenHalo · · Score: 1

      Hmmm. Well, you could always try Zenity...

  20. Samba 4 by div_2n · · Score: 2, Interesting

    And while I'm at it, hopefully improved compatibility due to the Samba team finally getting the proper documentation from Microsoft.

    1. Re:Samba 4 by pembo13 · · Score: 1

      has there been any word on how proper the documentation actually is?

      --
      "Thanks for all the money you paid to us. We've used it to buy off ISO among other things" -Microsoft
  21. How about fixing what we have now? by rueger · · Score: 4, Interesting

    I'm among those who would be happy if existing apps could get fixed, Firefox being the prime example. On my G4 Mac every new realease of FF brings more crashes, more memory leaks, and generally more sluggish performance. I finally abandoned it last month for Opera, which I am liking very much.

    When most Open Source apps were small, simple and fast I could tolerate the inevitable bugs, and assume that they would be fixed up in the next release. Now it feels like everyone is working to add more and more features and "widgets," but no-one is worrying about overall stability and reliability.

    1. Re:How about fixing what we have now? by realdodgeman · · Score: 1

      It's called Firefox 3 and it will be here soon. The beta is much better than FF2 already.

    2. Re:How about fixing what we have now? by GospelHead821 · · Score: 1

      Agreed. I seem to recall that at one time, Firefox was spun off of the larger Mozilla project to preserve the small, feature-light, responsive browser. Now, it seems like another spin-off is necessary to get back to that dream.

      --
      Virtue finds and chooses the mean.
      Aristotle, Ethica Nichomachea
    3. Re:How about fixing what we have now? by Anonymous Coward · · Score: 0

      Now it feels like everyone is working to add more and more features and "widgets," but no-one is worrying about overall stability and reliability.

      Yep, that single example of firefox development on a g4 mac says quite a lot about the entire range of open source software. Hell, if it wasn't for that one example, we'd have no clue about the state of open source today.

    4. Re:How about fixing what we have now? by RAMMS+EIN · · Score: 2, Insightful

      This is why I don't consider Firefox, OpenOffice.org, etc (basically, most of the high-profile open-source software) to be prime examples of open-source. Generally, they are similar to (sometimes clones of) commercial software, including the bloat and bugs. _Most_ of the software I use actually isn't like that. And that's why I like it.

      --
      Please correct me if I got my facts wrong.
    5. Re:How about fixing what we have now? by Anonymous Coward · · Score: 1, Interesting

      ...and generally more sluggish performance. I finally abandoned it last month for Opera, which I am liking very much.

      Insert bitter laughter here. Sorry, but you'd like Opera more on Windows. I prefer Opera, I've been using it since 3.5, but it too is a Linux app that goes under the category How about fixing what we have now?

      I guess my big wish for 2008 is that KDE4 lives up to the promotion. I like Ubuntu better than Windows, but jeeze that's not much of a compliment, you know? It's frankly sluggish, and so many freakin apps have wee glitches and feature-shortcomings that don't exist in the Win equivalents.

      It's a little like buying organic produce back in the 80s. You knew it was a better idea, you knew it had advantages, you knew it was worth the extra effort, but damn you were getting tired of how much of it was sub-par, spotty and bruised. But that changed. By the end of the decade the market and retailers were big enough to demand and support organic produce that was every bit as good as regular issue. I'd hoped Linux would be there by now, but not quite. Maybe KDE4 will bring us over the top of the hump though.

      I'm greedy: I want Linux to be hands-down stinking better than Windows, not just better.
    6. Re:How about fixing what we have now? by Anonymous Coward · · Score: 0
      On my G4 Mac every new realease of FF brings more crashes, more memory leaks, and generally more sluggish performance. I finally abandoned it last month for Opera, which I am liking very much.

      Have you considered switching back to an older version? I'm still using Mozilla 1.7.8. It works fine.

    7. Re:How about fixing what we have now? by zsau · · Score: 2, Interesting

      The real answer is competition. Firefox was decent when it was competing against Mozilla and, on Windows, Internet Explorer (Safari and Konqueror aren't sexy enough for Mozilla to care). Now, it only competes against IE so Linux and Mac users are secondary (or worse) and the developers clearly think it's so much better than IE that it doesn't really need to be competitive.

      If the GTK and Windows ports of WebKit can get to a state where browsers for the rest of us can be based on them, then maybe Firefox can improve. Hopefully, it'll happen before Firefox is completely sidelined because otherwise we'll just see the replacement browsers stagnating after an initial period of being the greatest thing since sliced bread.

      (Yup folks, Vi and Gnome need Emacs and KDE. It'll be a sad day everywhere but Redmond if one ever wins.)

      --
      Look out!
    8. Re:How about fixing what we have now? by marcello_dl · · Score: 1

      But on my G4 Mac every new release of FF works quite well. It's running under debian and with no flash player plugin. Since FF on debian ppc is a port of an entire Free OS+apps stack, while your FF on mac is likely a port on a proprietary OS, I'd say performance of FF becomes kind of the wrong example to use against open source.

      --
      ---- MISSING MISCELLANEOUS DATA SEGMENT --- [sigdash] trolololol
  22. Hopefully a linux driver for my wifi card by CranberryKing · · Score: 2, Insightful

    Yes! Thank you New Year's Gods! A native linux driver for my Aspire laptop's Broadcom BCM94318MPG card!

    Yes sir. I really can't ask for more than that can I?.. The old BCM94318 w/out any damned NDIS wrapper.

    Yep. It sure would take a warm and good soul to release one of those.

  23. Re:What boons for FOSS are you looking forward to. by abigor · · Score: 1

    Or rather, a beginning to the reformation of copyright law, as copyright is necessary. The GPL is a copyright license, for example. Or let's say I wrote a novel - I would be pissed to see it on sale as with my name crossed out and "iminplaya" pencilled in instead.

  24. Re:2008 by sm62704 · · Score: 1, Interesting
    No, 2008: Year of the crystal balls. Or was that 2007? Come on, guys, I don't get it. Yes, there are the religious here but it seems the vast majority are either atyhiest or agnostic.

    So why are so many of these crystal gazing, horiscope reading, entrail of toad prognostications showing up on slashdot?

    Well, to quote the much maligned Christian Bible (2 Peter chapter 2):

    But there were false prophets also among the people, even as there shall be false teachers among you, who privily shall bring in damnable heresies, even denying the Lord that bought them, and bring upon themselves swift destruction.

    And many shall follow their pernicious ways; by reason of whom the way of truth shall be evil spoken of.

    And through covetousness shall they with feigned words make merchandise of you: whose judgment now of a long time lingereth not, and their damnation slumbereth not.

    And to quote myself (Happy nude year!):

    OK, it's that time of year again. The time of year when everyone and their dog waxes nostalgic about all the shit nobody cares about from the year past, and stupidly predicts the next year in the grim knowlege that when the next New Year comes along nobody will remember that the dumbass predicted a bunch of foolish shit that turned out to be complete and utter balderdash.

    I might as well, too.

    And to quote myself again: "The future is now. The future is bunk."

    I often see articles at slashdot about The Future of [X} and I invariably ask in a comment "where do I go to get my PhD in Futurism?" The fact, of course, is that nobody holds a PhD in futurism. Futurism is no more real than astrology, Tarot, or divining tea leaves. I've been listening to these guys all my fifty five year long life and haven't once heard a single prediction pan out.

    While we're doing this, a letter from prison rings in the new year.

    Here's hoping 2008 sees you healthy and happy, and that Linda gets out of prison. I miss her.

    -mcgrew
    --
    mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
  25. Re:What boons for FOSS are you looking forward to. by iminplaya · · Score: 2, Insightful

    That would be plagiarism, something else entirely. Copyright is about distribution, not about who created what. GPL is only necessary due to the existence of copyright law, as pointed many times by many others. Slavery is still slavery. It cannot be "reformed". It must be abolished. And remember to throw some royalties into the RIAA kitty if you plan on singing Aud Lang Syne tonight.

    --
    What?
  26. A stable kernel by SpaceLifeForm · · Score: 1

    That's all I ask.

    --
    You are being MICROattacked, from various angles, in a SOFT manner.
    1. Re:A stable kernel by bmartin · · Score: 1

      There's an unstable kernel? I've never, ever had my kernel crash or spinlock or anything like that. Once in a great while, my ATI kernel module craps out, but that's about it (I assumed that risk when I installed crappy proprietary drivers from a company that formerly didn't care about it's Linux-using patrons).

      If you're really unhappy w/ the Linux kernel, maybe you should try an OS with a microkernel (e.g., MINIX), or something like BSD if you're not happy with microkernels.

      --
      "You could almost look at defense of Microsoft as a form of the Stockholm syndrome." -neapolitan
    2. Re:A stable kernel by The+Master+Control+P · · Score: 1

      Maybe he means he wants 2.8?

    3. Re:A stable kernel by Daengbo · · Score: 1

      Well, if he wants stable, it certainly wouldn't be 2.7. Oh, wait ... ;)

  27. Re:What boons for FOSS are you looking forward to. by abigor · · Score: 1

    Okay, so you'd feel okay about printing 100,000 copies of my novel and selling them and not giving me anything for them? That seems silly.

    How is the existence of the GPL only necessary because of copyright? I don't get it. If I write some code and I want it to stay open, because it is attributable to me, I use the GPL. How would abolishing copyright keep my code open? Am I missing something obvious here?

  28. Organization Standard by vossman77 · · Score: 1

    I'd like to see some organization standards. Like for my Mp3's things should go seamlessly between amarok, rythembox, etc and photos, and movies. I think FOSS is really behind Apple in this area.

    1. Re:Organization Standard by mhall119 · · Score: 1

      I'd like to see some organization standards. Like for my Mp3's things should go seamlessly between amarok, rythembox, etc and photos, and movies. I think FOSS is really behind Apple in this area. Really, Apple lets you transfer your MP3 playlists and metadata between two music player written in two different toolkits, by two different companies, neither of them Apple? The same for photos and movies?

      --
      http://www.mhall119.com
    2. Re:Organization Standard by hawaiian717 · · Score: 1

      I assume he's talking more about how all the Apple apps work together, like how iPhoto and iMovie show you your iTunes playlist when you want to add music to a slideshow or movie. I don't see any reason why other music players couldn't access the iTunes database either. iEatBrainz is a third party freeware app that uses the MusicBrainz database to help fix MP3/AAC file info in the iTunes database, so it's possible.

      --
      End of Line.
    3. Re:Organization Standard by Anonymous Coward · · Score: 0
    4. Re:Organization Standard by mhall119 · · Score: 1

      Yes
      Yes... ...and yes.
      and another for good measure. So Apple supports PHP, iTunes stores play-lists in an XML file, iPhoto now supports plugins, and so do other aspects of OS X.

      Wow.

      That sure puts to shame Linux which also supports php, ryhtmbox which stores play-lists in m3u and shoutcast files, F-Spot which always supported plugins, and other aspects of Gnome, KDE or XFCE which support plugins.

      I am enlightened.

      Of course, none of your examples actually shows two competing non-Apple media players transparently sharing internal data.

      --
      http://www.mhall119.com
    5. Re:Organization Standard by mhall119 · · Score: 1

      I assume he's talking more about how all the Apple apps work together, like how iPhoto and iMovie show you your iTunes playlist when you want to add music to a slideshow or movie. Interesting, I'm not sure if there there is an equivalent to that in the Linux world, maybe in KDE. Rythmbox stores all it's metadata in XML files too, so there isn't anything stopping a third party app from using that either. I think Amarok uses a database, like postgres or sqlite, still no reason a third party app couldn't use it. F-spot also stores is metadata in an sqlite database, or extended attributes in the file system, which third party apps can and do use. The only thing missing is an iMovie like "standard" for Gnome and KDE, there are several contenders, but no clear favorite.

      Perhaps it's time for an additional Freedesktop specification for a file metadata database, that could make for some interesting app integration.
      --
      http://www.mhall119.com
  29. JADE by Anonymous Coward · · Score: 1, Interesting

    I am looking forward to JADE, a roguelike, successor of ADOM.

    http://www.adom.de/

  30. Re:Proves my point by starsky51 · · Score: 2, Funny

    +1 Martyr

    --
    There are 2 types of people in this world. Those who understand ternary and those who don't.
  31. Won't happen by einhverfr · · Score: 2, Funny

    They want to port to HURD first.

    I also understand that some of the more recent portions are written in Perl 6.....

    --

    LedgerSMB: Open source Accounting/ERP
  32. What they're missing by Dasher42 · · Score: 3, Interesting

    I predict that LLVM and HLVM will gain steam. People are going to realize that this pair of abstractions is cleaner, leaner, and meaner than the current virtual machine + language + API way of doing things characterized by Java and .NET. The fact that a GPU can be used as a processor transparently where appropriate, just the way Apple already has with LLVM, is going to start the rethink that was cut short by Java and .NET's fiascoes of ownership or patents. They'll also start making development in compiled languages easier.

    This will be the open source response to the blurring lines between CPU and GPU task-wise, as the vector computing tasks could be done much quicker on the GPU based on the advances of LLVM, and applications will benefit transparently. It will be very cool.

    1. Re:What they're missing by RAMMS+EIN · · Score: 1

      Thanks for mentioning that. Your post has prompted me to finally set up a page for TurboVM, a virtual machine I have been working on. What makes TurboVM interesting is that it's (1) small and simple, (2) not tied into a programming model like typical VMs that are designed with a single language in mind, and (3) FAST.

      There is a bytecode interpreter which seems to outperform OCaml's (widely considered fast) by about a factor 2 to 3, and a compiler that compiles bytecode to C which can then be compiled to native code and will run about as quickly as an equivalent program written in C to begin with (everything compiled with maximum optimizations). An assembler and a disassembler are also provided.

      All this is in a pretty early stage of development, not very well tested (I think some of the signed operations are wrongly implemented), poorly documented, and lacking features (right now, programs are just instructions...I want something with sections, labels, linkable libraries, etc.), and so on, but you can download it now and it compiles and runs. I hope some of you will be as excited about it as I am. :-D

      --
      Please correct me if I got my facts wrong.
    2. Re:What they're missing by EvilRyry · · Score: 1

      At first glace, HLVM seems a bit dead. Personally, I've been watching Pypy + LLVM backend. It promises not only to JIT python code, but other languages at well. I predict that pypy will start attracting commercial attention in the next year as well.

    3. Re:What they're missing by Dasher42 · · Score: 1

      Thanks for posting that. Small and simple virtual machines, I think, are the key to making the next generation of hardware really useful. The future is more and more multithreaded and parallel, no doubt of it, and a lightweight VM would go a long way towards making the next generation of hardware as useful as it should be.

    4. Re:What they're missing by Dasher42 · · Score: 1

      Pypy is certainly interesting, but why would it move ahead of HLVM? Perhaps the language-specific needs make HLVM more difficult to realize in an efficient manner. Now, if we look at the .NET example, what's to be excited about? Me, I like the Command Language Runtime, but I'm not willing to drink Microsoft's kool-aid to get it.

      LLVM is getting something about virtual machines right - the lighter and simpler, the better. Maybe HLVM can't do for Python what Pypy with LLVM can. If we can distill the really useful functionality into a simple solution the way LLVM is doing for its target, I think API exposure, threads, and semaphores are the basics that you want in common to make it come together. Let languages handle their memory management in specific ways. One size does not fit all; just make it work well together.

      Just speculating based on other responses.

  33. Groupware by Anonymous Coward · · Score: 0

    2008 is the year OpenChange completely re-writes the groupware scene and allows OL2K7 to connect to a linux server and TB to connect to Exchange 2K7

    WOW :-)

    Also in the headlines:

    Dell gives us the triple boot PC - XP + Ubuntu + OSX
    (That's what we *really* want)

    Landrover's build quality reaches perfection

    HP realise that the extra 2p for a recovery CD will help sell PCs

    Orange will shoot the idiot who skins their phones

    Gumstix will start to feel LARGE

    oh yeah, And World Peace.

  34. klik2! by Anonymous Coward · · Score: 0

    klik2 !

  35. Re:Proves my point by pionzypher · · Score: 4, Informative

    You probably got modded because it was a crazy ass sounding rant against trying to predict tech trends by using religion. You then followed up with a bunch of offtopic tripe.

    Tech website speculating about the future of FOSS in the next year.... yeah... it happens. That's great that no one will remember who predicted what. That's not the point of the exercise. The point is to discuss it NOW for the heck of it. It most likely has nothing to do with hating religion.

    --
    I'll believe in corporations having personhood when Texas executes one... - advocate_one
  36. ReactOS by ZOmegaZ · · Score: 1

    ReactOS will probably hit .4 in 2008. The roadmap lists that as improving the already great kernel compatibility, usable networking, basic audio support, and USB interface device support. If you want to break Microsoft's dominance on the desktop, this is where to look, not Linux.

    1. Re:ReactOS by Anonymous Coward · · Score: 2, Interesting
      ReactOS is awesome, to be sure... but...

      If you want to break Microsoft's dominance on the desktop, this is where to look, not Linux. Linux + Wine is much, much closer to achieving full compatibility for Windows Apps than ReactOS is. (E.g. right now ReactOS is alpha and can't be used for anything serious, whereas Linux right now is fully functional and Wine support for Windows apps is very good, though not perfect).

      Again, I support the ReactOS project. It's a neat idea. But Linux+Wine is much, much closer to being a viable replacement for Windows than ReactOS is. Linux+Wine gives you "the best of both worlds": a stable OSS core, access to a huge vetted repository of applications, and ability to run unmodified Windows binaries if you need to.

      Wine has been getting very good of late (e.g. runs Photoshop 7 flawlessly, runs Office 2003 with some bugs). In fact, I see Wine's Windows-compatibility over the next few years becoming a major selling point for transitioning to Linux.
    2. Re:ReactOS by Anonymous Coward · · Score: 0

      Only if you want to break Windows dominance it in a way that makes it pointless to break it, since ReactOS is just as bad as Windows, bug-for-bug.

    3. Re:ReactOS by Anonymous Coward · · Score: 0

      Who are you kidding?

      ReactOS will have compatibility with Windows 5 (that's fucking 2000, not even Vista) by 201x (where x is a number).

      By then, we'll probably be at Windows Seven + 1, so Windows 8 or 9.

      Yeah. Great way to break their dominance, eh?

      A project which has over 10 developers listed as sabbatical is going *nowhere*.

    4. Re:ReactOS by Anonymous Coward · · Score: 0

      erhm, practically ALL of the ReactOS user space code actually comes from wine, and DirectX is already being reimplemented as ReactX ;).

    5. Re:ReactOS by Anonymous Coward · · Score: 0
      ReactOS already has some Vista compatibility baked in. They aren't limiting themselves to 2000, most of the API work is done for XP currently. The first sentence of the website is:

      ReactOS® is an advanced free open source operating system providing a ground-up implementation of a Microsoft Windows® XP compatible operating system.


      Maybe it has been a while since you looked at it? Remember, even though MS said there was a lot of rewriting, Vista still had some bugs that had to be patched in the XP code (but not server 2003, which is where they supposedly re-started from). So Vista compatibility isn't going to need as much re-writing as one would think. Once the GDI subsystem gets nailed down a bit more, progress should be quick.

      You can check out SVN check-ins at this URL, it gives you a good idea of what's being worked on currently, and how many people are active. Some people also make commits for others, so there are more people working than are given credit on the CIA page:
      http://cia.vc/stats/project/reactos
  37. Re:Proves my point by sm62704 · · Score: 1

    Naw, just annoyed nerd. A real martyr would be bleeding and in pain, not just annoyed. I'm not bothered by any lack of karma, mine's excellent and remains there. Few days go by that I don't have several "interesting" or "informative" or whatnot (even though I usually go for the karma-free "funny".).

    Any time you mention religion at slashdot you're likely to be modded straight to moderation hell. Maybe they thought the linked journals are tolls? Maybe I just don't get it, I live in a strange town, halfway between St Louis and Chicago, where half the baseball fans cheer the Cardinals and the other half cheer the Cubs (nobody cheers the White Sox. Nobody but Alan anyway). In Springfield's bars you can talk about sex, religion, politics, without fear of altercation but talk baseball and you're likely to be in deep shit with somebody.

    Someone's sig here says there is no "-1 I don't agree with you and troll, flamebait and offtopic are not valid substitutes." I couldn't agree more with the fellow.

    Someone (or a lot of someones maybe) has mod points that should not be moderating. Some AC (not me, I don't post AC. Even if I'm not logged in I'll add my name to the post) got modded "offtopic" in the Mars thread probably because he had the utter gall to beat someone to "first post". And the guy's comment was not only on topic, but interesting and informative.

    I wish that mods had modders' names attached. It's pretty cowardly to attack someone anonymously as todays mods are doing. probably some Microsoft lawyers with mod points. Or SCO lawyers. If they're not the same guys...

    (remembers to check "no karma bonus" box as this comment really is offtopic)

    --
    mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
  38. OLPC vs clothes by Error27 · · Score: 4, Informative

    From the article: "And it is true that food and clothing may seem like more immediate priorities in many regions."

    Please do not send any more clothes. You've already killed off the local textile industry and put all the cotton farmers out of work with your free clothes. Who can compete with free crap? Please stop.

    http://news.bbc.co.uk/1/hi/world/africa/1076411.stm

    I no longer donate clothes for exactly this reason.

    1. Re:OLPC vs clothes by Viceroy+Potatohead · · Score: 2, Insightful

      Joseph Stiglitz makes the same point regarding food in Globalization and Its Discontents. Western policies of what is basically dumping (painted up like charity) prevent those in nearby regions from stabilizing their own agricultural setups. The West ships food for free, undermining the market, so farmers throughout the continent or at least subcontinent have an artificially devalued market, preventing them from eventually owning enough, or creating enough savings, to weather famine conditions when they face them. Of course, the commodities are bought using usual markets in the West, avoiding any devaluation here, and probably causing slight increases in prices due to slightly greater demand. So the entire process makes it doubly likely that African farmers will have a hard time competing in a global market.

      It makes me wonder if Bob Geldof has done the world more harm than good.

    2. Re:OLPC vs clothes by Error27 · · Score: 1

      Food is so interesting. There are times when it's needed. In Ruanda and Burundi they'll never be able to feed themselves because there isn't enough land.

      I visited a school in Sudan that was supposed to recieve food from the local rebel forces. The rebels would scam all their food from the world food program by setting up fake villages. One time we cut out the middle man and used the school land cruiser to steal the food directly from the airstrip where the WFP did food drops.

      In the news they always make it sound horrible that the government of Sudan wasn't even letting food aid into southern Sudan but it's obvious why they do that.

      The WFP knows that their food will support the rebels eventually. Mothers will send food to their sons who are fighting. Rebels will raid villages and steal it. On the other hand, what else can you do when people are dying of starvation?

      Also the western world unofficially supports the rebels in Sudan because they allow religious freedom.

  39. a little misinformation... by mathfeel · · Score: 1

    OOXML has thus far failed to become an ECMA or ISO standard

    Is OOXML not already an ECMA standard??
    --
    The only possible interpretation of any research whatever in the 'social sciences' is: some do, some don't
  40. This year Linux finally makes it on the desktop! by sheldon · · Score: 1

    Well, that's been the prediction the last ten years, might as well be consistent.

  41. Infinite desktop by SiliconEntity · · Score: 1

    I'd like to see an "infinite desktop" with a head mounted display and orientation sensor. I can turn my head and see many virtual feet of documents in every direction. I can use my mouse to slide my point of view right or left. To me this would be a useful model and could eventually be adapted to portable use on planes and such.

    1. Re:Infinite desktop by Anonymous Coward · · Score: 0

      > I can turn my head and see many virtual feet of documents in every direction.

      This sounds exactly like my physical desk. I claim prior art!

  42. Re:What boons for FOSS are you looking forward to. by iminplaya · · Score: 1

    Who said anything about selling them? I'm only talking about the exclusivity of distribution. Without that sales is not an issue. You will make money when somebody asks you to produce more of what they like. That's how it works for me, and most everybody else.

    GPL? Public domain will insure it stays open and distributable. That doesn't stop you from attaching your name as the creator. In that manner copyright can be useful as a registrar of such things. GPL was created to prevent "normal" copyright from closing it and possibly prevent you from using your own creation. That is something that the present system allows if the other guy files first. Listen, there are many people who say it more eloquently than I can. Feel free to look them up.

    --
    What?
  43. Re:What boons for FOSS are you looking forward to. by westlake · · Score: 1
    The end of the tyranny of copyright law.

    Too often the tyranny of copyright law means simply that the Geek can't safely download a screener of a movie that won't see theatrical release for six weeks.

  44. Amarok? by SanityInAnarchy · · Score: 1, Interesting

    There are other players than xmms...

    Though I suppose when you have 3D, spinning spectrum analyzers, things are looking pretty good.

    --
    Don't thank God, thank a doctor!
    1. Re:Amarok? by pionzypher · · Score: 2, Informative

      Projectm whitescreens under Amarok as well. I'm sure it's some problem with the libs. At least it compiles now though, the first couple of attempts a year or two ago gave up the ghost due to (from what I could gather on forums) a compiler bug. It's all good though, I'm sure it'll end up in the repositories.

      --
      I'll believe in corporations having personhood when Texas executes one... - advocate_one
  45. Re:What boons for FOSS are you looking forward to. by Rakishi · · Score: 1

    Slavery is still slavery. It cannot be "reformed". It must be abolished. Then I take it you are actually advocating full and unlimited communism. After all property rights are also slavery, if I want to use your car then it is slavery for you to not let me do so. Likewise if I'm hungry I should simply be able to take some food from the store even if I knowingly don't do anything for society (ie: I'm a lazy bum).

    Copyright is like everythign else a social construct designed to make it easier for someone to profit from that they do. If you want something to complain about then complain about absurd patent laws as those are infinitely more harmful, there is by definition no GPL for patents (ie: you can write a gpl version of windows from scratch but if it's patented then even independent implementations infringe).

    As for abolishign copyrights, why do you care? Well? If you think the GPL is so great then it shouldn't matter, after all society will naturally move towards it since it's better.

    And remember to throw some royalties into the RIAA kitty if you plan on singing Aud Lang Syne tonight. Why would you sing that, if you believe in a lack of copyrights you should do just that. Don't listen to anything but truly free (ie: GPL) music or you're a hypocrite. If you illegally download music for example then you're simpyl admitting that GPL is failing in the area of music.
  46. Re:Proves my point by sm62704 · · Score: 1

    Thx, just curious. They seem to be doiung it to a lot of folks today though, there were a couple of fellows who made on-topic, humorous observations in another post who was modded "offtopic".

    A lot of folks see any mention of religion at all and automatically think "oh this must be a troll".

    --
    mcgrew's razor: Never attribute to stupidity that which can be explained by greedy self-interest
  47. Re:What boons for FOSS are you looking forward to. by abigor · · Score: 1

    Who said anything about selling them? I'm only talking about the exclusivity of distribution. Without that sales is not an issue. You will make money when somebody asks you to produce more of what they like. That's how it works for me, and most everybody else. Again: without copyright, what is to prevent someone from printing 100,000 copies of my book and selling them without me making a dime? You seem to be sidestepping this question.

    GPL? Public domain will insure it stays open and distributable. No, it doesn't. A company could take my code, close it up, and use it, which would be against my wishes. The GPL protects me from that.

    That doesn't stop you from attaching your name as the creator. In that manner copyright can be useful as a registrar of such things. GPL was created to prevent "normal" copyright from closing it and possibly prevent you from using your own creation. That is something that the present system allows if the other guy files first. Listen, there are many people who say it more eloquently than I can. Feel free to look them up. Yeah, there must be, because what you're writing is senseless. Now you're saying copyright is okay (compared to earlier posts where you say it must be abolished entirely). And what's this about preventing me from using my own creation if the other guy files first? Files what? If I write code and want it to stay open, as I have when contributing to projects from Asterisk to KDE, then the GPL protects me. No one can "file first" and prevent that. Are you confusing copyrights with patents? It sounds like it to me.

  48. Story Tag by KermodeBear · · Score: 1

    Story Tagged: yearofnextyearistheyearofthelinuxdesktop

    --
    Love sees no species.
  49. Re:What boons for FOSS are you looking forward to. by MBGMorden · · Score: 4, Insightful

    Just reiterating what the other poster said. In the normal world, you get paid for the work you do, not the work of your work. If I hire Bob to come build me a gate, he doesn't get to charge me every time someone comes through it. He is paid to build the gate and then he gets the hell out of my life. He only gets paid again if I need him to return and do more work.

    Same with the novel (or insert song, program, etc in here). You might have (and without copyright likely would have) been paid to write the story in the first place. Once you've been paid to write, you write the novel. Now, you can choose to only give it (or you could technically sell it) to the people who already gave you money, but the bottom line is you will have already been paid to write it. Once it's done your part is done and if people want to make copies of it to sell, or to give away, that's their own concern. If you want to keep raking in cash you better have written a story good enough that people are willing to pay you to write another one. And you better be willing to write a number of "sample" stories to begin with if you want anybody to start reading your stuff.

    With music, it's even easier. You could in the same way be paid to write the songs, or more likely you would be paid for live performances (ie, you are actually gonna have to get out there and do work again).

    With software, GPL isn't needed because if you release a closed source version of my code I'm just gonna decompile it, reimplement the changes in a high level language, and rerelease it again. If you want to be paid for software, someone will end up hiring you to do a custom program for them (ie, you must work, not live off imagined entitlement), or you can write free stuff and charge to support it (again, working).

    You also have to understand that not EVERYTHING will/would be feasible with copyright gone. It's a shift of society, but for the better. I'm sure if we reinstituted slavery we could achieve some absolutely marvelous feats in construction and such, but that doesn't mean it's something that a fair society should support. I seriously doubt large scale motion pictures as they currently stand would still be realistically profitable (though live theater certainly might return to a much more profitable status). That's not something we can't live without though, and it's certainly not worth instituting insanely oppressive laws over.Copyright instills a limited supply (and source) onto something that by nature is unlimited (and not really even tangible). It's one of the most perverted corruption of economics ever seen.

    --
    "People who think they know everything are very annoying to those of us who do."-Mark Twain
  50. Check the Coverity Scans by shis-ka-bob · · Score: 2, Interesting

    Look at http://scan.coverity.com/. This is a great project to improve the stability of open source projects by looking for all sorts of coding errors that can be very hard to spot manually. It may not be true that with enough eyeballs, all bugs are shallow. But is it very clear that the Coverity eyeballs are exceptionally good at exposing lots of bug. It is all clear that the open source developers are excellent at fixing these bugs. If KDE can get 4.0 out the door and drive their Coverity defects closer to zero, then I think that we will see a very robust, efficient KDE 4.0 by year's end. The number of defects in my Linux/X.org/KDE 'desktop stack' has dramatically dropped, at least as measured by Coverity. Sorry for sounding like an advertisement. I know that there are other ways to find defects, but I am just so impressed with how open source developers have closed thousands of coding errors that have been identified by these automated code audits. This is the sorts of constant improvement that quietly leads to better stability and security.

    --
    Think global, act loco
  51. Re:What boons for FOSS are you looking forward to. by abigor · · Score: 1

    Well, your approach to novels is certainly...novel. I can't see it working though, as there is no incentive to write books essentially for free (you don't get paid ahead of time for writing one).

    As for the code example...decompile it and reimplement?? That is the most hilarious thing I've heard all day. Have you ever written software? So some company takes Asterisk, closes it, and adds a bunch of stuff. I'm going to decompile it and figure out what they did? Are you daft?

    The "write free stuff, get paid for support" model works in certain limited cases only, normally enterprise stuff. How would it work for games, for example?

    I really get the feeling you guys have never actually created anything of value, particularly GPL'd software.

  52. More! by maxume · · Score: 2, Funny

    More cowbell.

    --
    Nerd rage is the funniest rage.
  53. Not much of a bane though. by Anonymous Coward · · Score: 0

    Since DRM is just security through obscurity, and the open-source aspect kills all obscurity, you're not any worse off with FOSS DRM schemes than you were without. If anything, I would use FOSS DRM as an asinine excuse to legitimize the sharing of copyrighted materials in real-time using a sort of library lending style DRM scheme. I have a truly marvelous proof of this proposition, the scope of which this post is too narrow to contain.

  54. I doubt it ... by Pinky's+Brain · · Score: 1

    For it to go from a cool academic project to a mainstream compiler I think GCC (or rather Tree-SSA) will have to die, since they compete for developers, and I just don't see it happening ... especially not now that Stallman has retracted his objection to exposing the necessary data for intermodule optimization (which was one of the main advantages of LLVM and also the main obstacle for it being adopted instead of Tree-SSA).

    Unfortunately the situation with GCC just isn't as dire as in the EGCS era.

    1. Re:I doubt it ... by Dasher42 · · Score: 1

      There are a number of forces conspiring to make something like LLVM happen. One is Apple with its need for a simple, portable OpenGL pipeline. In that regard, LLVM isn't an academic project, it's a shipped product.

  55. One Platform to rule them all by JoshHeitzman · · Score: 1

    It would make life simpler if OpenJava and Mono were merged into one platform that retained the APIs from both platforms so libraries could be written for the merged platform and accessed from any language using the One Platform.

    --
    Software Inventor
  56. As silly as this sounds coming from a Linux user.. by centuren · · Score: 3, Interesting

    I'd like either a nice port of iTunes or to find a better jukebox-type music player. I know I can get 100 suggestions right now for players people swear by, but nothing I've tried so far handles browsing, selection, and playback of music as well. In fact, I'd like a better version of iTunes, with features like the ability to classify a song as multiple genres, and have it show up under each.

    I've yet to try setting my Linux box up as a iTunes library sharing server (which makes sense with the Macs in the house but the media on my Linux desktop), but if that's not easy to maintain (adding/editing content) I'd like to see improvement there. I suppose that falls into the network media sharing server that's compatible with iTunes as a client category.

    Also, the traditional complaint about having to fiddle around. Why should I have to assign keystrokes to 8 of my 12 mouse buttons for it to work across everything (comfiz-fusion/kde, wine/wow, fluxbox, etc)?

  57. I beat the deadline! by Artifakt · · Score: 1

    OK, I just got Linux running on the last box in the house, a 266 Mhz P2 with only 128 Mb of RAM. I had to dig up a copy of Stormlinux from 2000 to find something that would run on that old box, but there it is, all 7 machines are on Linux. So, 2007 is the year of Linux on the desktop and you all can stop worrying. Those of you who predicted it now have six hours (if you're in EST) to brag about getting it right (more for those on the west coast). After that, shut up, please?

    --
    Who is John Cabal?
    1. Re:I beat the deadline! by Anonymous Coward · · Score: 0

      You don't have to dig up old distros; there's always DeLi and Slackware. (I actually have a Pentium 90 running Slackware now.)

  58. Re:What boons for FOSS are you looking forward to. by Joe+Jay+Bee · · Score: 1

    I agree with you entirely, but I'd just point out that the GPL doesn't really apply to music. A good analog in these situations would be Creative Commons. I especially agree with the last paragraph; if you want to fuck the RIAA, the best way is to avoid it entirely. Piracy is counterproductive.

  59. Re:What boons for FOSS are you looking forward to. by chromatic · · Score: 1

    I can't see it working though, as there is no incentive to write books essentially for free (you don't get paid ahead of time for writing one).

    Funny, most novelists don't.

  60. increased theora usage by bigmammoth · · Score: 1
    I think 2008 will be the year open source video enters the online video ecosystem. Native html5 ogg theora/vorbis will be built into a firefox3 point release and into new versions Opera. Ogg theora is enjoying a growing momentum around tools, and usage (including much better support in at least one of the top 10 sites on the internet ;) Also BBC's Dirac is quickly maturing for high end open source royalty free encoding/playback.
    Our own little metavid wiki project also coming along ;)

    2008 should see millions of people playing back ogg theora videos in their browsers. While its not going to replace flash anytime soon it will begin to show up in many free software CMSs and begin to break down one of the last proprietary technologies in the web platform.

    1. Re:increased theora usage by Daengbo · · Score: 1

      I support OGG, but I don't see people actually using it the way you do. People seem to prefer mkv and h.264 (which are also Free, I understand).

    2. Re:increased theora usage by bigmammoth · · Score: 1

      h.264 is not free. Here are the licencing terms

  61. Truecrypt 5.0 by anom · · Score: 1

    I for one can't wait for Truecrypt 5.0. Scheduled for release in January of 2008, the new version will contain (I believe) the first FOSS implementation of full hard drive encryption (pre-boot authentication and everything(Windows)), as well as a very good encrypted container solution that will work on Windows/Linux/MacOSX.

  62. Here 'tis... by ChunderDownunder · · Score: 1
  63. The end of the tyranny of copyright law. by falconwolf · · Score: 1

    Have you ever written, say a book or magazine article, for publication? Without copyrights a publisher could take what you wrote and sell it as their own without paying anything for it. Sure you could try to publish yourself but even with today's technology it's still expensive. Try printing just 10,000 copies of a book and distribute it. Vanity publishers can charge you a few dollars a copy, but then you still have to do the marketing yourself. Or you can to print it yourself. At 10 cents a page, for black and white, a 200 page book would cost you $20.

    The one thing I would do about copyright law is I'd shorten the copyright term, the length copyrights last. Instead of the life +70 or whatever term, I'd only have them last a few years from first publication. Of course any derivative work would also get a few years.

    Falcon
    1. Re:The end of the tyranny of copyright law. by iminplaya · · Score: 1

      Without copyrights a publisher could take what you wrote and sell it as their own without paying anything for it.

      I'm sorry. This is getting too recursive for my weak mind to deal with. Every time I send somebody on a goto to something more descriptive and/or stated in a better manner than I'm capable of, it just loops back. So, again... I shall refer you to somebody with a larger vocabulary and a better grip on language and composition. For now, FOSS, or copyright is not the most important issue of 2008. And it most likely won't come up in any campaign speech from any of the people who present true danger for all of us. It is merely a tiny piece of the big picture. A tool, not the motivator. What I am seeing is that we are going to continue down the same path we have been on since we crawled out from the slime, but from which we have never really ventured very far.

      --
      What?
  64. Inkscape 0.46 by bbyakk · · Score: 1
    1. Re:Inkscape 0.46 by Vireo · · Score: 1

      ... But we still have to wait for Inkscape 0.50 (Milestone 16) for our arrowheads to be the same color as the arrow lines. In the mean time, keep your arrows black, please.

    2. Re:Inkscape 0.46 by bbyakk · · Score: 1

      The main reason this is not fixed is because to PROPERLY (automatically) fix it, you need to use some SVG 1.2 features. So if we do it now, it will work in Inkscape but not in most other SVG viewers. Do you really need that? So for now, use the workaround: Effects > Modify path > Color markers to match stroke. That works everywhere.

    3. Re:Inkscape 0.46 by Vireo · · Score: 1

      Hey thanks, didn't even know this feature...

  65. copyrights by falconwolf · · Score: 1

    How is the existence of the GPL only necessary because of copyright? I don't get it. If I write some code and I want it to stay open, because it is attributable to me, I use the GPL. How would abolishing copyright keep my code open? Am I missing something obvious here?

    The GPL uses and depends on copyrights, that's what copyleft is about. Without copyrights the GPL means nothing, it allows a person to use GPL code and make modifications to the code. But if the code is distributed the source has to be as well. Copyright laws are responsible for this, as if someone distributing GPL software who doesn't make the source available can be sued.

    Falcon
  66. Re:As silly as this sounds coming from a Linux use by JensenDied · · Score: 1

    Well as for the media player portion of your question I think Amarok fields your needs.

    You are able to browse, select (multiple) files from your filesystem and have them appended onto your playlist.
    You can also add files, (multiple) directories to be added into your collection for easier searching.
    You can use a search such as ` genre:"classical" OR genre:"instrumental" ` to grab songs that match either criteria. This is also available through a menu off of the search bar.

    OSX supports SMB for use as network storage that you can have auto mount on your mac machine, use Cmd-Shift K to bring up that menu on your mac client.
    It should be simple to add/edit content if you grant your clients r/w access, the method might vary some on the server end depending on your distro.
    iTunes shouldn't care about the fact that its remote, after all its just another location in the file system when you have it mounted.

    Traditional or not I have no idea what that last paragraph is about, unless your trying to run 2x window managers, 2x desktop environments wine (probably with an unmanaged desktop) and wow inside that... I'm still lost.

    --

    09:F9:11:02 - 9D:74:E3:5B - D8:41:56:C5 - 63:56:88:C0

  67. Re:What boons for FOSS are you looking forward to. by falconwolf · · Score: 2, Interesting

    Copyright instills a limited supply (and source) onto something that by nature is unlimited

    I am glad to say this is wrong. First someone has to write whatever it is, and copyrights give them an incentive to write it. Therefore copyrights are more likely to make sure something is written, and therefore increases the supply, than not having copyrights. As it is now, a writer does not have to copyright something, they can instead put whatever they create into the public domain. And how many books, movies, or songs are released into the public domain as compared to those copyrighted? I know of no such material that has been placed into the public domain but those for whom the copyright has expired. However as I said in a previous post I would shorten copyright terms, I'd only have copyrights last a few years from first publication.

    Falcon
  68. Re:What boons for FOSS are you looking forward to. by abigor · · Score: 1

    That's what I meant...sorry, I obviously wasn't clear. Novelists write with the hopes of future earnings. The other guy said novelists should write because someone pays them ahead of time, but forego future earnings. As you noted, novelists don't get paid ahead of time. So the net effect is to write for free (a bit tongue in cheek, I know).

  69. Originality by Werrismys · · Score: 1

    I'm looking for a new revolutionary idea.
    Desktops have been essentially the same for 20 years now.
    I have no idea what that idea is... I just hope someone figures out something really fundamentally cool to do with existing frameworks.

    --
    'Once scientists, even the dim-witted social scientists, get muzzled, the Western Civilization is finished.' - oldhack
  70. Re:What boons for FOSS are you looking forward to. by CheeseTroll · · Score: 1

    *Who* will pay the songwriter this one-time lump sum that will make their efforts worthwhile? And where will this person (or group) get their money? From charging each customer a fraction of that amt originally paid to the songwriter? Sounds similar to the current situation. Or are you arguing that once a specified number of people have purchased the song (and covered the songwriter's expenses), the rest of the customers shouldn't have to pay anything?

    --
    A post a day keeps productivity at bay.
  71. Linux + WINE by falconwolf · · Score: 1

    Wine has been getting very good of late (e.g. runs Photoshop 7 flawlessly, runs Office 2003 with some bugs). In fact, I see Wine's Windows-compatibility over the next few years becoming a major selling point for transitioning to Linux.

    While WINE may help peoples transmission to Linux from Windows I also think it can have the disadvantage of discouraging software developers from porting their Windows software to Linux. "Why should we spend the tyme and money creating a Linux port when Linux users can run our software in WINE?" Personally I'd rather run a native Linux port of Photoshop CS3 than run Photoshop 7 in WINE.

    Falcon
  72. cotton farmers by falconwolf · · Score: 1

    Please do not send any more clothes. You've already killed off the local textile industry and put all the cotton farmers out of work with your free clothes. Who can compete with free crap? Please stop.

    Actually it's cotton subsidies that have harmed Third World cotton farmers. What could really help them though is if instead of growing cotton, which relies on heavy applications of petrochemical inputs, farmers switched to hemp, jute, or other sources of natural fiber that don't require these inputs and are easy to grow.

    Falcon
  73. What boons for IP are you looking forward to. by Anonymous Coward · · Score: 0

    I find it interesting that Slashdot's reaction to abuse of a working idea is to go with an extreme idea like abolishment. Apparently no one here is capable of following through to the logical conclusion what complete abolishment of IP would mean. e.g. privacy wouldn't exist in a digital world.* Also you'd replace one flawed system with a more draconian one. No, as the saying goes when one wishes to discern motives, one should "follow the money". That applies as much to individuals as it does corporations. What do abolishers (think) they will get out of abolishment of IP? Certainly not an endless stream of free quality content. No more than slavers expected an unlimited supply of free quality labour to work the fields. The present system works because no one is a slave (any kind of slave) to another. But can enter into reciprocal agreements with their fellows and walk away if they don't like the terms. Each trusting that the other will honor their side in both conclusions. Piracy short-circuits that and instills mistrust and disrespect the foundations of a civilized society undermined. It also hurts it's practitioners by extending to the rest of their life by making certain they can never be put in a position of trust or power over others or their possessions for anyone demonstrating their principles are so flexible just might donate your possessions to "the cause". Also if they ever change their mind and become involved in a career of "virtual property"? They'll find they've poisened the well for themselves as well as those they envy for apparently benefiting from their labours.

    *No I'm not talking about the "loss of", but it simply not existing to begin with.

  74. Re:What boons for FOSS are you looking forward to. by prshaw · · Score: 1

    >> If I hire Bob to come build me a gate, he doesn't get to charge me every time someone comes through it. He is paid to build the gate and then he gets the hell out of my life. He only gets paid again if I need him to return and do more work.

    That totally depends on what arrangements you made with Bob to build the gate. You could have hired Bob to build the gate and his pay is the ability to charge anyone that goes though the gate (ever hear of toll road?).

    And the people walking up to the gate don't have the ability to change which agreement you made with Bob, they may get to walk through on your dime or they might have to pay him his or they can decide to not go through at all.

  75. Re:What boons for FOSS are you looking forward to. by lordSaurontheGreat · · Score: 1

    I blanked out the first two paragraphs in, but what you're trying to say is that you want people to pay people once to make something, and then that be the end of the money trail. Am I close to being right?

    The flaw with that is that then only the interests shared by people with big bucks will get made.

    The current system is the worst system ever, except for all others tried, and your hypothetical one. Work on it a bit more and I'm sure it'd be good though!

    --
    Consider yourself spoken to.
  76. OpenMoko and Android by chappel · · Score: 1

    I'm anxiously awaiting FOSS to actually DO something in the cellular world. I'm about ready to learn how to write code just to help push things forward with the Neo1973 (as it is, I'd only slow it down). I can already taste full mobile access and synchronization with my google mail, contacts and calendar, asterisk sorting and routing the calls right on my cell phone, and cellular companies starting the long slide back to being just the carriers they started out as, and no longer dictating what I can do with my end-user device. Oh - and I'm really enjoying seeing the MAFIAA slowly realizing that consumers just aren't buying DRM.

  77. SongBird Media Player by Cyko_01 · · Score: 1

    I'm looking forward to a public release for songbird. Songbird is pretty much Winamp and Firefox mashed into one, and they made it work on any OS - even linux. I'm also looking forward to some of the more popular add-ons being ported from firefox (PlainOldFavorites, IETab, TabmixPlus, etc)

  78. here by ls354 · · Score: 0

    2008 foss will be rename floss. by changes I tell you what

  79. DRM by Trogre · · Score: 1

    When mentioning DRM in the context of FOSS, we're always, always talking about the Direct Rendering Manager, right?

    Right?

    --
    "Nine times out of ten, starting a fire is not the best way to solve the problem." - my wife
  80. Re:What boons for FOSS are you looking forward to. by novakyu · · Score: 1

    Just reiterating what the other poster said. In the normal world, you get paid for the work you do, not the work of your work. If I hire Bob to come build me a gate, he doesn't get to charge me every time someone comes through it. He is paid to build the gate and then he gets the hell out of my life. He only gets paid again if I need him to return and do more work. Er, you are missing one of the main ways that copyright works: WORK FOR HIRE.

    How do you think corporations like IBM and Sun own copyrights? After all, corporations cannot write programs (even though they are legal persons). Programmers get hired, and what they write while they are employed belongs to the company. They got paid once, and they will not, in most cases, see any more royalties for future sale of that program. The same applies to journal, magazine, and newspaper articles. Since reporters are hired by the publisher, the copyright usually belongs to the publisher (and, again, the journalist or columnist will not see additional royalties from future publication). A novel is a special case, since most of the time, novelists are not hired by someone to write it. They are probably lucky to publish them without having to pay for the cost out of their own pocket (probably through some licensing deal with publishers).

    I could go on and on, but one thing I want to emphasize is, most of the time, if someone paid you to create something that's copyrightable, the person who paid you owns the copyright, as a work-for-hire, not you. That's the law.

    P.S. BTW, that's why FSF wants you to get a copyright disclaimer from your employer if you contribute to FSF projects (and they want copyright assignment to them, for more effective GPL enforcement)---your employer could potentially claim copyright on your code as work-for-hire, sometimes even if you worked on it entirely on your own time.
  81. CMS by zig007 · · Score: 1

    Last year, many people(like myself) started using CMS, since free CMS:es like Drupal and Joomla now has reached a level of usability where they save so much developing time that it can't be ignored anymore. In fact, I'd say that not using them would, in most web development projects, be irresponsible and bordering on stupid.

    So I predict, that from this year and forward, it will become way harder for consulting firms to charge customers lots of money to, for the millionth time, develop the same GUI:s and content handling mechanisms that most web sites need.
    An other thing is that so many of these firms so unaware of the threat they are facing, that this will come as a complete shock.
    "What, did our competitor offer a same or higher level of sofistication for a TENTH of our price?".

    --
    Baboons are cute.
  82. Uhh..rtfa? by plasmacutter · · Score: 1

    it just says drm will become a political issue again, not that people will be trying to sneak it into linux.

    Additionally, it's misleading.

    It proclaims vista's "growing userbase"(laughtrack here) represents consumer acceptance of drm, and also implies there were no ubiquitous DRM modules in win XP.
    The only real difference between the two is the DRM modules in vista are utterly destroying system stability to the point everyone with a clue is advising people to "UPGRADE TO XP PRO"

    --
    VLC FOR MAC IS DYING! IF YOU DEVELOP, PLEASE SAVE IT!!
  83. TurboVM and GC, Exceptions, Threads? by null-und-eins · · Score: 1

    Your post has prompted me to finally set up a page for TurboVM, a virtual machine I have been working on. What makes TurboVM interesting is that it's (1) small and simple, (2) not tied into a programming model like typical VMs that are designed with a single language in mind, and (3) FAST. The problem with most modern code generators and VMs is that they are tied to a specific way of doing garbage collection and exceptions that might suit some but not all languages. If you decide to provide none of these runtime services you must provide an API such that language designers can implement their own. However, designing this API is also quite difficult. I looked at the TuboVM pages but found no design goals or principles that would explain this but also did not want to dig trough the code. Would you mind to explain them here?
    --
    At the beginning was at.
    1. Re:TurboVM and GC, Exceptions, Threads? by RAMMS+EIN · · Score: 1

      ``The problem with most modern code generators and VMs is that they are tied to a specific way of doing garbage collection and exceptions that might suit some but not all languages. ... I looked at the TuboVM pages but found no design goals or principles that would explain this but also did not want to dig trough the code. Would you mind to explain them here?''

      I explicitly want TurboVM to be generic enough to accomodate any programming language. Therefore, I am not including any support for garbage collection or exceptions or object-orientation or anything of the sort in the VM. Instead, I am keeping the VM close to a real machine. That way, I won't be raising any barriers that do not exist with real hardware, and existing techniques developed for real hardware can be used for compiling to TurboVM.

      --
      Please correct me if I got my facts wrong.
  84. Re:What boons for FOSS are you looking forward to. by Anonymous Coward · · Score: 0

    I know this will never be read - one day after post, and with a starting score of 0 and all.

    But I hate it when people say things shouldn't be copyrighted (I appologize before hand if that was not the jist of your summary, but this is Slashdot after all). Well, I sorta hate it.

    Imagine, if you will, that there exists something in this world whose supply is by nature unlimited, but which we are legally prevented from copying. And that you agree with this.

    Did you come up with paper money? I did. Really, in a system of Fiat Currency, there is little intrinsic value to paper money - the value of a 1$ bill is 1$, no matter how many 1$ bills exist. The whole system is built arround the purchasing power that the money brings; if everyone wants it because that's how they trade, a 1$ bill gains purchasing power. Though a problem lies when people copy that 1$ bill.

    We start with you having the only 1$ bill in existance. All the collectors want this, and you are free to set your own terms. But someone says "it isn't fair, he has a 1$ bill that I want" and copies it. All of a sudden, value has been created. There has been no theft (unlike how the law treats copyright - that, I admit is flawed); as theft implies a transfer of an item of value. Where once was a value of one 1$, now there is a value of two 1$. But, why is this illegal? And why do we agree it should be illegal?

    Because it's not about intrinsic value of the item, it's about the extrinsic value, aka purchasing power. Before you were free to set whatever terms on your 1$ bill, now if you do that the counterfeiter will simply sell his for slightly less... and since he has no problem creating more... [aside: this makes the world banks the greater violators of copyright / counterfeit]

    Well, it's the same damn thing with copyright. If I copy an MP3, I've created value, for the value of the file is in the music it contains. Except, since there are so many MP3's, if someone wanted to get an MP3, they'd look arround and say "well, everyone else is copying it, so should I."

    And that's the real problem. With all this creation of intrinsic value, how does extrinsic value adjust? And what happens when everything has no extrinsic value? An extrinsic-value free system is a high-minded ideal, one I personally see some advantages to, but the whole damn economy is based on the assumption that what I do has some purchasing power; be it that I trade my work for currency or goods (barterring).

    Given how old the barterring system is, I sure as all hell don't think we should be blindly throwing monkey wrenchs into a system which has supported society for thousands of years.

    * (Feel free to point out how Shakespeare et al. are remembered through copies, or how art has always been copyable, or how it's just an analogy, or how we aren't talking about goods but Imag. Prop., or how ... trust me, I've considerred most of them. And rather than dismissing, it's smarter to think "could the problems that occurred thanks to XYZ occur all over again?")

  85. excellent for remote by DrYak · · Score: 1

    Actually compositing renderer are excellent when doing remote control over slow links.

    When using X-forwarding over SSH, your remote application is treated on screen like any other local one.

    When using a classical window manager, every time you drag another window over the remote application or switch desktop or whatever similar, the windows manger sends a message to the application asking it to repaint it's window and the application sends-back again what should be visible on screen. This is network intensive and if you're working over a slow link, application spent most of their time with solid gray windows waiting to be repainted.
    (You need to switch to something different like VNC).

    When using a compositing windows manager, each application is rendered inside a texture buffer. No application's window content is destroyed. The manager simply compose the screen by drawing those textures. If a window is draged over another or if an application is swap in or out of screen while switching buffer, there's no need to redraw anything the complete window is already available in the texture buffer.
    Thus it is a lot less network intensive

    In my experience, Compiz actually make working with X-Forwarded application over a slow link much /faster/ !

    --
    "Sufficiently advanced satire is indistinguishable from reality." - [Tips: 1DrYakQDKCQ6y52z6QbnkxHXAocMZJE61o ]
  86. Lets make sure that artists live off nothing by Anonymous Coward · · Score: 0

    Read up on some John Ruskin, my friend. Commoditisation of art is not a good thing. Being an artist becomes just another job - and a massively unprofitable one, at that. In your world the company actually running the press gets everything by running off new copies ad infinitum, your novel becoming to them a gift that never stops giving (assuming of course that it's any good).

    So by all means, remove copyright, and allow all the money in books/films/music to fall into the hands of middlemen. Deny artists everything. Hell, why should art be special? Why should artists do anything? Photoshop, for example - one of the most widely pirated pieces of software in the world. If Adobe cannot make money off each copy sold, what is the incentive for them to create it in the first place? Who's going to pay them?

    FOSS is a hobby for most people, a job for only the lucky few. Software, music, films, books - there is little incentive to create any of these things in a copyright free world save for the personal satisfaction derived from doing so, a hobby. Most of the artists I know will say that they work on their craft not only out of personal satisfaction, but because it can pay the bills (and they always aim to create something great, because they know the rewards can be great). I think you dramatically overestimate how many people are willing to work for free. Why do something amazing when it doesn't have to be? Kick the next piece of crap out the door, the publisher pays the same. Where have all the artists gone? They're all working other jobs now, never to produce a piece of art for anyone but themselves ever again.

    The only people who benefit from a forced removal of copyright are publishing middlemen and people who just want somebody else's work for free.

  87. No by Anonymous Coward · · Score: 0

    "If I hire Bob to come build me a gate, he doesn't get to charge me every time someone comes through it."

    Argument by analogy. Always weak.

    "Same with the novel (or insert song, program, etc in here). You might have (and without copyright likely would have) been paid to write the story in the first place."

    Why is someone going to pay you money "in the first place"? Only if they expect to get back more than they paid you!

    "Once you've been paid to write, you write the novel. Now, you can choose to only give it (or you could technically sell it) to the people who already gave you money, but the bottom line is you will have already been paid to write it."

    By people expecting to get back more than they invested in you.

    "Once it's done your part is done and if people want to make copies of it to sell, or to give away, that's their own concern. If you want to keep raking in cash you better have written a story good enough that people are willing to pay you to write another one."

    No one is going to pay you to write a story unless they expect to make more money off it than they paid.

    "And you better be willing to write a number of "sample" stories to begin with if you want anybody to start reading your stuff."

    Professionals do have "samples", not for general distribution though. To interest potential backers.

    "With music, it's even easier. You could in the same way be paid to write the songs, or more likely you would be paid for live performances (ie, you are actually gonna have to get out there and do work again)."

    Music is not easy. Composition and performance require a high level of understanding that does not come overnight. You know what "paying dues" means? Talk to few musicians about it.

    "With software, GPL isn't needed"

    That's nice to know!

    "because if you release a closed source version of my code I'm just gonna decompile it, reimplement the changes in a high level language, and rerelease it again."

    Your code, your call.

    "If you want to be paid for software, someone will end up hiring you to do a custom program for them (ie, you must work, not live off imagined entitlement)"

    Only if they expect the custom program to improve their business, or expect to sell it to their competitors enough to recoup the money they spent on you.

    ", or you can write free stuff and charge to support it (again, working)."

    Your call. But yet again, you need to understand why anyone would pay you money. Only if they expect to get back more!

    "You also have to understand that not EVERYTHING will/would be feasible with copyright gone. It's a shift of society, but for the better."

    Not if the artistic professionals let alone the geniuses cannot turn a profit due to freeloading. Obviously, they will cease producing their creations, except for their private amusement. Which is a shift for society but decidedly NOT for the better.

    "I'm sure if we reinstituted slavery we could achieve some absolutely marvelous feats in construction and such"

    I'm sure we wouldn't. Human "manpower" has long been eclipsed by construction technology.

    ", but that doesn't mean it's something that a fair society should support."

    This old historical grievance perpetrated by people long dead and gone is absolutely irrelevent to copyright! Once again, you are arguing by analogy. Always weak, and this time, frankly ridiculous.

    "I seriously doubt large scale motion pictures as they currently stand would still be realistically profitable"

    Yes, and those who lost their money will not be funding any more! Too bad for those of us who enjoy such pictures.

    "(though live theater certainly might return to a much more profitable status). That's not something we can't live without though"

    Oh really? Any other arts out there you'd care to ditch? All of them? Very judgemental aren't you?

    "and it's certainly not worth instituting insanely oppressive laws over"

    If c

  88. Nothing nothing and nothing by swordgeek · · Score: 1

    "What boons for FOSS are you looking forward to in 2008?"

    None. I don't care about FOSS. I honestly don't care for the most part where my software comes from, as long as it does the job.
    If it's free and closed, then I'll use it. If it's free and open, I'll use it. If it's commercial and reasonably priced, I'll buy it and use it.

    It really is amazing how much good software is being ignored by zealots because it doesn't fit their life's philosophy. Fine for them, but I'd rather use the tools that work the best for my needs.

    --

    "People who do stupid things with hazardous materials often die." -- Jim Davidson on alt.folklore.urban
    1. Re:Nothing nothing and nothing by higuita · · Score: 2, Insightful

      if it do what I need and its free (beer and speach), i will dump all close apps i might have!!
      if i see someone using something that can be replaced fine with FLOSS software, i will do it.

      the more people use FLOSS software, more easilly will new open projects show up, and existent ones get better and better.

      i dump and fight against many close source programs because they refuse to work with others programs and use open standards.
      if they would use open standards, worked with other programs, i would be completely neutral to then and could even use several of then (and i use several like this).
      As far i i can do, i refuse to use close apps that can be replaced and those that cant, i try to find a balance.

      so yes, i'm zealot to want FLOSS to get better, not only because it helps others, but even more because it helps me and the programs that i use to get better.

      No one uses a OS or apps that dont work, we use FLOSS software because it works good enough for our needs and each year that "good enough" overlaps more and more closed apps until it can replace everything that anyone wants.

      --
      Higuita
  89. Re:What boons for FOSS are you looking forward to. by Kjella · · Score: 1

    What you're asking for is the death of the mass market. The chance that large fractions of the population will up front donate mini-payments for something that
    1) May or may not happen because not enough pay)
    2) Which they have next to no guarantees of what they're actually getting and even great companies make sucky products
    3) That they'll get free copies of if others pay because someone in that mass market will let everyone copy for free
    is absolutely none. It'll destroy the simplest, most direct feedback on products (product sucks => sales tank => lose money) because they've already gotten paid, now they just need to get away with it. Focus will shift entirely from delivering to throwing the best sales pitch and scams that have no intention of delivering will flourish.

    In addition, you have to remember who this will hit the most. The mass market has let average consumers have a far greater influence on the market, before it was the rich and powerful that through patronage set a lot of the agenda. Common art mostly survived through amateur entertainers that probably got some patronage at the local pub, but that was also it. The result would be that you can't find 25k people throughout the world willing to pay $1 on iTunes for niche music, instead you'd have three local fans which just can't support you. If you think the world was bland before, I doubt it'll help.

    In the end, what's "natural" is not really interesting. Consumer protection laws are by no means natural, but I still want them. The real question is, does it make the world a better place or not? Just screw the DRM and use restrictions and pseudo-sale licenses, sell me a copy like a book (which is "IP" as much as the rest) and I'd be happy. Screw me and I'll screw you right back.

    --
    Live today, because you never know what tomorrow brings
  90. Re:What boons for FOSS are you looking forward to. by Anonymous Coward · · Score: 0

    I'm looking forward to the end of the tyranny of copyright law. Only then will there be true progress. Otherwise, this and everything else will be buried under the dog pile of licensing, which has already begun.

  91. Will Teh Lunix be ready for teh desktop in 2008? by Anonymous Coward · · Score: 0

    I guess one thing I'd be looking forward to is a version of Teh Lunix which actually works. But every year I ask for way too much, and end up disappointed.

    The tragedy is every year I ask for the same thing.

  92. Re:What boons for FOSS are you looking forward to. by iminplaya · · Score: 1

    You seem to be sidestepping this question.

    On the contrary, the question has been asked and answered. Without copyright, the question, and GPL become moot...nothing more than mental masturbation.

    --
    What?
  93. Re:What boons for FOSS are you looking forward to. by iminplaya · · Score: 1

    What I'm advocating is the end of exclusivity. You have no exclusive right to a divulged idea (I think that's how he said it), nor to natural resources. And, by the way, the food analogy doesn't work. We can produce more than we can consume, but distribution costs are still quite high, and have to be paid for in some fashion, and it seems we would rather destroy the "surplus" to maintain the price.

    Why would you sing that, if you believe in a lack of copyrights you should do just that.

    I will, and I did...many times. Same goes for "Happy Birthday..." But copyright gives the cops the authority to kick your door down if the RIAA demands it, and I would rather recover from my hangover in my own warm bed, not some jail cell awaiting a "swift" trial.

    I'm in an endless infinite loop

    --
    What?
  94. Re:As silly as this sounds coming from a Linux use by Risen888 · · Score: 1

    Why not Amarok? Not a rhetorical question, seriously curious. I have several issues with it, but for the criteria you named (browsing, selection, and playback) I feel that it beats the pants off iTunes.

    My main gripe with iTunes is that it forces you to organize your music the way it wants you to. Fuck that. I've had the same directory structure and naming and tagging system for ten years. To quote Top Gun, "The rules are not flexible, nor am I."

    (If you'd rather have a GTK app, please for the love of God try gmusicbrowser. I like it more than Amarok, but I use KDE so I use Amarok. You'll thank me for this.)

    --
    Hey, I finally got my first freak! Took you long enough!