Slashdot Mirror


New Nano-ITX Boards Shown At Cebit

Subartik writes "The new nano-itx boards from Via have been shown at the CeBit show in Germany. It looks like it will be a suitable platform for all kinds of small form factor devices. See VIA embedded and Linux Devices for the specs and pictures" An anonymous reader points to PC World articles about the Nano-ITX board itself as well as the first system which will include it.

9 of 228 comments (clear)

  1. Re:IPv6 by DAldredge · · Score: 0, Offtopic

    You know, it's not that hard to buy the food yourself...

  2. Re:I claim it by Anonymous Coward · · Score: -1, Offtopic

    You can only call interplanetary dibs if you can see the planet as you call it. Just like calling shotgun.

  3. Re:"If he committed no crime in his home country" by Anonymous Coward · · Score: -1, Offtopic

    You fail to see the big picture. For instance, several books are prohibited in Iraq, Iran, and several other countries. Should Amazon.com employees be extradited to face death penalty in those countries for selling books that are prohibited there?

    It's the same thing. You can't allow laws from one country to affect citizens of another or the most restrictive laws from any one country would apply to all Netizens. That's not wise.

  4. aussie, aussie, aussie, ... by Anonymous Coward · · Score: -1, Offtopic

    .. conducted the study after Australian researchers announced in 1999 that they had made a computer model showing it was theoretically possible for beer bubbles to fall down the side of a glass

    trust it to be australians that worked that one out first.
    something tells me that experiment was most likely conducted on a friday nite after a few beers at the lab.

  5. Re:um.. great? by Anonymous Coward · · Score: -1, Offtopic

    "Shakespeare can put all England on stage in Henry IV, I am confident that we can put on the whole of Middle Earth..."

    Oy veh...Note that putting the story of Henry IV on stage took Shakespeare two very long plays-- Henry IV parts one and two together are over seven hours, uncut. Even then, the scope of the plays is much smaller than the War of the Ring. Yes, the historical backdrop of Henry IV is a series of wars and rebellions that cover most of England as well as Brittany, but the realy story is much smaller. It's about the (contested) king, his son Hal, and a few other key court figures suh as Hotspur and Falstaff. The real plot is the search for honor by these characters, NOT the wars and the fate of the kingdom. Anyway, to cover the full scope of the war/political story, you have to include two more plays, Richard II and Henry V, which would bring the stage running time to over twelve hours.

    So Shakespeare did NOT put "all England" on stage in Henry IV...he was much too smart to try that. Pity the West End producers can't learn from the Bard.

  6. If my Slinky taught me anything . . . by Anonymous Coward · · Score: -1, Offtopic

    One kink and it's trash can city.

  7. Re:Just go out and buy one... by Anonymous Coward · · Score: -1, Offtopic

    This project is only economical if you have old laptops sitting around. If that's the case, you probably won't have enough CPU/RAM to install the latest version of debian.

    I have built picture frames out of old pentium-class laptops ('bout $100 off ebay, or cheaper if you shop around your own town), and they have no problems running the latest Debian. Just don't run X!

    I use zgv to cycle through the pictures. Works great, *and* is less filling.

  8. Re:Different threading model by Anonymous Coward · · Score: -1, Offtopic
    Not exactly. All this means is that threads do not migrate preemptively, nor do they migrate while blocked or switched out while in kernel mode. Threads only migrate if (a) the thread itself wants to move to another cpu or (b) the thread is returning to user mode and the userland scheduler decides to migrate the thread to balance the load out (which only applies to threads associated with user processes since no other type of thread can 'return to usermode').

    Kernel threads almost universally stay on the cpu they were originally assigned to. High performance threaded subsystems, such as the network stack, are replicated. That is, the network stack creates multiple threads (one per cpu) and those threads do not migrate because, obviously, they do not need to.

    Generally speaking, the purpose of making thread migration explicit instead of automatic is to partition a larger data set across available cpu caches rather then cause the same data to be shared amoungst all cpu caches. The processors operate a lot more efficiently and SMP scales a lot better. Most people do not realize the horrendous cost of moving threads between cpus because the cache mastership change is invisibly handled by hardware, but the cost is still there and still very real.

    -Matt

  9. FTSH is an exception system for shell programming by Anonymous Coward · · Score: -1, Offtopic

    What's with all of the people claiming that FTSH will ruin the world because it makes it easier to be a sloppy programmer. Did you freaking read the documentation?

    To massively oversimplify, FTSH adds exceptions to shell scripting. Is that really so horrible? Is of line-after-line of "if [$? -eq 0] then" really an improvement? Welcome to the 1980's, we've discovered that programming languages should try and minimize the amount of time you spent typing the same thing over and over again. Human beings are bad at repetitive behavior, avoid repetition if you can.

    Similarlly FTSH provides looping constructs to simplify the common case of "Try until it works, or until some timer or counter runs out." Less programmer time wasted coding Yet Another Loop, less opportunities for a stupid slip-up while coding that loop.

    If you're so bothered by the possibility of people ignoring return codes it should please you to know that FTSH forces you to appreciate that return codes are very uncertain things. Did diff return 1 because the files are different, or because the linker failed to find a required library? Ultimately all you can say is that diff failed.

    Christ, did C++ and Java get this sort of reaming early on? "How horrible, exceptions mean that you don't have to check return codes at every single level."