Slashdot Mirror


The Disposable Computer

sp00 writes "A disposable paperboard computer has been developed and is already in use in Sweden. Developed by Cypak AB, the paperboard computer can collect, process, and exchange several pages of encrypted data, the company says." Pretty impressive, given that they say it has a mere 32K of memory.

108 of 358 comments (clear)

  1. 32K?! by Anonymous Coward · · Score: 5, Funny

    Jeez, no one would ever want to buy that underpowered machine! Give me 640k, and we will talk. ;-)

    1. Re:32K?! by ackthpt · · Score: 5, Funny
      Jeez, no one would ever want to buy that underpowered machine! Give me 640k, and we will talk. ;-)

      Oy! Yer spoilt! I used to program in 32K and I liked it!

      Why, some of the finest programming and games I've ever seen fit in 32K. It's all slop nowdays. Widgets, buttons and things thag go Bing! and need 256 MB to do it in.

      --

      A feeling of having made the same mistake before: Deja Foobar
    2. Re:32K?! by Arconaut · · Score: 2, Insightful

      Real inovation took place in 8k.

    3. Re:32K?! by Mipsalawishus · · Score: 5, Funny

      But does it run Linux???

    4. Re:32K?! by still_sick · · Score: 4, Interesting

      A few months ago I pulled out my old TRS-80 and the classic "Dungeons of Daggorath" (you pups have no idea what you're missing). It certainly struck me hard that in the instruction manual it specifically states that your system must have AT LEAST 5K of memory to play the game. Mad respect to all the trailblazers who managed to write kick-ass games under those restrictions.

      --
      ...Also, I didn't know Buggalo could fly.
    5. Re:32K?! by martingunnarsson · · Score: 2, Funny

      Yeah, and imagine a Beowulf cluster of these...

      --
      Martin
    6. Re:32K?! by KronicD · · Score: 5, Interesting

      Yeah, i know what your talking about, i'm in a programming principles class at uni and i was quite pissed off when he said theres no reason to use byte, short or int anymore since all machines have memory to spare we should store every variable as a long.

      I think this attitude is whats causing much of the bloat situation now days.

      --
      "Those who would give up Essential Liberty, to purchase a little Temporary Safety, deserve neither Liberty nor Safety"
    7. Re:32K?! by MoreBeer · · Score: 5, Funny

      It's called a Fire Hazard.

    8. Re:32K?! by Herkules · · Score: 3, Insightful

      Noop! It has to do with code reuse. The code just gets more genral and bigger. But it also gets easyer to develop.

      So we get big and slow quick and cheep.

      (quick = less hours)
      (less hours = cheeper)

      --
      CIA Factbook 2002 (US):"Since 1975, practically all the gains in household income have gone to the top 20% of households
    9. Re:32K?! by flappinbooger · · Score: 5, Funny

      Ok, im imagining it ... Looks sorta like a library?

      --
      Flappinbooger isn't my real name
    10. Re:32K?! by Urkki · · Score: 4, Informative
      • i was quite pissed off when he said theres no reason to use byte, short or int anymore since all machines have memory to spare we should store every variable as a long.

      Well... For most current computers, long takes as much space as int, 32 bits (or 64 bits for 64 bit CPUs). And for any individual variable, it'll take at least that amount of memory even if it's 1 bit bitfield (not sure if common x86 compilers by default pack variables to take less space if they can, though).

      So using anything else doesn't really gain you anything in space, but it may well hurt you in peformance (and code re-use).

      Bloat comes from copy-paste coding, and slowness comes from incorrectly chosen data structures and algorithms. This all arises from poor design, so for example the programmer is often faced with decision to change entire existing code to make some piece of it more generic, or copy-pasting that piece and modifying it a bit to fill the new need.
    11. Re:32K?! by zero_offset · · Score: 4, Informative

      Speaking as a programmer whose first programming experience was Z80 assembly with 4K of RAM, I had to seriously revamp my thinking in recent years, but basically 32-bit processors work significantly better with 32-bit values. Also, except when memory is statically allocated and you've forced the compiler to pack memory allocated to your variables, that carefully considered allocation of a single byte is going to take up 32 bits of actual memory anyway, because once again, the CPU can access it that way significantly faster.

      In a nutshell, if you use a byte, short, or int, you're slowing down the machine. The only good reason to optimize to that level is when you're expecting memory problems, and as your professor pointed out, that is rarely a consideration these days (especially when you add modern paging techniques to the vast amounts of available physical memory).

      The more interesting question is the chicken-and-egg angle on runtime bloat -- did RAM increase because users needed it to run steadily ballooning applications, or did applications get bloated because cheap-as-dirt RAM meant end user machines had memory to spare? (I suppose both are probably true... which would be a bizarre conclusion if we were actually talking about chickens and eggs...)

      --

      Slashdot quality declines as the number of hot grits posts decreases. - Provolt's Law, Apr-09-2005

    12. Re:32K?! by FuzzyBad-Mofo · · Score: 3, Funny

      32K was enough to go to the moon, and it was enough for me!

    13. Re:32K?! by Aidtopia · · Score: 3, Insightful
      [S]lowness comes from incorrectly chosen data structures and algorithms.

      It is certainly true that a bad algorithm can result in slow code, but most of the difficult performance problems I've had to tackle in the last several years are more closely related with bloat. In other words: virtual memory thrashing.

      Data structures are often suspect when thrashing is a problem. If nodes are scattered far and wide, then the page file can get a workout. Powerful, dynamic containers often have high-overhead per node and make little if any effort to improve locality of references. More than once I've had to replace an STL map with a hash table in order to get decent performance. (I don't intend that as a blanket condemnation of STL, it's probably just a funky implementation.)

      But it's not just data structures. Code bloat in general increases working sets. The structure of code, with long chains of hooks in message passing and method invocation, can result in skipping through dozens of pages.

      When programs were simpler, smaller and more procedural, performance problems appeared inside loops. Number crunching is still this way.

      But today we have interactive, event-driven programs implemented with deep object hierarchies that mask how much code is actually being called. A single button click to bring up a dialog can trigger tens of thousands of lines of code scattered all across virtual memory. Branch prediction doesn't help here. Level 1 caches don't help. Pipelines are stalled. The processor waits for the VM manager to deliver the next instruction to RAM. With hardly a loop in sight.

      We have few tools to fight this type of performance problem. You can get more RAM or use less memory. You can try to improve the locality of your data structures and your code, but those efforts are often at odds with a lot of modern practices such as object-orientation, enhancement by derivation, and letting the VM manager and the garbage collector worry about it.

      Hardware has gotten inconceivably faster, but software has hardly picked up the pace (in most domains). Sure, the code does more today, but the factors still don't add up. And it can't totally be explained by a bunch of bad algorithm choices. Code bloat is a big problem.

      Fight code bloat.

  2. Obligatory BillG Reference by oldosadmin · · Score: 5, Funny

    Who needs more than 32k of memory anyway?

    --
    Jay | http://oldos.org
  3. a mere 32K of memory by the_other_one · · Score: 5, Insightful

    I remember when a 32K Commodore PET was a cool thing.
    If they print double sided could they emulate a Commodore 64.
    In a few more years ... Just imagine a cluster .... in a three ring binder.

    --
    134340: I am not a number. I am a free planet!
    1. Re:a mere 32K of memory by MotherInferior · · Score: 4, Interesting

      These guys don't need no stinking 32K. They work with only 4K.

    2. Re:a mere 32K of memory by Anonymous Coward · · Score: 5, Interesting
      According to this history of ARPANET,

      The network started to become a reality on August 30, 1969, when BBN delivered the first Interface Message Processor to Leonard Kleinrock's Network Measurements Center at UCLA. The IMP was built from a Honeywell DDP 516 computer with 12K of memory.

      Makes 32k sound postively roomy!

    3. Re:a mere 32K of memory by n3k5 · · Score: 5, Funny
      In a few more years ... Just imagine a cluster .... in a three ring binder.
      Exactly, you'll be able to double the memory capacity by punching holes in the right places.
      --
      but what do i know, i'm just a model.
  4. If it crashes... by Tebriel · · Score: 5, Funny

    If I get Windows running on this thing (with 32k!) and I get a BSOD, do I just throw it away and get a new one instead of a reboot? Or even better, could I mail it to MS and ask for a new one?

    --
    The Blaster Master Fighting for Truth, Justice, and Evil Pie since 1979
    1. Re:If it crashes... by LostCluster · · Score: 5, Funny

      Microsoft is saving time... their paper computers will be made out of blue construction paper.

    2. Re:If it crashes... by Mipsalawishus · · Score: 2, Funny

      Rather than send an error report to Microsoft via the internet, you have to mail these in.

  5. Nothing new... by CrashPoint · · Score: 5, Funny

    A computer you use for a few days and then throw away? Hell, Dell's like twenty years ahead in that market.

  6. Finally... by Anonymous Coward · · Score: 5, Funny

    ..a computer I can actually wipe my ass with when I get pissed at it.

    1. Re:Finally... by cujo_1111 · · Score: 5, Funny

      Cleaning the screen will be a real bitch then...

      --
      If I point out that you are incorrect, making me a foe does not make you any more correct.
  7. $$$ for recycling by Supp0rtLinux · · Score: 5, Insightful

    So what's the payout for collecting pounds of these and returning them to my local recycling center?

    The difference between disposable and classic is age. My three year old PC is disposable. My 15 year old PC is a classic and goes for $9,000 on Ebay.

    The only thing necessary for Micro$oft to triumph is for a few good programmers to do nothing". North County Computers

    1. Re:$$$ for recycling by Anonymous+User+2000 · · Score: 4, Insightful

      The difference between disposable and classic is age. My three year old PC is disposable. My 15 year old PC is a classic and goes for $9,000 on Ebay.

      The difference between disposable and classic isn't just age, but period. Your 15 year old computer is worth someting because it was one of the first of it's kind. If you try to sell the computer you own today 15 years from now it wont be worth crap.

    2. Re:$$$ for recycling by freshmkr · · Score: 2, Interesting

      My 15 year old PC is a classic and goes for $9,000 on Ebay.

      In 1989, a top-of-the-line PC was a 386 or something. How in the world does a 386 command $9K on eBay? I guess you're exaggerating. But by way of comparison...

      A glance at my posting history reveals a more than passing interest in the Apple Lisa. The Lisa 1, an especially rare collectible computer, goes for around $10K whenever it shows up.

      --Tom

    3. Re:$$$ for recycling by Supp0rtLinux · · Score: 3, Interesting

      Actually, I wasn't exagerrating for once. Rather, I didn't quote enough time. I was referring to my Radi Shack (Tandy) TRS-80 complete with every accessory ever made, all games and software, and a tape drive for disk storage. Many of the components were never used, others I have more than 1 of. Total Ebay value based on others' listings is $8000 to $10,000.

      The only thing necessary for Micro$oft to triumph is for a few good programmers to do nothing". North County Computers

    4. Re:$$$ for recycling by BTWR · · Score: 2, Insightful

      a 1980's 286 or 386 is pure junk and will get you scraps on ebay.

      But a 1984 Mac 128K, 512K, 512KE will fetch you a bundle...

  8. Re: Disposable Computer by Anonymous Coward · · Score: 5, Funny

    Imagine....a Beowulf cluster of these!
    *sigh*

  9. Article Text by Anonymous Coward · · Score: 5, Informative
    It Had To Happen: The Disposable Computer
    March 4, 2004 (11:40 a.m. EST)
    By W. David Gardner, TechWeb News

    A disposable paperboard computer has been developed and is already in use in Sweden. Developed by Cypak AB, the paperboard computer can collect, process, and exchange several pages of encrypted data, the company says.

    "Initially, it will be used in industrial-specific applications as an enhanced and secure RFID device," said Cypak marketing director Strina Ehrensvard in an email. "Today, in pharmaceutical and courier packaging as a data-collection device; tomorrow maybe for interactive books, lotteries, passports, and voting cards."

    With just 32 Kbytes of memory, the paperboard computer's functionality is somewhat limited at present, but the firm believes its future will be broad. Cypak has entered into an agreement in the U.S. with MeadWestvaco Healthcare Packaging, which has marketing rights to the product and technology in the Americas.

    Ehrensvard said the device is currently in use in a trial sponsored by a Swedish university involving compliance monitoring of pharmaceutical packaging. The trial tracks when a medicine tablet has been taken out of a package; it is then placed on a Cypak scanner connected to a PC on which the information can be viewed and stored. Ehrensvard said the paperboard computer is being considered in another healthcare application, as well: doctors would use it to help authenticate the administration of pharmaceuticals.

    The Cypak product utilizes RFID technology that is based on printable sensors and electronic modules. The components are integrated on a variety of products, ranging from packaging and plastic cards to adhesives. In healthcare applications, Cypak says the paperboard computer time-stamps medicine dosages, which can be integrated with a patient's electronic diary. It can deliver sound reminders, too.

    Cypak has also developed a companion device--a smart card with an integrated numerical keypad. The firm expects this to be used initially in applications demanding high security. By entering a unique PIN on a card, a user can connect to the Internet and exchange data. Cypak says the card's encryption can't be copied or broken, enabling it to deliver "military-class security."

    "The paperboard computer concept and the PIN-on-Card are the same core technology--components integrated in different products," Ehrensvard said. "They exchange information to a PC with the same reader."

    Cypak offers the components on an OEM basis for about $1 each. The firm added that OEM components for its readers are available for approximately the same price in large volumes.

    The firm has developed a tamper-proof package technology with the Swedish Postal Service. Called SecurePak, the packaging technology stores sender and receiver relevant data and alerts receivers of any possible package tampering before the package is opened.

    Cypak will demo the products at the CeBIT 2004 exposition, in Hannover, Germany, later this month.

  10. Worlds Largest Cluster by Supp0rtLinux · · Score: 3, Interesting

    Well, with this configuration the power receptacles would take up more room than the cluster nodes. So imagine 1,000,000 of these in a box the size of a filing cabinet? And along these lines, can you unplug it and store it with your other files?

    The only thing necessary for Micro$oft to triumph is for a few good programmers to do nothing". North County Computers

    1. Re:Worlds Largest Cluster by mod_critical · · Score: 2, Funny

      Well, actually...

      5 Volt DC Power Supply, Jameco Part Number 112070
      1.9" x 2.2" x 1.95"

      Full height file cabinet, Office Mac Item Number 01200578
      52" x 25" x 15"

      So you could fit about 2392 of them in that file cabinet... SORRY I'M BORED!!

  11. On the next The Screen Savers... by LostCluster · · Score: 3, Funny

    Their mod specialist Yoshi DeHerrera will show off a cardboard case PC. (Web story is already posted here.)

    This was actually a delayed segment from last week. Yoshi cut his hand working on setting up his demo on how he did it last time he tried to do this segment. He needed to leave the studio to get stitches and missed most of the show as a result.

  12. Beowoof? Bah! by tloh · · Score: 4, Funny

    Forget about clustering, I want to see someone overclock one of these without the thing smoking and going up in flames!

    --
    Stay sentient. Don't drink bad milk.
  13. Re: Disposable Computers by Anonymous Coward · · Score: 3, Funny

    In Soviet Russia...
    the computer disposes of YOU!
    *ducks*

  14. Excellent! by nmoog · · Score: 5, Funny

    Now I can use my disposable cell phone to dial up and post my photos from my disposable digital camera and ask disney why I cant find anymore disposable dvds.

    Oops. Better get back to work. Else no disposable income.

    1. Re:Excellent! by 0racle · · Score: 2, Funny

      Seems that your throwing your life away there.

      --
      "I use a Mac because I'm just better than you are."
  15. REAL Notebook computers. by Chr1s-Cr0ss · · Score: 4, Funny

    Well, it seems we will finally be able to refer to something as truly a "Notebook computer"

    --

    68.3% of all statistics are made up on the spot.
  16. The advantages of paper-computing by Anonymous Coward · · Score: 3, Funny

    Look at pr0n then shred the evidence...

    1. Re:The advantages of paper-computing by glenalec · · Score: 2, Funny

      And both 'sticky keyboard' and running out of kleenex problems are solved too!

      --
      The man with no surname and a silly hat

      On the universe: It's bunk.
  17. I need this by Saint+Stephen · · Score: 4, Insightful

    Somebody help me: I keep my todo/dates, todo/tasks, books/want, books/have, tidbits in a plain Unix text file and I maintain it with a text editor and print it using a2ps -2. My life fits in two columns landscape mode.

    Whenever I need it, I print it, at a cost of 17 cents on my inkjet. When I need to update it, I simply use a pen and "sync" at home later.

    I can fold it, put it in my pocket, access the data randomly instantly, and easily add graphics or test with a 0% error rate. However it gets expensive at 17 cents per sync.

    All I need is a little bit of memory (32k) and a read-only display screen, super-tiny, and cheap as hell. If America wasn't ass-backwards, I'd just SMS the stuff to my cell phone.

    As an employee at Microsoft I had TWO of the top of the line PocketPCs : I played quake on them, wrote some C programs, and put them away as toys. I need to do WORK, as a technical person, not a salesman. All I need is digital paper.

    What can I use?

    1. Re:I need this by Brianwa · · Score: 3, Interesting

      If you're not looking for something new or fancy, you may like a Tandy 100 or 102. They are ancient laptops, however, they do exactly what you want. They get great battery life on four AAs, however, it will not fit into your pocket. Take a look at Club 100 and see if it is what you want.
      Then again, you could get a cheap Palm and a keyboard.

    2. Re:I need this by zero_offset · · Score: 2, Informative

      If America wasn't ass-backwards, I'd just SMS the stuff to my cell phone.

      Give up your ass-backwards ways. I'm in Florida and I send text to my cell phone all day long. Some of my servers send activity reports every few hours. I also threw together a simple web page to help friends and family members send messages to my phone. Easy.

      --

      Slashdot quality declines as the number of hot grits posts decreases. - Provolt's Law, Apr-09-2005

  18. 32k is more than I dreamed of a few (25) years ago by rcpitt · · Score: 5, Interesting
    32K is a lot of RAM. It's enough to do a fairly useful voice recognition system, or word processor, or even spreadsheet.

    I know - because that's how much RAM my Radio Shack Model 1 had after I'd purchased the add-on module and populated it with the extra 16K of RAM (the main module could only handle 16K) and before I pushed the limits by moving to 48K.

    Note that the module plus 32K extra RAM (to bring the system to 48K) was about $2,000 Canadian at the time.

    This is not insignificant - at least not if you've ever used something other than Windoze ;)

    --
    Been there, done that, paid for the T-shirt
    and didn't get it
  19. New excuse for not doing homework by Anonymous Coward · · Score: 5, Funny

    "My dog ate my computer sir"

  20. OH MAN by sudotcsh · · Score: 4, Funny

    Cypak says the card's encryption can't be copied or broken...

    AH HA HA HA HA HA HA HA HA! ...

    AH HA HA HA HA HA HA HA HA HA!

    *whew*! I needed that.

  21. Is it allowed to call itself a "computer"? by LostCluster · · Score: 4, Interesting

    There are devices marketed as calculators that have more than 32k of memory these days...

    High-end wristwatches are starting to behave like low-powered computers with a small black and white pixel-based display, the beeping speaker, and ability to accept wireless input. We're not calling those computers, just "smart watches".

    So, this really is more about "smart paper"... paper with a few chips in it and therefore the ability to beep. Only a small upgrade over the musical greeting card. :)

    1. Re:Is it allowed to call itself a "computer"? by mlk · · Score: 3, Funny

      Its more powerfull than some of the old 8bits.

      Cool, Rogue on paper, ohh wait thats AD&D.

      --
      Wow, I should not post when knackered.
    2. Re:Is it allowed to call itself a "computer"? by rebelcool · · Score: 4, Interesting

      back in the 1940s, a "computer" was a young woman who sat in front of an adding machine punching in numbers. It was actually quite awhile before the electronic machines came to be known as 'computers'. I'm sure many early designers would laugh at the thought of their complicated multi-ton kilowatt consuming monstrosities being named after the job a 19 year old girl did.

      What it is called depends on its use. You don't call a PDA a computer do you? Even though it clearly is one.

      If this device is in fact used for computing, then it is in fact, a computer.

      --

      -

    3. Re:Is it allowed to call itself a "computer"? by rebelcool · · Score: 3, Insightful

      Many "calculators" today run general purpose processors and can be used for general purpose computing. I believe my old 1991 TI-82 has a Z80 in it.

      It seems to me this new device has some ideas in mind for it should be used for, but is fairly general purpose. At the moment, its a computer. Though the systems it becomes embedded in might be called something else.

      Just like my calculator's processor could be used in a 'computer'. But its embedded use is for arithmetic and algebra, therefore its a 'calculator'

      --

      -

  22. Spys applications by tdwebste · · Score: 2, Interesting

    This could be real handy when you need to distroy the encryption device without a trace that it ever existed.

    A spy gets caught with what looks like a fussy picture of her family stored in the spy's pda. And with no trace of a encryption device, I guess it must be just a bad picture.

  23. Oh god by jeffkjo1 · · Score: 2, Insightful

    Sometime within the next 20 years, if we continue this trend, we're going to have more crap IN landfills than we will actually in service.

  24. Chip specs by nmoog · · Score: 5, Informative
    Theres some intersting specs about its S2C chip on the Cypak website:
    8-bit microprocessor
    32kBytes non-volatile FLASH memory with >10 years of data retention.
    2kBytes Static RAM
    It also mentions using 128bit AES encryption, with RSA under development.
    1. Re:Chip specs by Kris_J · · Score: 4, Informative
      That's quite similar to the Atari 7800, if anyone wants any idea of how complicated the software can be for it.

      I wonder how many you can talk to simultaneously if they're all in a pile. What's the RAM footprint for the D.Net RSA core?

  25. My wish come true by Tablizer · · Score: 2, Funny

    I always wanted some Windows toilet paper

  26. disposable cellphone by ende · · Score: 3, Interesting

    I'm still waiting on the disposable cell-phone .....

  27. Beowulf book by NoDoZ · · Score: 5, Funny

    wouldn't a beowulf cluster of these.. be a book?

    1. Re:Beowulf book by rholliday · · Score: 4, Funny

      So then, would the book be "Beowulf?"

      I can see it now. The first virus will be called "Grendal ..."

      --
      Xbox reviews.. We think they're funny.
  28. Groan by eddy · · Score: 3, Insightful

    Cypak says the card's encryption can't be copied or broken, enabling it to deliver "military-class security."

    sigh.

    --
    Belief is the currency of delusion.
    1. Re:Groan by AndroidCat · · Score: 4, Funny

      The main part of the "military-class security", is that you can eat the computer if captured.

      --
      One line blog. I hear that they're called Twitters now.
  29. Good for distributed computing, I bet. by infernow · · Score: 5, Funny
    (I apologize in advance for this one)

    They're probably great at running Folding@Home.

    --

    that that is is that that is not is not

    1. Re:Good for distributed computing, I bet. by Kevan_moran · · Score: 2, Interesting
      The first machine, an Elliot 900, I was ever paid to work on had 8K. Not too bad tho as the bottom 4K retained it's contents when you switch off the m/c for the night

      Now that machine used paper tape and the next machine I used punched card - so what are we going to do with paper tape and punched cards that have embedded processors. Feed them to themselves?

      One machine at Uni was an 8K PDP 7(?), unfortunately some the graphite rings were broken so not all 8K actually worked. Code around broken bits was a bit tedious

  30. The Answer to All Questions by handy_vandal · · Score: 3, Insightful

    Why climb everest?
    I think you'll find the answer to both questions is "why not?"


    Not so. The true answer to all questions is: "to improve my chances of getting laid".

    -kgj

    --
    -kgj
    1. Re:The Answer to All Questions by Anonymous Coward · · Score: 3, Funny

      The true answer to all questions is: "to improve my chances of getting laid".

      Except, perhaps for the question "Why am I going to prison?"

  31. Offspring by krusadr · · Score: 2, Funny

    Does this mean that a computer and a printer can reproduce?

    --
    while sco {
    wget -O /dev/null http://www.sco.com?sco=litigious%20bastards
    }
  32. It was Steve Jobs by DynaSoar · · Score: 5, Interesting

    "Who would ever want more than 16K?" He said it to Woz when Woz was designing the Apple II. Woz wanted to put socketing for 16, 32 or 48K on the motherboard, as opposed to the 16K limit of the Apple I. Jobs was also against the color capabilities. Woz built them in anyway.

    When Jobs hoisted the pirate flag and built the Mac, he specifically left out expandability and color on purpose. It wasn't because of technical considerations, as the Apple IIgs was in design at the same time as the Mac. It was computer design by temper tantrum.

    --
    "I may be synthetic, but I'm not stupid." -- Bishop 341-B
    1. Re:It was Steve Jobs by seanadams.com · · Score: 3, Informative

      It was computer design by temper tantrum.

      That may well be, but it's still perhaps one of the smartest moves apple ever made. While the rest of the computing world focused on standardized components, interchangeable io cards and memory, replaceable drives etc... Apple made an all-in-one system whose only interesting upgrade path was a new machine from Apple.

      And so, those who valued a complete, tested, supported system went with Apple, and that was the basis for (one of?) the most successful hardware companies ever.

      You can't argue with success, even if Jobs is a bit of a whack.

    2. Re:It was Steve Jobs by alistair · · Score: 3, Interesting

      "yep you can't argue with less than 3% of the market."

      Hmm, no debt at all (see recent Slashdot story), over $4 Billion in the bank, successive profitable quarters, doesn't seem like failure to me.

      There are hardware manufacturers who make have more market share but very few who make this kind of return on investment. BMW have around 3% market share but don't seem unduely worried about it, in fact it seem to please most BMW owners I know. Oh, and Apple have around 32% of the portable music player market.

    3. Re:It was Steve Jobs by rixstep · · Score: 2, Insightful

      Uh, I thought this thread was about the Swedish Cypak disposable computer? How did we get talking about Jobs's temper without getting modded as off-topic?

      And as for Jobs making a brilliant move here: I disagree anyway. Woz didn't like what Jobs did, and quit because of it, and I would hardly call a 2% market share 'successful'.

    4. Re:It was Steve Jobs by jsebrech · · Score: 2, Informative

      You might want to read up on your history yourself. Jobs took over the mac project when he was kicked out of the lisa project, and Raskin quit over what Jobs did to it.

      The problem with Jobs is that he always wanted perfection, and perfection is too expensive. The lisa, the mac, next, all suffered from overdesign and the resulting price tag.

    5. Re:It was Steve Jobs by rixstep · · Score: 2, Insightful

      Incredible. I accuse the moderators of slacking, when the entire discussion gets off-topic, and they call this comment off-topic.

      I guess brown shirts are required clothing for mods at /.?

  33. 'Scratch Space' by scorp1us · · Score: 2, Funny

    When you run out of memory, just add a 'scratch pad' and malloc some more 'pages'.

    'Scratch space' wasn't meant to be taken littlerally!

    --
    Slashdot's rate-of-post filter: Preventing you from posting too many great ideas at once.
  34. Windows? by JohnGrahamCumming · · Score: 4, Funny

    Perhaps they can get it to run Windows, sell them on rolls and I'll be able to wipe my butt with Microsoft on a daily basis.

    John.

  35. Re:Those swedes, whats the deal? by dandelion_wine · · Score: 2, Funny

    I do dislike them, based on "Fight Club"

    Congratulations. You are not your khakis.

    You're a freakin fanboy instead.

  36. Prophetic by krusadr · · Score: 2, Funny

    Quote from flashing Adobe ad on /. front page...

    "And I need to design paper forms that are identical to the paper ones"

    --
    while sco {
    wget -O /dev/null http://www.sco.com?sco=litigious%20bastards
    }
  37. Is this really a "computer" or data storage? by 1iar_parad0x · · Score: 5, Interesting

    ...the paperboard computer can collect, process, and exchange several pages of encrypted data, the company says.

    What do they mean by process? It sounds more like data storage. This is quite different than a computer. What kind of calculations (or computations) can it do?

    All of the examples could easily be implemented on this paper computer with nothing more than a clever encoding scheme and be decoded by a real electronic computer (PDA) with a scanner.

    In short this sound like a new type of ticker tape. The PDA and scanner would be the "Turing machine" (or processor).

    --
    What do you mean my sig is repetitive? What do you mean my sig is repetitive? What do you mean....
  38. Obligatory Robert Lucky Quote... by plainvanilla · · Score: 2, Interesting

    "In the future, you're going to get computers as prizes in breakfast cereals.
    You'll throw them away because your house will be littered with them."

    -Robert Lucky; c. 1984

    This might be a good time for me to start learning parallel architectures.

  39. Origami Mods anyone? by agendi · · Score: 2, Funny

    At least it will be easy to case mod!

    --
    I just can't be bothered.
  40. Imagine... by Anonymous Coward · · Score: 2, Funny

    ...a ream of these paper computers.

  41. Only man by luckyguesser · · Score: 2, Interesting

    Only mankind would be self-centered enough to think of creating something so valuable with the intent to throw it away. I've had my qualms about other things we throw away, but this really takes the cake.

    --


    The power of Christ compiles you.
    A Random Blog
  42. Re:32k is more than I dreamed of a few (25) years by KrispyKringle · · Score: 2, Interesting
    It really depends on what you do. Of course for Internet, word processing, etc, el Cheapo is fine. Even for Photoshop, Flash, and most coding, it's fine.

    For CAD you might get by. I've got no experience with CAD software. But for 3d modelling and rendering, the state of the art truly still isn't fast enough. A fast graphics card is necessary for showing the textured model on the fly. The better the card, the better this model, the easier it is to work on and see how it'll look compared to the real thing. The better the processor, the faster the render, the less time you have to wait to see the final product (and for a high-quality complex render, that wait is a pretty long time).

    It's good that people are catching on that they don't need the fastest machine anymore for pretty much anything. But there are still a few specialized tasks for which you do.

  43. Finally by IronBlade · · Score: 2, Insightful
    Finally we have some real security!

    Cypak says the card's encryption can't be copied or broken, enabling it to deliver "military-class security."


    Amazing!!!

    Let's get this copy- and crack-proof encryption on everything!!

    Hmm... perhaps Cypak are a little too confident about their encryption..??

    --
    Important info:
    http://www.lifeaftertheoilcrash.net
    http://dieoff.org/synopsis.htm
    http://www.peakoil.net
  44. New form of data loss by Anonymous Coward · · Score: 2, Funny

    Boss:
    Jim, where have you been and where is the data?
    Jim:
    I uh, we just had a core dump, all the data has been flushed.

  45. Re: Disposable Computer by multiplexo · · Score: 3, Funny

    I wonder if /. can set things up so that any story related to a piece of hardware would get an automatic "imagine a beowulf cluster blah, blah blah" post from anonymous coward. Seems as if it would save a lot of valuable time for /.'ers.

    --
    cheap labor conservatives - they want to keep you hungry enough to be thankful for minimum wage.
  46. There must be something seriously wrong by Pan+T.+Hose · · Score: 5, Interesting

    with Slashdot when 95% of Score:5 comments to such an interesting article are "Funny." That having been said, I believe that our community as a whole (id est Slashdot at large) seems to completely lack any professionalism regarding cryptography by writing on the front page that "the paperboard computer can collect, process, and exchange several pages of encrypted data, the company says." which is supposedly 'Pretty impressive, given that they say it has a mere 32K of memory.' Surprise: To "collect, process, and exchange several pages of encrypted data" you don't need million times more memory than said data! Film at 11! What will be "impressive" next? The fact that strong crypto can use only few cycles per byte on general purpose processor? Wow! How impressive! Really? I don't need 4GHz Pentium 5 with 4GB of RAM to "collect, process, and exchange several pages of encrypted data"?

    Give me a break! This article is great news and really worth reading, but for much more important reasons than those that kids today think that you need ten hundred megabytes of ram to encrypt and store ten kilobytes of plain text. I, for one, feel insulted by such article summaries, because everyone who knows that I am a Slashdot user might think that I must be completely incompetent looking at the front page.

    I might only suggest for everyone who wishes to post stories about cryptography to read at least Applied Cryptography by Bruce Schneier first. This is the absolute minimum if you don't want to make an idiot out of yourself. Why cannot we talk about the serious implications of using RFID technology to build this machine instead of posting completely unintelligent jokes in the lines of "Imagine a beowulf cluster of those! It might have 640kB of RAM! Who needs more?" This is stupid at best and insulting at worst. I urge you to start posting insightful, informative or at least interesting posts before it is too late and this discussion is already archived.

    What I am personally most concerned about is how disposable are the active and passive (semi-)conductor elements which are printed on this boards. Does anyone have any experience in disposing them? It is not very clear in the article.

    --
    Sincerely,
    Pan Tarhei Hosé, PhD.
    "Homo sum et cogito ergo odi profanum vulgus et libido."
    1. Re:There must be something seriously wrong by Anonymous Coward · · Score: 3, Funny

      (Lady and) Gentlemen,

      I present to you:

      Mister Grumpyface....

    2. Re:There must be something seriously wrong by maztuhblastah · · Score: 2, Funny

      Ironically, the entire rant aobut unproffessional conduct come from a guy with the name "Pan T. Hose." So original...


      Mod me up to +5 Funny if you want to prove him wrong...

  47. Disposal Machines...New Idea? by yintercept · · Score: 2, Insightful

    Hmmm, I seem to have purchased several computers in my days that turned out to be disposable. I don't think this is a new idea. Of course, each time I bought a new machine (8088, 286, 386 ...) I thought it was the bees knees that would never be replaced. The only new thing would be pricing them at a level that didn't make buying a new machine extremely painful. Also admitting a limited lifecycle upfront is a new idea.

    Of course, on the battle front, there is a large number of computers that only get to live for a few moments before going out in a blaze of glory.

  48. I've got three words for you by highwindarea · · Score: 2, Insightful
    • One
    • Time
    • Pad
    • /
    --
    I think this internet thing sounds like a good idea
    1. Re:I've got three words for you by lxs · · Score: 2, Insightful

      Very funny. With 32k on board, your one time pad can only transmit/receive say, 30k of information (well you'd need one or two K of code to actually do the work) Not to mention that you'd need a different pad for every one of these things, and the machine on the other end needs copies of all the pads for the machines it communicates with.

      30k is not much. It's a handful of /. posts. So using OTP's would e highly impractical.

  49. Re:Those swedes, whats the deal? by twaltari · · Score: 2, Informative

    Ikea is a Swedish company but I guess most of their stuff was manufactured in China instead of Sweden. Ikea has pretty much the same business model as H&M:
    1. Design good looking stuff
    2. Market it (e.g. printed catalog with lots of great photos)
    3. Find a Chinese subcontractor to manufacture it as cheap as possible.
    4. Profit!

    So perhaps that explains the quality issues. But on the other hand, they never promised you high quality and it was propably quite affordable.

  50. Flushable by wrmrxxx · · Score: 5, Funny

    Very handy for when the SCO cops show up. Quick, everybody, flush the computers down the toilet!

  51. Youngsters have it too easy by Anonymous Coward · · Score: 2, Informative

    The first computer I used had an architectural limit of 8192 39bit words (none of this power of two rubbish), and the fastest instruction took 576ms (2.4kips). Somebody heroically modified it to act as a timesharing system for 3 terminals.

    The first computer I built had a massive 128 bytes; never did manage to fill it up with anything useful.

  52. I looked over cypaks site by Anonymous Coward · · Score: 2, Informative

    No new technology seems to be involved, some comments would lead one to believe that there was some inkjet printed circuitry involved and that it is a paper computer. Not so, I could see no evidence of this.

    The pin on card product looks like it has some applications.
    To order the development kit which includes a usb reader and two cards was 500 pounds(the money sort) the license to get this kit did not allow any reverse engineering or disassembly so it would not seem well suited to determining just how secure it is, they also reserved the right to take the equipment back. Postage and handling was another 100 pounds.

    I use an RSA secureID it has a keypad and numeric lcd, this does everything except the contactless is achieved by reading the correct number off the lcd.

    One of the goals of having a keypad on the card is to prevent the pin going through untrusted chanels and for achieving this I say bravo! every access card should have this feature, however combine to a wirless power and comms means you have to put it down on a reader surface.

    Ignoring cameras I still wonder how easy it would be to steal the pin by sensing the pressure through the card as it is used. Of course the card would still need to be stolen. Mind you if the reader is untrusted then how can you even be sure what your authorising?

    The package dispensing is a fancy birthday card as someone else mentioned, the pin on card is only good to tell a remote and trusted web site that yes it really is you and I'd still trust my RSA SecureID over this.

    What is truely needed is a card or cheap pda (cost similar to card) that has a keypad and a display big enough to display an incoming request.
    This can then be aurthorised (signed) and the response sent. Contactless is important for security but enough distance so that emissions and key pressure do not factor in. IR beaming is probably the best, keeping it low power and rechargable should not be insurmountable problems.

    Once something like that is built then untraceable digital cash and communications would be instantly realizable. Once you have secure comms and finance then all other freedoms are possible.

    If you wish to help build such a device or would be a potential user of it then by all means contact me.

    -----BEGIN PGP PUBLIC KEY BLOCK-----
    Version: PGPfreeware 6.5.8 for non-commercial use

    mQCNA0BH2CQAAAEEAOPWa1ggC5SxV+CSOJUF0u47ZjRr7RfY XN DuXjmUV8L4csZf
    N5ks+ALXtga4GyWuEyUWFiGvik/jCdQTQu f23F4H6t48GNwxex SEvRGke8favAC0
    BMv+crgfmYF0//yAZLZnaemyTWttBvqfuV JJP5dGsm3o86FXxB kGobiHr/3FAAUR
    tCNZb3VzZWYgQWhtZWQgPHlvc2VmYWhtZW RAeWFob28uY29tPo kAlQMFEEBH2CQZ
    BqG4h6/9xQEBnJcD/1dFH+HIQouQR9VY+e MxN16fSQGNSFZ/hA eedRDP9rHMqpGX
    7siNbJ66Mecc1XQCtNnZpKiKUsGZ4Psosh Bvu4wgIk2OQzubGM LVIjHcV0kRQiqj
    xg3ZIIu04RMaROpvSYc88dygnjjxMciZtL xod4kZHCDxFizUkh bs6mudzzmN
    =iTJe
    -----END PGP PUBLIC KEY BLOCK-----

    1. Re:I looked over cypaks site by LarsWestergren · · Score: 2, Insightful

      No new technology seems to be involved, some comments would lead one to believe that there was some inkjet printed circuitry involved and that it is a paper computer. Not so, I could see no evidence of this.


      You couldn't have looked very long:

      http://www.cypak.com/index.php?a=tech&b=printable& page=tech_printable

      "Printable circuits
      Using printable, conductive ink based on non-toxic carbon powder, electronic circuits and antennas can be printed directly onto low cost substrates, such as paper, cardboard or plastic.

      By forming electronic circuit lines and monitoring if they are opened or closed, printable circuits can be used to detect events, such as a broken seal, an open lid or damaged packaging. This includes the formation of pressure sensitive areas which can be used as key switches in an electronic questionnaire. The circuits attach to Cypak Electronic Module (CEM) where events are recorded and time stamped.

      In the same production step as circuits our robust and extremely low cost antenna can be printed in the form of patches the size of a credit card.

      Our know-how in printing circuits on folded paper enables multiple form factors, such as boxes, wallets, books etc. "

      The technology is not new, they have developed it since 1996 and won a major prize in 1999 for it. What *is* new is that now apprearently it is mature and cheap enough to start using for real.

      They have started to get some license agreements from big companies.

      --

      Being bitter is drinking poison and hoping someone else will die

  53. Re:Which meaning of "props"? by shyster · · Score: 3, Funny

    Proper respect...or propers...or prop. Don't look at me, I didn't make it up. Just reporting it.

  54. 32k|encryption by jago25_98 · · Score: 3, Interesting

    bah "32k should be enough for anybody!"

    "Cypak says the card's encryption can't be copied or broken, enabling it to deliver "military-class security.""
    ^ well fate is tempted. I'd say slashdotters will take about 3 months to crack it after being distributed commonly... :)

  55. Jobs was right by dmoen · · Score: 4, Insightful
    When Jobs hoisted the pirate flag and built the Mac, he specifically left out expandability and color on purpose. It wasn't because of technical considerations,

    Yes, it certainly was. The Mac was not Apple's first computer with a mouse and a graphical interface. That was the Lisa, which nobody bought, because it was too expensive. A colour Mac would have required a huge frame buffer in order to provide adequate resolution. The memory costs of this would have pushed the price too high. Also, the 7MHz CPU was not fast enough to draw text and windows on a colour graphics display (again, unless the resolution was too small to be useful).

    And keep in mind that the Lisa, despite its immense cost, was also black and white. So was the Xerox Star (another failed GUI computer that cost too much).

    The Mac was not the first personal computer with a GUI. It was the first GUI computer that was cheap enough for ordinary people to buy. The hardware limitations you mention were necessary to keep the cost down.

    Doug Moen

    --
    I have written a truly remarkable program which this sig is too small to contain.
  56. Sounds like a Mission Impossible scene... by l1gunman · · Score: 2, Funny

    Good morning Mr. Phelps. The documents you are viewing are... Your mission, should you decide to accept it... This computer will be recyclable in 60 seconds. Please deposit it in the nearest cardboard recycling bin.

  57. Paperless society by dargaud · · Score: 2, Funny

    So now we can become a truly paperless society, once they come out with version 1.0 of WipeMe for this system...

    --
    Non-Linux Penguins ?
  58. They're called punchcards by Da_Big_G · · Score: 2, Funny

    Yup, looks like we're going back to punchcards. Now THAT's news!

  59. Zenith tried this sort of thing once.... Bad idea by Warlock7 · · Score: 2, Informative

    Zenith tried using paper/cardboard circuit boards in their televisions once and it was a complete failure. It seems that many of the televisions arrived at stores and simply would not work out of the box. Turns out that the vibrations created during shipping was enough to break the circuit boards and forced them to recall the sets and replace the boards with ones that weren't as flimsy.

  60. Old news... by MrScience · · Score: 2, Informative

    I wonder if this guy will be remembered? He tried to do it in the US ten years ago.

    --

    You quitting proves that the karma kap worked. The most annoying of the whores shut up. --CmdrTaco

  61. What happend to printable PC's? by nurb432 · · Score: 3, Interesting

    A year or so ago, we read about annonucement of a printable comptuer..

    Was going to be uses by the US census.. And was never heard from again...

    What ever happened to them?

    --
    ---- Booth was a patriot ----
  62. Just a smart card by owlstead · · Score: 3, Interesting

    Come on guys. This is just a smart card chip with some sensors put on it. It has a non-ISO 14443 type A or type B interface, which means you can only use the readers provided by Cypak.

    On top of that it only uses AES encryption. Great. Most smartcard processors can do any symetric cryptography and DSA and RSA as well. 156 / 1024 bit 3DES/RSA is common nowadays and higher asymetric encryption is on the horizon, if not there. 16 bit processors are quite common as well, with 32 bit processors just around the corner. You can host web servers on smart cards for some time now.

    Obviously there are some interesting things to this story. What kind of wireless protocol will they use? How do they connect the sensors? What kind of sensors are available? What kind of operating system can be used? How easy is it to integrate it into some piece of clothing (eg)?

    And 1 dollar per CPU is very good value I suppose.

  63. Just what we need...more techotrash. by LordPadriac · · Score: 2, Insightful

    Aren't there enough computers already stting in trash dumps (or dumped straight into the sea thank you very much China) poisoning our environment without adding computers destined to get there even quicker?

    --
    "But I don't want to go among mad people" Alice remarked. "Oh you can't help that" said the cat: "We're all mad here."