Slashdot Mirror


Transmeta Needs Microsoft

An anonymous reader writes "Faced with dwindling sales, it looks like Transmeta needs Microsoft's new tablet PC to survive." Or, if not Microsoft, some company who can spark the long-overdue tablet-computing revolution.

173 of 443 comments (clear)

  1. Face It by nizcolas · · Score: 5, Funny

    The best tablets, came from Sumeria.

    --
    If you get an error, type "OVERRIDE" or "SECURITY OVERRIDE" and then try the optimize command again.
    1. Re:Face It by Anonymous Coward · · Score: 5, Funny
      The best tablets, came from Sumeria.


      Man, I am so sick of you pro-Sumerian, anti-Hittite Slashdot bigots.

    2. Re:Face It by whereiswaldo · · Score: 2

      I think if my life depended on my "partner" Microsoft

      Ever see Fatal Attraction ?

  2. Tablet PC's are a way cool tech by djsable · · Score: 5, Insightful

    And if Transmeta makes the chips, then that is double cool.

    I personally don't care WHO makes the damn things, as long as someone makes them, and gets them out there for reasonable prices!

    1. Re:Tablet PC's are a way cool tech by soloport · · Score: 4, Funny

      Maybe MS will sell each one at a loss. Then someone could port Linux to the hardware for, say, US$100,000. Next, we could buy thousands of them and make hundreds Beowulf clusters!

      Microsoft RULES!

    2. Re:Tablet PC's are a way cool tech by Lemmy+Caution · · Score: 2

      Is it always? How much competition would you like in the type of gauge for rail travel? Or fuel for cars? (What I mean by the latter is, if only one third of all gas stations was likely to carry the fuel that your car meant - I *do* want innovation in the design of energy sources for vehicles, but I want it to be standardized within a reasonable amount of time!)

    3. Re:Tablet PC's are a way cool tech by diesel_jackass · · Score: 2

      . . .
      Next, we could buy thousands of them and make hundreds Beowulf clusters!
      . . .
      "You will die like dogs." -- El Guapo


      Would you say you could buy. . . a plethora of Beowulf clusters?

    4. Re:Tablet PC's are a way cool tech by whereiswaldo · · Score: 3, Interesting

      Reasonable prices definitely being the "operative word"! I was looking at Transmeta systems a few months ago and the prices were way out of line. I would have been paying more than a competing Intel- or AMD-based system and getting much less performance. What the hell! Sure Transmeta's per unit costs are probably higher since they're a smaller shop, but I'm sorry, I don't buy based on feeling sorry for a company's problems. I have a budget, too.

    5. Re:Tablet PC's are a way cool tech by soloport · · Score: 2

      Would you say you could buy. . . a plethora of Beowulf clusters?

      Do you even kno' what a plethora is?

    6. Re:Tablet PC's are a way cool tech by Lemmy+Caution · · Score: 2
      I'm pretty sure that many steel companies make rails. The size of rail that is commonly used has nothing to do with competition in the marketplace from providers of those rails.

      It would if there was a patent on any given gauge. Where vendor choice means platform choice, you get the exact same network effects as you would with competing rail gauges. My point is that you don't want competition between standards, at least not for very long - the ongoing erosion of productivity isn't worth it.

  3. A niche chip by TiMac · · Score: 5, Insightful
    Transmeta took the risk in having a very specialized chip--that is...it's very low power but not as fast as others...maybe the risk just isn't going to pay off if there's no market for it.

    Supply and demand....but where's the demand?

    --

    1. Re:A niche chip by Reality+Master+101 · · Score: 5, Interesting

      Transmeta took the risk in having a very specialized chip--that is...it's very low power but not as fast as others

      Actually, they took a different risk. They never thought the performance would suck as much as it does. They thought they could take a very wide core and implement software emulation such that it would be faster than pure hardware solutions by making the software "smarter".

      They failed.

      Which is really not surprising. It's exactly the same delusion that makes people still think that "compilers are so smart nowadays that they can easily create better assembly code that humans" when that is and always has been patently untrue. People always underestimate the complexity of optimization.

      We will never have optimizers as good as humans until we solve the "great question" of human AI. They go hand in hand, but people just don't want to accept that.

      --
      Sometimes it's best to just let stupid people be stupid.
    2. Re:A niche chip by (startx) · · Score: 5, Insightful

      actually, gcc is getting pretty damn good at assembly, at least on the x86 anyway. I was at a confrence the other day where rastman was one of the speakers, and he was talking about his new canvas library called evas. He said he wrote the speed bits in assembly by hand, and then for fun (and benchmarks) wrote it in c and had gcc compile it to asm as well. It spat out line for line what he had spent hours writing.

    3. Re:A niche chip by mocm · · Score: 5, Interesting

      I don't think performance sucks as much as Intel may want you to believe. Take a look at this for some benchmarks.
      And you have to consider that all tablet with Pentium III will run at a lower speed when they are on battery.

      --
      ***Quis custodiet ipsos custodes***
    4. Re:A niche chip by WhaDaYaKnow · · Score: 3, Informative

      I've seen the exact same thing with the Microsoft Visual C++ compiler. Yeah, shoot me, I use it (to compile a non-M$ operating system). It's a pretty f*cking good compiler. (no offense but the assembler output surpassed the GCC compiler easily last time I checked, which is about a year ago)

      I only use the command-line compiler and from time to time I look at the assembler output. It's amazing. Proper object oriented C++ design is being translated in assembler that you could only equal by extensive use of macros and other 'tricks' that would make the assembler practically impossible to read/maintain.

      The whole trick is knowing how code is generated by the compiler. I remember from the good ole days that Torvalds would do the exact same thing: see what code is generated. This way, after a while, you know instinctively what's the best way to design and write code.

      I'm sure there are situations where a human could write better assembler than what's generated by a compiler, but if you are talking anything less trivial than an 'hello world' example, the perceived 'overhead' from a compiler would be required in assembler just as well in order to maintain readable/understandable code and design.

    5. Re:A niche chip by eMilkshake · · Score: 3, Insightful
      No doubt very true overall, but the question is whether it was a fair comparison. Someone who knows and cares enough to spend hours writing a routine in assembler and who *just* wrote it in assembler probably wrote his C code to compile optimally.

      Now, what would be fair is if someone took *my* code and compared gcc's output of it with what Rastman might produce in assember. That would be interesting. ;)

    6. Re:A niche chip by ndogg · · Score: 2

      That conference you mention, that didn't happen to be the Reflections|Projections conference, did it?

      --
      // file: mice.h
      #include "frickin_lasers.h"
    7. Re:A niche chip by Anonymous Coward · · Score: 3, Insightful
      A human can out-optimize a machine for a specific task (say, a handful of routines), but the CPUs are getting so complex that general optimization is better solved in the computer space. It's getting slower and harder for humans to optimize for modern chips (look at Itanium -- multiple banks of 128 general purpose registers? how many instruction pipelines?). Yeah, given lots of time, a human can probably solve a specific case far far more optimally, but do you really want to assign one very sharp engineer to optimize all those corners, taking days or weeks to work through a handful of cycles saved, when you can throw him at the compiler's output and get better general efficiency...

      The problem is that the scope of the complexity is reaching the point where there's so much to be juggled that the group of people who can succeed is becoming very small, and the wins are so minor except in specialized circumstances, that the time cost vs. speed payoff is just not there anymore.

      It's not that a human can't do better, it's that a human can't do better before the product/project has to ship (or, in some cases, remain relevant).

    8. Re:A niche chip by dvdeug · · Score: 3

      Now, what would be fair is if someone took *my* code and compared gcc's output of it with what Rastman might produce in assember. That would be interesting. ;)

      I think more fair would be your code in C and your code in assembly. That's usually what your choices are in real life.

    9. Re:A niche chip by dvdeug · · Score: 2

      It's exactly the same delusion that makes people still think that "compilers are so smart nowadays that they can easily create better assembly code that humans" when that is and always has been patently untrue.

      Compilers can produce better assmebly code than humans. The problem is, humans cheat. If the contest was to produce the best assembly code from the GCC source in an hour, without assistance, no human has a chance in hell of even making an entry. If the contest is to produce the fastest assembly code, with no limit, then while most current compilers might not win, there's no reason to believe that a competitor could not be written to brute force the problem. The problem is that humans set up the rules, so that computers have to produce a solution in a few minutes, and without looking at their opponent's solution, whereas a human can spend hours or days working at the problem, and see what a compiler would output. Furthermore, a human gets a chance to check his code, and maybe even change the problem, whereas a compiler has to solve the problem exactly as written and has to get it right the first time. Under those conditions, no wonder compilers win!

    10. Re:A niche chip by 0xdeadbeef · · Score: 4, Insightful

      Which is really not surprising. It's exactly the same delusion that makes people still think that "compilers are so smart nowadays that they can easily create better assembly code that humans" when that is and always has been patently untrue. People always underestimate the complexity of optimization.

      No, that is an entirely different delusion. That one is a straw man propogated by amateurs who have taken the effort to learn assembly programming feel "1337" for their arcane knowledge.

      For the vast majority of programming tasks, programming in assembly is stupid and wasteful, and the vast majority of programmers will not write better code than their compiler.

      Those who can follow something like Abrash's black book, or god forbid, are actually involved compiler research, would laugh at your statement, because they praise the gods that there is such a thing as automation and that it is possible to capture the intelligence of optimization algorithmically. There is a difference in choosing to engage in stategic optimization using assembly and the blind naysaying of deference to the compiler.

      In case you haven't noticed, people tend to underestimate the complexity of everything. Even if Transmeta has fallen short of expectations, they failed admirably and still pushed the state of the art. If people listened to the kind of criticism offered by armchair technologist slashbot trools, we'd still be writing assembly code on VAX machines.

    11. Re:A niche chip by ndogg · · Score: 2

      Yes, I was. Some friends of mine and I drove ~5 hours down to there from Oshkosh, WI. Some of us, including myself, tried participating in the Mechmania competition, but that turned out to be a big flop, although better than last years since they actually had something we could compile against this year. It wasn't so bad for us because we determined to not let that competition keep us from enjoying the speeches.

      --
      // file: mice.h
      #include "frickin_lasers.h"
    12. Re:A niche chip by Lord+Ender · · Score: 2
      delusion that makes people still think that "compilers are so smart nowadays that they can easily create better assembly code that humans" when that is and always has been patently untrue. People always underestimate the complexity of optimization.

      Mel, is that you? [The story of Mel]

      --
      A slashdotter who didn't build his own computer is like a Jedi who didn't build his own lightsaber.
    13. Re:A niche chip by 0x0d0a · · Score: 2

      no offense but the assembler[sic] output surpassed the GCC compiler easily last time I checked, which is about a year ago

      That clashes with what I've been seeing recently. Were you using full optimization with GCC? Some (IMHO rather obvious) optimizations are not done without -fexpensive-optimizations, for example.

      I use
      -O6 -march=pentium2 -ffast-math -fstrict-aliasing -fexpensive-optimizations
      This is gcc 3.2...

    14. Re:A niche chip by WhaDaYaKnow · · Score: 2

      \r\n wrote:

      "assembler[sic]"

      Sorry about that, when I started programming in assembler(sic, apparently) I thought that was the correct name. Maybe it's a translation thing or so, I'm from the Netherlands originally... I suppose the assembler is the assembler and the language is assembly. Anyways...

      Regarding the optimizations, I'd have to admit that I don't remember the details. It's about time I do an other comparison. It's important to note that when I did it, it was C++ code. I compared the M$ compiler, the GNU compiler and the Intel compiler. I tried to find the max optimizations and tried several different combinations of command-line options for each because (especially for the Intel compiler) it wasn't very obvious to me what combination should really give the best optimization.

      I basically did the comparison because we just purchased the Intel compiler and I was very dissapointed by the performance improvements that we saw (like 0%) when I compiled a huge project with it instead of VC++.

      In any case, I'm sure I tried a pre 3.0 gcc, so I will give her an other try before I speak again :-)

  4. Transmeta needs to give up by sheddd · · Score: 5, Insightful

    They're so far behing on mfg technology that they're screwed. AMD or Intel can take a .13 micron part, underclock it, under-volt it and spank em silly (while getting many more chips per wafer).

  5. Re:Ironic, isn't it? by Anonymous Coward · · Score: 4, Funny

    Holy crap! If you hadn't pointed that out we never would have realized it.

  6. Hello, I'm Linus Torvalds by jazman_777 · · Score: 4, Funny

    and I pronounce "Microsoft" "Microsoft".

    --
    Slashdot: Failed Car Analogies. Amateur Lawyering. Anecdote Battles.
    1. Re:Hello, I'm Linus Torvalds by GlassHeart · · Score: 2

      You killed my code morphing CPU. Prepare to die!

  7. Irony by phorm · · Score: 4, Insightful

    Fueling the frenzy was one of its lead software engineers, Linus Torvalds, who was already famous for developing the core of the Linux operating system

    Linus was one of the lead software engineers for this company, and yet it needs Microsoft to keep it from flopping? Perhaps MS can do the hardware and Linus the software, which might actually make a good product.

    What we need is linux open-sourceness with Microsoft marketing

    1. Re:Irony by Jason+Earl · · Score: 3, Interesting

      Transmeta doesn't necessarily need Microsoft to succeed, but they do need some device that will sell millions of units. Right now their best bet is Microsoft's tablet PC. Microsoft is the only player that seems likely to spec a Crusoe in a device and then spend the advertising money that it will take to sell the darn thing.

      So far devices that require a low power x86 compatible chip have been few and far between, and when such a chip has been necessary AMD and Intel have had chips that were competitive.

  8. Scary by sheepab · · Score: 2, Redundant

    Linus needs Transmeta, and Transmeta needs Microsoft.....eep! Im scared!

    1. Re:Scary by digitalhermit · · Score: 2

      You don't see it? Remember the Good Kirk and Bad Kirk? Of course Linus needs Bill. You need a good and a bad!

  9. Transmeta and Tivo are both just too early by reverendG · · Score: 2, Interesting

    The early pioneers of the coolest ideas frequently go broke just as their ideas catch on. Is it in time for Transmeta?

    It makes me pretty nervous; I work for a start up trying to create our own market.

    --

    Why should I argue rationally with someone being irrational? I'll just mock them instead.
    1. Re:Transmeta and Tivo are both just too early by Chris+Burke · · Score: 2

      Your statement that early pioneers often fail before the idea catches on, but that doesn't really apply to Transmeta. The two cases aren't really the same.

      Tivo is a new idea, something you couldn't do before. Before Tivo, the best you could do was stick an EP cassete in your VCR and program it to record things.

      Crusoe is just a clever implementation of the old idea of "low power processor". It doesn't actually let you do anything that you couldn't before, it only provides a different set of engineering tradeoffs (how big a battery you need, what kind of software you can run). From that sense, they aren't really the "early pioneers" of which you speak. Granted, their implementation is quite clever.

      --

      The enemies of Democracy are
  10. That's what I don't understanc about Transmeta. by AltGrendel · · Score: 2

    They have Linus working for them. Why not get something that runs a linux distro on it? Would it be that hard to NOT use M$?

    --
    The simple truth is that interstellar distances will not fit into the human imagination

    - Douglas Adams

    1. Re:That's what I don't understanc about Transmeta. by NineNine · · Score: 3, Insightful

      Would it be that hard to NOT use M$?


      Yes, it would. They need a product that is going to sell hundreds of thousands of units, or even millions of units to make production worthwhile. There's no Linux based product that's even remotely close to that.

  11. Transmeta to create "profit morphing" technology by truth_revealed · · Score: 5, Funny

    Transmeta to create "profit morphing" technology to turn an unprofitable business plan into to a profitable one.
    They will roll out newly patented "micro profit opcodes" to soak up Microsoft money at the molecular level.

  12. Linus Torvald in bed with MS by Chris_Stankowitz · · Score: 2

    Looks like the MS bashing train gets off here. I love those trans meta chips. Especially in the Sony Picture books, it has reduced the amount of heat generated by them by at least half. So if it means that I gotta Kiss MS A$$ to continue to see these, then here goes: Screw that...... APPLE ALL THE WAY BABY!!!!!

  13. Re:Aw man... by Reality+Master+101 · · Score: 5, Insightful

    If your business model needs MS, then you're already done.

    Yeah, because NO ONE has EVER made a lot of money hitching themselves to the Windows platform... (*cough*Quicken, Visio, Norton, McAfee, Innumerable Games, etc, etc, etc*cough)

    Sheesh, dude, get a clue. Microsoft is dominant exactly BECAUSE they make it easy for people to develop for the platform and make lots of money. Review the history of OS/2 to see what happens when you rape the developers.

    --
    Sometimes it's best to just let stupid people be stupid.
  14. Yawn!!! by Anonymous Coward · · Score: 3, Insightful

    That headline is a misnomer. Microsoft is not the only company producing operating system software that could run a tablet PC. Transmeta needs Microsoft? The article didn't say that-- it said Transmeta needs customers.

  15. The truth is... by Cervantes · · Score: 5, Insightful

    Transmeta should have realized a long time ago that they couldn't break into the laptop market (which is where they seem to have been trying to go). What Intel doesn't monopolize, AMD jumps on with greater resources than Transmeta could hope for (Hammer notwithstanding).

    The MS Tablet PC could be the best thing to happen to Transmeta. MS isn't exactly happy with the major box brands offering *nix, and inside rumours say debate over whether security should be hardware or software have put a good dent in MS/Intel relations. By going Transmeta, MS can get a good price on a suitable processor (not megapowered like the portable P4's, but perfect for the job), which means more tablets running MS software, they get a bigger say in the design of the tablet, and the poke Intel in the ass and say "Don't push your luck, big guy, we don't need you as much as you want to believe."

    And in the end, the result is just as good for open source on the tablet platform, because cheap tablets with a big company behind them will get a strong push into the marketplace, give OpenSource developers a reason to write for the tablet.

    I say, Go Transmeta!
    (hey, wasn't that a catchphrase from an 80's kids show?)

    --
    If I knew the wedgies I gave you back in 6th grade would have resulted in this . . . I might have taken a moments pause.
    1. Re:The truth is... by jpt.d · · Score: 2

      Can I put your first sentance a different way, but a few years ago?

      "AMD should have realized a long time ago that they couldn't break into the desktop market (which is where they seem to have been trying to go)."

      We can say that probably around K5 or K6 era, maybe even K6-2. You must be open to possibilities.

      --
      What we see depends on mainly what we look for. -- John Lubbock Now search for that bug slave!
  16. it reminds me... by thanq · · Score: 5, Insightful
    But it turns out that American computer users aren't interested in ultra-thin and lightweight laptop PCs. That's why Transmeta has had more success in Japan(...)

    I wonder if that has much to do with the US way of life - we see almost exact same trend in automobile and home appliance industries. People in the States like to drive muscle cars, SUVs, full sized cars, who guzzle gas like crazy. In Europe, the trend is reverse, smaller, more economic cars running on electricity or natural gas and well esablished. Here in the US, they all seem to be either developing very slow or even failing.

    Same thing with the dryers and washers. Europe in Japan goes for making them more energy efficient and smaller (due to space constraints, mainly), where here in the US we dont see much of a move away from the full sized washers.

    Because of that, I would think the quoted statement could very true.

    1. Re:it reminds me... by Otterley · · Score: 5, Insightful

      The reason Americans buy inefficient products is because energy is so cheap in the USA. However, when energy becomes expensive (as it did in the 1970s during the oil embargo) to the point at which switching to something more efficient is cheaper than continuing to purchase the means to power it, you'll find that Americans will quickly dump the guzzlers.

      It's really quite simple...

    2. Re:it reminds me... by WatertonMan · · Score: 3, Insightful
      I think it is more that Americans tend to look at initial sticker cost rather than total cost of ownership. You see this in cars and much else.

      For instance I got a front load washer which ended up costing $400 more than what I could have got a regular washer for. However over five years I should make up for that in water and power savings. (Plus it cleans clothes better and works on my sleeping bags) But front load washers aren't as popular because of that initial cost.

      You see the same thing with computers and many other things. For instance with kitchen supplies people will buy the cheap knives and silverwear rather than spending a few extra dollars for something that will last far longer.

      I don't know why this is.

    3. Re:it reminds me... by tswinzig · · Score: 2

      Same thing with the dryers and washers. Europe in Japan goes for making them more energy efficient and smaller (due to space constraints, mainly), where here in the US we dont see much of a move away from the full sized washers.

      Let's see, do I want to do 50 loads of wash, or three... hmmm, tough choice.

      --

      "And like that ... he's gone."
    4. Re:it reminds me... by afidel · · Score: 3, Insightful

      With cars at least it simply isn't a factor. The cost in terms of fuel for any reasonable expection of fuel costs in the next decade get lost in the rounding errors. If a vehicle costs on average 22K dollars and the cost of running the vehicle (fuel only) is around 1K/year then a 1% change in the interest rate has more effect on the tco then any reasonable change in the fuel economy. In fact if we could get people to properly inflate their tires we would get almost as much fuel economy improvements as any engine tech I have seen. True moving from SUV's and light trucks to compacts would help a hell of a lot, but I like many Americans won't give up my full size car. The reason is simple, as long as others drive 2 ton SUV's my family is not safe in a compact car.

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
    5. Re:it reminds me... by Jason+Earl · · Score: 2

      Not to mention the fact that road trips are hell in little cars. I just have two kids, but there is no way I would go back to travelling with the family in the Civic now that we have a mini-van. The mini-van is easily an order of magnitude more comfortable on long trips, and the extra space means we can bring more gear. And when you live in Idaho, almost all of your trips are long trips.

    6. Re:it reminds me... by afidel · · Score: 2

      I don't own an SUV for that very reason, but my fullsize car gets decent gas milage (26mpg in mixed driving) and has a 5 star crash rating for all occupants. Compare this to what you need to do in order to double the gas milage (Purius, small VW) which have almost no chance of surviving a crash with my car, let alone an SUV. Do I find it sad that average fleet economy has gone down over the last 2 decades despite advances in engine tech, you betcha. Will I risk the safety of my family to make some statement or try to singlehandidly change things, not on your life!

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
    7. Re:it reminds me... by WatertonMan · · Score: 2
      With many cars it definitely is a factor. That's why intelligent people take into consideration the amount of repairs you have to expect with a vehicle.

      Now it may well turn out that between two cars there is little difference. It may also turn out that other factors are important. For instance I'm willing to pay a premium for an SUV because I frequently head off into the mountains to rock climb or hike. However if I was solely communting I'd probably reconsider.

      So I'm not saying that total cost of ownership is the only consideration. Utilitity and aesthetic also play very significant factors. What I am saying is that for all things being equal, Americans tend to look at initial cost as being far more significant than total cost.

    8. Re:it reminds me... by Jason+Earl · · Score: 2

      That's hilarious. I own a mini-van and so my children are hoodlums. I used to travel with my children in a Honda Civic hatchback. That car, which I still own, gets 40 MPG and will haul an acceptable amount of gear. However, there is no question that the mini-van is more comfortable. Now I am sure that I could get by with the Civic, but why should I? The mini-van gets 26 MPG and carries twice as much stuff while still giving my family more room (and it has air-conditioning to boot). The difference in fuel price is neglible, especially considering the fact that the mini-van is much safer.

      For the record, my one-year old boy is a hoodlum, but my three-year-old girl is a perfect little lady.

    9. Re:it reminds me... by radish · · Score: 2

      Except in europe you can only get front loaders, and you wouldn't pay more than $400 flat for one. Top loaders are seen as old-fashioned, you only ever see them in laundromats. The initial cost in the US is only high because the demand (and therefore supply quantity) is low.

      Same with cars - I drive a small car, even by european standards. It's fast, it's a convertible, it was quite expensive. When it came to choosing I wasn't even remotly interested in some massive gas guzzling monster like I have to hire when I travel to the US, not because of cost but because they are slow, ugly, and too big for british roads.

      --

      ---- Den ene knappen er powerknapp, den andre er Bender voice knapp "Bite My Shiny Metal Ass"

    10. Re:it reminds me... by radish · · Score: 2

      Compared to places like LA, almost all european cities are cleaner and more smog-free. Even London isn't that bad...

      --

      ---- Den ene knappen er powerknapp, den andre er Bender voice knapp "Bite My Shiny Metal Ass"

    11. Re:it reminds me... by Yunzil · · Score: 2

      where here in the US we dont see much of a move away from the full sized washers.

      Um, that's because I have a lot of clothes and don't want to either wash them every day or do 20 loads every week or so.

      One of the reasons I chose the apartment I live in is because it had a full size washer and dryer.

  17. Or maybe... by TheGreenLantern · · Score: 3, Insightful

    ...consumers are deciding they don't really need or want tablet PC's. Just a thought.

    --

    It hurts when I pee.
    1. Re:Or maybe... by ObviousGuy · · Score: 2

      Tablet PCs are too new to come to any conclusion about the market's uptake of it. They still aren't available in stores, so it's probably better to hold off on any pronouncements like that.

      And besides, most Tablet PCs run Intel inside.

      --
      I have been pwned because my /. password was too easy to guess.
  18. Speculate: 3G phones by jukal · · Score: 3, Interesting

    ...just might be the perfect playground for Transmeta. Enough said, you speculate the rest :)

    1. Re:Speculate: 3G phones by afidel · · Score: 2

      nah, the chip is too huge. embedded cpu's for cellphone have to be small as the whole circuitboard for a cellphone is probably only 50% bigger then a desktop cpu.

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
  19. Re:Aw man... by Anonvmous+Coward · · Score: 5, Insightful

    "If your business model needs MS, then you're already done."

    Tell that to Gateway and Dell.

  20. "Long overdue tablet revolution"-- hype by renoX · · Score: 3, Interesting

    The tablet form factor is very usefull for people working in a stand-up position: nurses, repair people, etc..

    For all the other use, a laptop or a desktop is better.
    You can type better(less error) and faster with a keyboard than with writing with a pen, even with the best handwriting recognition software of tomorrow.

    The PC industry is desesperately trying to find new ways to sell more PC, so they came up with the tablet PC, but let's not be fooled by the hype..

    Some vendors are very clever: they put both a keyboard and a "tactile" screen into their tabletPC so you can have both input mode.
    But I think that the early "normal" users after realising that there using 99% of the time the keyboard instead of the pen will think that they are using these tablet PC as some kind of overpriced laptop and will come back to laptop..

    1. Re:"Long overdue tablet revolution"-- hype by RealAlaskan · · Score: 2
      Well, a tablet pc which is a big screen (say 14 in diagonal) AND NOTHING ELSE (no keyboard, et cetera) would be great for carrying around some books in pdf or html format, and reading and taking notes. A plugin (or better yet wireless) keyboard would let me do seroius typing if I needed to. Ethernet would let me put it on a network and up/down-load whatever.

      It would have to be thin, light, and not too fragile.

      That would be useful, if it were cheap.

  21. And why do I need a Transmeta CPU? by occamboy · · Score: 2, Interesting

    OK, perhaps it uses less power than something from AMD or Intel. At first blush, this might be useful for extending battery life in a laptop.

    But how much less power for the entire system does this translate to? I'm not an expert on this, but I'll bet that LCD displays use as much or more power than CPUs. In the end, I don't expect that there is much of an impact on battery life, and thus not much of a selling proposition.

    Frankly, I've never understood why this company was funded. For that matter, I still don't understand most of the dot coms, including Amazon and Yahoo. I guess I'm just old and cranky.

  22. What's the appeal? by kbielefe · · Score: 2, Insightful

    What exactly is the appeal of a tablet PC? What tasks are they better suited for than a laptop or PDA? Does someone know? This seems like a classic example of cart before the horse innovation. These may be cool gadgets, but if they don't solve a problem better than existing solutions, they will never take off.

    --
    This space intentionally left blank.
    1. Re:What's the appeal? by afidel · · Score: 2

      combine them with wireless and you quickly find out. Try walking around with a laptop and using it. You will either realize it doesn't work very well or you will end up with an expensive lcd replacement.

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
    2. Re:What's the appeal? by kbielefe · · Score: 2

      You've answered half of my question. The other half is why choose a tablet over a wireless-enabled PDA? In other words, can you think of a specific application that you need to "walk around" with that needs the extra screen space so badly that I would be willing to tolerate the extra weight and bulk of a tablet over a PDA?

      --
      This space intentionally left blank.
    3. Re:What's the appeal? by afidel · · Score: 2

      yep, remote desktop, I tried VNC for iPaq, but quickly quit as just the start menu took over half the iPaq's screen.

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
  23. Transmeta is dying by Anonymous Coward · · Score: 2, Interesting

    One more crippling bombshell hit the already beleaguered Transmeta community when IDC confirmed that Transmeta market share has dropped yet again, now down to less than a fraction of 1 percent of all servers. Coming on the heels of a recent Netcraft survey which plainly states that Transmeta has lost more market share, this news serves to reinforce what we've known all along. Transmeta is collapsing in complete disarray, as fittingly exemplified by failing dead last in the recent Tom's Hardware comprehensive CPU test.

    You don't need to be a Kreskin to predict Transmeta's future. The hand writing is on the wall: Transmeta faces a bleak future. In fact there won't be any future at all for Transmeta because Transmeta is dying. Things are looking very bad for Transmeta. As many of us are already aware, Transmeta continues to lose market share. Red ink flows like a river of blood.

    Crusoe is the most endangered of them all, having lost 93% of its core developers. The sudden and unpleasant departures of long time Crusoe managers David Ditzel and Matthew Perry only serve to underscore the point more clearly. There can no longer be any doubt: Crusoe is dying.

    Let's keep to the facts and look at the numbers.

    Sony leader Hiroshi states that there are 7000 users of VAIO PictureBook. How many users of Thinkpad are there? Let's see. The number of VAIO versus Thinkpad posts on Usenet is roughly in ratio of 5 to 1. Therefore there are about 7000/5 = 1400 Thinkpad users. Tablet PC posts on Usenet are about half of the volume of Thinkpad posts. Therefore there are about 700 users of Tablet PCs. A recent article put CASIO at about 80 percent of the *BSD market. Therefore there are (7000+1400+700)*4 = 36400 CASIO users. This is consistent with the number of CASIO Usenet posts.

    Due to the troubles of IBM, abysmal sales and so on, the Crusoe Thinkpad went out of business and was taken over by Fujitsu who sell another troubled maker. Now Fujitsu is also dead, its corpse turned over to yet another charnel house.

    All major surveys show that Transmeta has steadily declined in market share. Transmeta is very sick and its long term survival prospects are very dim. If Transmeta is to survive at all it will be among hardware dilettante dabblers. Transmeta continues to decay. Nothing short of a miracle could save it at this point in time. For all practical purposes, Transmeta is dead.

    Fact: Transmeta is dying.

    1. Re:Transmeta is dying by audioplaster · · Score: 2, Informative

      i don't think you know what you're talking about. or if you do, you are just speculating. millions of tablet pc's will be sold, with a large share of crusoe chips. also, the transmeta will surely be slower... so what. it's not about speed. i tell you what. i bet my fujitsu lifebook 2000 is a lot faster than your dead battery :) a.p.

  24. If this tablet revolution is so overdue.... by solios · · Score: 4, Interesting

    ....maybe it's not in the cards?

    The posts in the thread already mention that the Carusoe is a niche chip- from what I've seen, it's gone horrifically under-utilized: a chip that could hypothetically be a power pc, mips, sparc, etceteras is nothing other than a super-low power x86?

    A tablet PC might be fine for some people- If the input is pressure sensitive, it would be great for the graphics field- but these really don't seem to be much more than big PDAs or totally integrated, one-piece laptops.

    What, exactly, is a tablet good for that a PDA or laptop *isn't* ? I need quick access to photoshop and apache practically everywhere I go (freelance web designer with a powerbook)- a PDA is useless for me, and the tablets I've seen don't run my OS of choice or seem to do anything I might need.

    Someone clue me- what market are tablets actually *aimed* at? A laptop is perfect for my needs, and a PDA works great for many people I know.

    If people don't need a thing, or can't find a use for it, then the only people that are going to buy the device are gadget hounds- which, in all honesty, don't seem like enough of a market segment to keep a niche industry like this afloat.

  25. Predatory Pricing (aka Biatch slap) by airrage · · Score: 5, Interesting

    Intel can afford to sell chips less expensively than it normally would in order to gain a foothold in a given market--and it has proven its willingness to engage in price wars.

    This is the crux of the article, predatory pricing: airline seats, xboxs, OSs, etc. Sell the low-margin product at a loss to sell 5 high-grossing products for an AVERAGE price greater than your competitor. Even if the tablet PCs are a hit, they'll get squeezed when Intel wants that market share. So one foot in the grave at this point ...

    --
    "This isn't a study in computer science, its a study in human behavior"
  26. Point missed by halftrack · · Score: 3, Insightful

    Some people seems to miss the point. Transmeta doesn't need Microsoft for it's OS or software, but for it's marketing powers. Microsoft and Bill Gates are in the process of creating a new buzzword; tablet-pc.

    Transmeta is a relatively small, backbone company and cannot market its products properly this is why they need Microsoft, not because of their <flame>marvellous</flame> operating system. As a slightly on-topic sidenote it seems that though Microsoft used to be about making programs they've shifted towards being about marketing and should anyone ever put them out of the software business I guess they could start making commercials.

    --
    Look a monkey!
    1. Re:Point missed by SteakJerky.com · · Score: 2, Funny

      MS used to be all about operating systems. Then, they starting with general purpose software, then hardware, and now becoming a marketing force. What's next? I can tell you...meat ratings. Instead of USDA Prime in 5 years it will be RibXP.

  27. tablet pcs, i don't get it. by Mr.+Quick · · Score: 2

    not attempting to be narrow-minded, but why would i want to write, when i can type? my writing is horrible and i type much faster, so while i appreciate the techie part of making a tablet work, i don't see the value.

    i could see the value of something like the current ibook, that folded all the way around and looked like a tablet, and enabled with touch sensitivity.

    for me, that would be a better solution.

    1. Re:tablet pcs, i don't get it. by gl4ss · · Score: 2

      same thing has been puzzling me..

      just about the only good places of home use for it i can think of are taking it to wc to watch a movie, or taking it to wc to browse.

      let's face it, zaurus is great BECAUSE it has keyboard(and powerful and versatile enough to run ssh and others). why would somebody want a bigger product, with inferior features?(oh wait talking about ms...). i can't friggin write on paper the speed of my typing, even on my zaurus and i'v just used zaurus for couple of hours of my live. sure it(table-pc) could be fun as _part_ of laptop, when reading books or long texts & etc, but that's just about it.

      --
      world was created 5 seconds before this post as it is.
  28. Re:Aw man... by Reality+Master+101 · · Score: 5, Insightful

    The only resin Quicken exists is b/c MS lets them exist.

    Oh man, look at this history of Quicken. Microsoft tried damn hard to kill Quicken. Damn hard. In fact, they were going to just give and buy out Quicken, but the DOJ blocked the buyout.

    Don't you think they would just bundle Money with the OS if they wanted to stomp out Quicken?

    Sure, if they wanted to screw themselves in the process. The point isn't to destroy Quicken, the point is to maximize profit. And giving away "Money for nothing" (heh) doesn't maximize profit. It's hard to start selling something again after you give it away.

    If you think MS plays nice-nice for the benefit of the other company, then think again.

    Microsoft is smart enough to realize that the biggest advantage they have is their range of applications. That's why they treat their developers so well.

    On top of that, I think MS now owns Viso.

    That's called being a successful Windows developer. If only I could create product that Microsoft would want to pay 100s of millions of dollars for. :)

    --
    Sometimes it's best to just let stupid people be stupid.
  29. Business strategy?? by stevenp · · Score: 3, Interesting

    From the very beginning Transmeta did not have a clear market strategy. They grabbed some attention at the time, mostly because of their hidden development and braveness to face Intel. Linus was another marketing trick (quite successful). But to survive in the market a clear business strategy is a must, not just a "nice to have". They tried to use (and open?) a new market niche - the low-power mobile devices, that was not existing. The chance was little and it mostly did not succeed. The company is however popular in Japan, which had always had a market for ultra-little things. So things fall now in place - it is very hard to use a new market segment, where there is none. (Anyone Iridium phones?) The Japan-s are known to value the small things and are ready to pay real cash for the same functionality, just smaller. It is in their culture, so Transmeta was just doomed to succeed there.

    Nuff said, mod me now

  30. Then Transmeta is doomed... by Anonymous Coward · · Score: 2, Insightful

    Tablet PCs are yet another ill-conceived product that Microsoft's "innovation" is foisting on the marketplace. Anyone who has ever owned or used a PDA will tell you that they are wonderful but for the lack of a keyboard. Some PDAs are even reverting to keyboards: see Zaurus and some Handspring and Palm models.

    Tablet PCs are giant PDAs...or standard notebooks with a touchscreen but no attached keyboard. Either way, they are in a perfect middle ground of maximal uselessness. Yes, many will have a wireless keyboard that can be used, but what's the point? Get a notebook.

  31. Microsoft can't save Transmeta by selectspec · · Score: 2

    Transmeta is selling to the OEM's in the consumer electronics market which has essentially stalled and is showing no signs of recoverying anytime soon.

    Transmeta has been relegated to this dwindling, competative market, because they were booted from the more competative dwindling server blade market.

    I hope the technology lives on, and a deep pocket buyer can be found that's willing to ride out this economy, but my forcast is that Transmeta folds and there's a fire sale by 3rd quarter next year.

    --

    Someone you trust is one of us.

  32. My personal Transmeta anecdote. by SlashChick · · Score: 4, Interesting

    I was really interested in getting a Sony Picturebook. This was about 4-5 months ago, when the latest ones had not yet hit the United States. I asked a client of mine, who is Japanese, to get me pricing. He obliged, but only after warning me about the Transmeta processor. "It doesn't work well when you try to run multiple applications," he said. "Everyone says it's slow."

    I asked him who had told him that. He said it was the Sony rep at the store where he bought his Vaio. Uh-oh.

    I knew a Transmeta 867MHz processor wouldn't perform as well as an Intel 867MHz processor, but I did some digging and was shocked to figure out how much slower it really is. Check out these benchmarks from Tom's Hardware. The Transmeta 600MHz processor got stomped by a "vintage" PII/366MHz notebook. That's terrible.

    To me, small size and battery life rank higher on my list than pure performance. Still, the Transmeta processors run so slowly that the only way I could justify buying one is if they had 5+ hours of battery life. But they don't -- the PictureBook is only advertising 2.5 hours of battery life. Compare this to the (admittedly larger) 3.7-pound IBM X30, where Walter Mossberg put one through the grinder and got 3 hours and 29 minutes of battery life. IBM is claiming 5+ hours in BatteryMark for the same laptop.

    Transmeta did one thing, and that was to get Intel turned on to the fact that consumers want good battery life in notebooks. I think the quote from the article puts it best: "Intel's focus on battery life happened because Transmeta pressured them into it... forced them to do something different. The good news is you've got a giant to acknowledge you but the bad news is you've woken the giant."

    Right now, the giant is still stomping Transmeta, and I doubt that tablet PCs will really put Transmeta back in the running. Whatever Transmeta can come up with, Intel has proven that they can match. Transmeta might make initial inroads, just like they did on subnotebooks, but eventually Intel will again wake up, and this time I don't think Transmeta will survive.

    1. Re:My personal Transmeta anecdote. by csnydermvpsoft · · Score: 2

      Small size and battery life? Try the Fujitsu Lifebook P-series. Advertised 14 hours battery life, though I only get around 10 with the brightness all the way up.

  33. Re:Aw man... by akgoel · · Score: 2, Interesting

    It's hard to start selling something again after you give it away.

    Well, Microsoft did give away Money 95 (and Outlook 98 for a limited time).

  34. Re:Aw man... by Dogtanian · · Score: 2, Funny

    The point isn't to destroy Quicken, the point is to maximize profit. And giving away "Money for nothing" (heh) doesn't maximize profit.

    Does this mean they won't be giving away Chicks For Free either, then?

    --
    "Slashdot - News and Chat Sites Deviant". (Click "homepage" link above for details).
  35. Re:Crusoe is NOT slow! by mocm · · Score: 2

    No it's not. Look at this comparison
    And consider that Intel and AMD can't produce a chip that will stay as cool at the same clock rate. They have at least 4 times the transistor count. You will never see an Oqo style PC with AMD or Intel. Because at top speed you can't switch of your transistors or lower your voltage, if you want to keep up performance.

    --
    ***Quis custodiet ipsos custodes***
  36. U-S-A; U-S-A. by Multiple+Sanchez · · Score: 3, Flamebait

    We Americans (when exactly did the residents of Canada, Central America, and South America yield that moniker to the residents of the United States? I must have missed it) consume so much of the world's resources and gleefully create such a disproportionate amount of waste that the people whose nations are now our toilets are more than willing to fly airplanes into us.

    SUVs exist solely to circumvent fuel emissions legislation. The original Nintendo Entertainment System was a fraction of the size everywhere else in the world as it was in the U.S. -- United States consumers didn't like the small one, so Nintendo threw it into a big gray box, and it sold like gangbusters. And, while we're talking about silicon(e), How many tit jobs do you see while walking the streets of Paris? Milan? Tokyo? Lisbon?

    Anyway, where was I? Oh yeah -- Transmeta. I have no clue why Transmeta's stuff didn't really fly in the states. Someone should do an expensive study.

    1. Re:U-S-A; U-S-A. by Panoramix · · Score: 2
      Those "nations" have always been toilets, and they always will be, so we might as well use them as such. Just as with any toilet, there can be occasional backflow, but you can bet I'll again be taking a nice steaming shit on them soon enough.

      You know, it's idiots like you, sir, that give gringos their bad name around the world. Thankfully (for you), most people in your country are not that screwed. Or so I hope. For you see, that World Trade Center thing still looks like an unspeakable atrocity from here, but the more blabbering assholes like you are let loose on the world by the U.S. of A., the harder it becomes to be sad for your country, and side with you and try to help in any way we can, when that kind of shit happens. I won't excuse Bin Laden, for he is a homicidal madman --but you are making me see how you could annoy someone beyond his sanity.

      Oh well, this is offtopic and flamebaitish, so mod me down. Just got too pissed off by dickless here.

  37. Re:Aw man... by microbob · · Score: 3, Interesting


    Oh man, look at this history of Quicken. Microsoft tried damn hard to kill Quicken. Damn hard. In fact, they were going to just give and buy out Quicken, but the DOJ blocked the buyout.


    Yup, in MS' zest to kill Netscape they let Quicken have an icon on the Active Desktop. They also got Quicken to force the installation of IE along side Quicken.

    Do they want to kill them or do they like them?

    If they really wanted to kill Quicken, they would bundle Money-Lite with the OS and if they really wanted to kill Quicken, they wouldn't have given them a spot on the Active Desktop years ago.

    I think they like Quicken

  38. What about Apple? by teamhasnoi · · Score: 5, Funny
    Apple always needs new, slow chips for their computers.

    Put the gun down! I was only kidding!

  39. Re:Sad thing is... by diesel_jackass · · Score: 2

    I like the Atari Pocket PC the best:

    http://www.atarimagazines.com/startv3n6/european_r eport.html
    (only 200 pounds!)

  40. Re:Ironic, isn't it? by The+Dobber · · Score: 3, Funny

    So in the near future we can look forward to Linus holding a presentation with the image of Bill Gates looming behind him, ala Apple.

    Lets call it "Big Brother Part Deux"

  41. Various possibly bad decisions... by Chad+Page · · Score: 3, Insightful

    - Not making a small, widely available motherboard that hobbiests and integrators could just go out and buy. VIA came out with this and there's a whole small scene (mini-itx.com, et al) playing with it. This market could have been Transmetas, but they only recently put out a motherboard for developers that costs ~$600.

    - Switching from IBM to TSMC before the latter worked out their .13u production issues. This cost them *a lot* of momentum.

  42. Another issue to look at by hfastedge · · Score: 2

    One of the reasons im so unsatisfied with the tablet pc is that it uses a moving,mechanical,hardrive.

    With a delicate HD in it, the tablet pc really does not deliver much value over a laptop.

    Unfortunately, palms are far too low powered (in many aspects), and have far too small screens to be usefull.

    Still, given the type of day to day lifestyle I lead, I'd currently choose a well configured asian (since they really have better palmlike devices over there) see http://www.linuxdevices.com/articles/AT8728350077. html
    since its soemthing that I can cary around without treating it like a fragile baby.

    --

    -- -- --

    Help my mini cause: My journal

  43. I'm reminded of the "thin client" revolution by Infonaut · · Score: 3, Insightful
    Remember how Ellison and lots of luminaries were telling us just a few years ago that we'd all be using thin clients in our kitchens to look up recipies from the Web? Why would anyone want raw processing power on the client side, when everything you needed could be found on the Web?

    So with tablets we're getting a bulkier PDA (which is therefore not so handy for PDA uses), yet crippled in functionality when compared to a standard laptop, and certainly nowhere near as useful for all-around home and business use as a desktop computer.

    Sure, tablets will be handy for vertical market uses. In fact, anyone who works in the shipping industry can tell you that these things have been around for years in more specialized roles. You could even argue that the Newton 2000 was a scaled-down tablet. Too big to be a good PDA, too small to offer much outside of vertical markets.

    The PC industry is desperate for something, anything, that can drive sales. So they're dressing up an old notion and calling it "innovation". Think about it. Corporate IT departments won't buy them when they've already invested in laptops. Kids won't want them, because they want game power. Ma and Pa Kettle won't want them because they don't want to write emails in longhand. It's just not gonna fly as a mass-market product.

    --
    Read the EFF's Fair Use FAQ
  44. Re:Aw man... by zapfie · · Score: 2, Interesting

    Uh..
    Microsoft tried everything to get rid of Quicken as a competitor, from buying Intuit to those "FREE Microsoft Money" things you saw in stores. (isn't that called dumping, and is illegal?) They failed. Microsoft certainly didn't play "nice-nice" for Intuit's benefit.

    Also, I think Microsoft threatened AOL way back when, saying something to the effect of "I can buy you out now, I can buy you out five years from now, or I can go into this business for myself and crush you." Last time I checked, AOL is still doing fine, despite Microsoft's efforts.

    --
    slashdot!=valid HTML
  45. Re:Aw man... by Anonvmous+Coward · · Score: 2

    "When MS eventually decides to go with Intel's low-power processor Transmetta will die."

    MS doesn't actually make the machines. It's the choice of the companies (like Toshiba) who make the TabletPC's. What they need MS for is to make sure that TabletPC's in general are worthwhile to have.

    "They exist because MS lets them exist."

    MS lets Transmeta exist? Where'd you conjure up that kind of bizarre logic?

  46. Re:Ironic, isn't it? by max+cohen · · Score: 2

    Isn't he the only reason anyone even knows or cares about Transmeta? ;) Don't worry about Linus. He won't have to worry about landing a new job when Transmeta bites the dust.

  47. I think it went down like this... by Jonny+Ringo · · Score: 2

    Transmeta: Microsoft, I need you. I'm sooo sorry. Please I won't try and hurt you again.

    Microsoft: I don't know if it can work anymore. These are tuff times baby.

    Transmeta: Please, oh Please!

    Microsoft: You still with Linux?

    Transmeta: Ohh noo I was just using Linux to my advantage, I really love you.

    Microsoft: Well, ok. We'll try and make it work.

  48. The Ad by The+Dobber · · Score: 3, Informative

    I'm writing to share a tragic little story.

    My compnay has a processor that my friends and I are trying to market. One night, I was tallying up sales on it, when all of a sudden I went berserk, we were losing money, money, money. All of it. And it was a good design! I had...........

    My name is Linus Torvald, and I made a deal with the devil.

  49. Re:Aw man... by NanoGator · · Score: 2

    "They exist because MS lets them exist."

    I think microphobia (fear of Microsoft) today is reaching higher than homophobia a few years ago.

    --
    "Derp de derp."
  50. But it is a Growing Niche by Gerry+Gleason · · Score: 5, Insightful
    Low power is a big win. There are blade servers based on these chips too, and you can pack a lot more low power blades into a box without cooking everything. Wasn't there a story linked here a while back about how MIPS/Watt is a more important performance metric for huge server farms?

    The number of humans that can outcode GCC is vanishingly small, and even smaller when you have to do keep track of all sorts of parallel dependencies and such. If I had to guess, I would say their problem is that they don't have the necessary capital to do the software development they would need to make this idea really fly. This seems like more of a research project than a business plan, maybe if they enlisted more support from the community by openning things up GPL style, it might have a chance.

    If you are going to make chips, you should concentrate your investment on designing and making the chips, not the software. I'm sure they could do another design cycle in more modern fab technology and get much more speed (or lower power if that is the priority).

    Also, my impression is that they aren't sharing a lot of board level IP either. There are lots of applications that are getting StrongArm and other low power processors that would be an ideal market for them, but these are all small companies without a lot of bucks to risk with new designs. OTOH, if you give them a basic design that uses your chips, and sell cheap prototyping parts and support gear, your going to get a lot more inquiries. Would this be enough to turn it around for them? I don't know, but would you bet your company on Billy G. deciding to endorse tablets? Even if they are successful, the danger is that Intel can swoop in and steal the market. You're much better off staying small and concentrating on the emerging niches. Specifically, the embedded market where Linux is already a good fit and doing well.

    Too bad, though, it was a good idea, but the timing was bad. They still have some investment money that hasn't been spent, but it would be difficult to change direction now.

    1. Re:But it is a Growing Niche by sql*kitten · · Score: 2

      The number of humans that can outcode GCC is vanishingly small, and even smaller when you have to do keep track of all sorts of parallel dependencies and such.

      Yes, that's true, but the number of compilers that can outcode GCC is significant. Sun, SGI, Intel and Compaq/HP/DEC all have far superior compilers than GCC for their own hardware (generating binaries that run over 2x as fast for compute-intensive code). GCC is made for portability, and as such does not exploit many platform-specific performance techniques, particularly not on anything other than x86, where it has many developers working. Is there anyone even working on GCC on the R12000?

      If you are going to make chips, you should concentrate your investment on designing and making the chips, not the software. I'm sure they could do another design cycle in more modern fab technology and get much more speed (or lower power if that is the priority).

      Back on topic: TransMeta's problem was that they never exploited their code morphing technology in a useful way. Why emulate x86 only, when x86 is ubiquitous? Now if they could handle x86 and also morph Java bytecode into their native instruction set at the same time, then that would be a compelling advantage: full compatibility with legacy applications and no overheads for Java either. They made the classic mistake of going up against an incumbent on its own territory. As Jim Barksdale one said, if you have to fight a shark, be a bear and make sure the fight takes place in the jungle.

      I don't know, but would you bet your company on Billy G. deciding to endorse tablets?

      He already has. The relationship between MS and Intel is a strange one; they are depeneent on one another to a certain extent, but Microsoft are piqued that Intel actively support Linux also, and Intel face competition from AMD, which they can't even do much about (history: Intel were forced by the courts to license their tech to AMD). If Microsoft could gain leverage over Intel by developing on Crusoe, they just might.

  51. Re:Crusoe is NOT slow! by mocm · · Score: 2

    You should be able to set limits for longrun to determine at what levels the CPU is supposed to operate. There is a tool for Linux. Don't know about Windows.

    --
    ***Quis custodiet ipsos custodes***
  52. Re:Aw man... by SensitiveMale · · Score: 3, Insightful


    Yeah, because NO ONE has EVER made a lot of money hitching themselves to the Windows platform... (*cough*Quicken, Visio, Norton, McAfee, Innumerable Games, etc, etc, etc*cough)


    Look at your list.

    Quicken is the only company that has ever competed with MS and won.

    If you don't directly compete with ms then they will let you live.

    If not, you will die. Example: IBM (in software), Borland, Corel (compare success before and after they purchased WP), WP, Novell, Quarterdeck, Harvard Graphics, Lotus, and the rest.

  53. Re:Aw man... by Reality+Master+101 · · Score: 3, Funny

    You seem to be under the ludicrous impression that being purchased by Microsoft for outlandish amounts of money is a bad thing...

    --
    Sometimes it's best to just let stupid people be stupid.
  54. Buy Microsoft Shares? by puppetman · · Score: 2

    I had a conversation with a friend today (yes, I have friends, and some of them are real) about Microsoft, tablet PCs, MSN 8 (with it's low-profit DSL) and Vivato's new phase-array antenna for 802.11b.

    Imagine what Microsoft could do if they installed these antennas in large cities, offering MSN 8 and their tablet PC. They could leapfrog many of the broadband provider without having to aquire the "last mile".

    Offer the tablet PC with Windows XP, bundling it with MSN 8, and then selling Office XP to all those people.

    After all, if the tablet PC thing takes off, it's a new market that Microsoft has to dominate or their whole house of cards falls down.

    There will be no point in buying Vivato during the IPO - the shares will go sky high, but what about buying stock in a company down the line, like Microsoft? That's a deal with the devil.

    And to make this somewhat on-topic, it could be good for Transmeta if Tablet PCs take off.

  55. Re:Ironic, isn't it? by _ph1ux_ · · Score: 2

    kernal panic - recursive loop!!

  56. thoughts about Transmeta by kipple · · Score: 3, Interesting

    1. benefiting from Microsoft isn't actually a bad issue. After all, if it wasn't for M$ we wouldn't have such cheap PCs, nor Linux installed on them. This may seem a weak point, but I think that it could help to simplify the issue. The real point, now, is that Microsoft is in such a position that they can force Transmeta not to support Linux on their CPU.

    2. Maybe Transmeta should have waited few more years, and jump out with a brand new processor when all other Bigs would be "forced" to build Palladium- CPUs.

    Just few thoughts.

    --
    -- There are two kind of sysadmins: Paranoids and Losers. (adapted from D. Bach)
  57. consumer psychology by u19925 · · Score: 4, Insightful
    Microsoft, Intel and other big companies drive consumer psychology to define "what is needed". Thus they control the mindset, e.g. "GHz+ PC is NEEDED". Other than gaming, nearly 90%+ consumer PCs that I have seen, can accomplish their task with just 100-300 MHz processor with CPU load of 20-40%. Tablet PC? Who needs one? Not until MS, Intel scream loudly. Then all of sudden, students will be required to have one (note that some colleges require laptop with MS OS on it).

    My wife did a course on Unix at UC-Berkeley. AOL, PC, MS Office were required for that course. This is the success story of AOL-Intel-MS which managed to sell themselves to a Unix student at UCB. Transmeta is just not big enough to sell themselves in a crowded market all by itself. Linux will not help them. They will need Microsoft support (who else can help them in x86 market). Most likely, even MS will not help them. They will exploit Transmeta to force Intel and AMD to come up with low-cost technology for tablet-pc that they won't to push through consumer's throat.

  58. Re:If this tablet revolution is so overdue.... by BWJones · · Score: 3, Interesting

    Someone clue me- what market are tablets actually *aimed* at? A laptop is perfect for my needs, and a PDA works great for many people I know.

    Actually, there are a number of markets where ideally a tablet PC would be perfect for. Markets like medicine, the remote sensing industry, or even the university student market. However, I have yet to see a tablet that actually works. I could go on for some time, but a small assortment of complaints include: There is not enough resistance in the way the pen moves over the surface, tablet PC's I have worked with to date do not include pressure sensitivity, and the rendering engine leaves much to be desired along with the navigability of the user interface and the connectivity technology also has not been up to snuff.

    Now, all that said, the technology exists to remedy all of these faults. I personally would like to see Apple create a tablet with a cut down version of OS X with it's Quartz/.pdf rendering engine, Bluetooth, and 802.11. Apple is probably the only company around that can actually show folks how to make the tablet concept work and actually did point the way to the current tablets with the Newton some years ago.

    --
    Visit Jonesblog and say hello.
  59. Where is the "thin client" revolution? by asv108 · · Score: 3, Insightful
    Personally, I love my Trasmeta powered Fujitsu p-2000 lifebook. It's not the fastest thing in the world, but it packs DVD/CD Burner with firewire, usb, and everything else you would expect in one of those gigantic Inspirons, but is neatly placed in a 3.5 lb package with a small footprint. I wrote a little review here.

    That being said, the idea that the "tablet revolution" is long overdue is complete BS. I haven't seen so much hype in at least five years when by now we were all suppose to be using thin client java terminals, and all content would use "push technology." Tablets are going to be great for specialized industrial applications but they are not going to replace laptops. People who think otherwise are the same people who think the Segway will be replacing the bicycle in five years.

  60. Re:Aw man... by InnovATIONS · · Score: 2
    Yes if you are talking about software (although there are exceptions such as autodesk)

    But it is a whole different matter if you are talking hardware.

    Logitech has not been stomped because Microsoft started making mice and keyboards. Because Compaq's PDAs require Windows CE does not mean that Compaq will become history even if MS did come out with their own PDA.

    The problem is that tablet PCs in various configurations have been on drawing boards for years. What they have been lacking is a good enough reason for them to exist. In other words do they replace the need for one of the several gizmos that a worker carries or do they provide enough extra benefit to justify carrying one more gizmo. That was, for example, why I gave up carrying my PDA around. It did not have anything that I did not already get from my laptop and cell phone yet could not really replace either.

  61. Long overdue ??? by Archfeld · · Score: 3, Insightful

    I'd say if it was overdue then there is actually a need/desire for tablet PC's ??? I can't say as I've ever encountered it or someone who could point out a burning need that could not easily be fulfilled with the existing technology, ie a laptop or pda. It is the same problem that the PC market is seeing, why upgrade ?? beyond a couple of games, a 600 Mhz cpu does everything just fine. Until the new 'killer app' arrives and needs massive cpu power things are not going anywhere fast. CPU's far outpace the rest of the architecture now. While the geek factor might drive some sales, it certainly isn't going to make the industry retool at enormousn cost for VERY LIMITED BENEFIT.

    --
    errr....umm...*whooosh* *whoosh* Is this thing on ?
  62. Re:Nope, Crusoes are underpowered for Tablets by mocm · · Score: 2

    There won't be any tablet PC with a P4. The fastest Intel tablets will have a PIII 800 MHz which is speed stepped down during battery use. Here is a comparison of tablet PCs. The Compaq/HP tablet is by far my favorit.Unfortunately they removed the specs.

    --
    ***Quis custodiet ipsos custodes***
  63. my brief experience by sootman · · Score: 2

    I handled a Transmeta-powered HP tablet running XP. 'My Computer' properties showed it was a 700 MHz Transmeta with some odd amount of RAM, like 236 MB or something really strange. (I guess it had some odd amount shared for video.) Overall, it seemed rather pokey, like w2k on a 233 with 128 MB. Basic boxes, like My Computer's properties or Display Properties took a few seconds to show up, as opposed to <1 second on my w2k/PIII-733 I have sitting here next to me. However, it had enough juice to play an AVI back full-screen without dropping frames, which is all I really care about from any device. :-) Plus, it was really, really cool, and the handwriting recognition was a good system and accurate. I can't wait for them to come out and drop about 2/3 of the price--I was told the one I handled would be about $2000+ when it hit the market. Thank God for St. Moore and his fabulous law.

    --
    Dear Slashdot: next time you want to mess with the site, add a rich-text editor for comments.
  64. durr by xxblackice · · Score: 2, Interesting

    cmon. those are only 3d game benchmarks. was the crusoe built for gaming? hardly..

  65. over due or due at all? by SquierStrat · · Score: 2

    It seems to me that if people that it might be over due because it's not due at all. Perhaps no one really wants or needs them right now if ever? Market dictates certain things such as these, and if the market dictates no such want or need, then companies based on these ideas that are not wanted or needed will either adapt or fail.

    --
    Derek Greene
  66. Transmeta needs cheap LCDs, not Microsoft by JM · · Score: 2

    The LCD is the key here.

    When cheap 1024x768 LCDs are around, the Tablet PCs will become mainstream. Right now, they're hard to find, and too expensive.

    PDAs are nice, but you can't use them for serious e-mail, and forget about web browsing on a 320x200 screen.

    Laptops are nice, but they are not mobile. Every time I take the plane, bus or train, the battery dies on me. And in a Taxi, it's too combersome to get the laptop from your backpack, boot, use it, then shutdown and repack.

    Right now, I carry my cell phone, PDA, and Laptop, and it pisses me off.

    Give me a decent TabletPC under $1000 with 128 megs or Ram, hard drive, PCMCIA, and that I can run my OS of choice, and I shell out my credit card immediately.

    1. Re:Transmeta needs cheap LCDs, not Microsoft by JM · · Score: 2

      Oh, and by the way, if you post links, please only post URLs that have a "Buy" button, with a price, and with the mention of "In Stock, Shipping Now".

      I don't want "real-soon-now" or "If-you-need-to-ask-the-price-its-too-expensive" type of links.

    2. Re:Transmeta needs cheap LCDs, not Microsoft by JM · · Score: 2

      I need a non-folding laptop with touch-screen, or a PDA with an over-sized screen.

      You don't need a keyboard to read Slashdot, read your mailing lists, removing all your SPAM, moving important messages in your TODO list.

      Then, if you need keyboard input, just use a Virtual Keyboard or graffiti-like thingy like TrollTech has done for the Zaurus.

      And finally, when you're in the office or at home, just plugin a keyboard and mouse and you can do the normal office tasks.

  67. Nothing really complicated... by whiteranger99x · · Score: 2, Informative
    It's based on the sound clip of Linus saying "Hello, This is Linux Torvalds, and I pronounce Linux 'Lin-nucks' "

    More info here

    --
    Join the TWIT army now!
  68. nobody said it but .... by fferreres · · Score: 3, Insightful

    And efficient low voltage CPU means nothing if you monitor and HD eat a high share of your batteries. The agregate "power saving" of using a crusoe instead of a low die underclocked pentium is negligible.

    If any other company could deliver a really low power display, and a really low power bus/memory then things would be completely different.

    If a miracle happens and very low power displays and storage is achived, transmeta could make a real difference. The bad thing is that in this case, probably a low power pentium could also deliver what the consumer wants (ie: if you can have your tablet on for 2 days with pantium and 4 with a crusoe, both good be prety usefull. Who needs the 2 extra days).

    They are doomed, they should focus on teaming with whoever is trying to lower power consumption of the other devices, and focus on the flexibility of the crusoe in the meantime.

    --
    unfinished: (adj.)
  69. Re:Aw man... by Anonymous Coward · · Score: 2, Insightful
    Also helps when they have no choice. Microsoft is dominant because they play dirty tricks and cheat. OS/2 is still alive. It just can't breath because Microsoft cut off it's air supply.

    Bullshit. OS/2 was killed by IBM's own incompetence. I don't doubt that some of Microsoft's tactics made it harder for OS/2 to succeed but it would have failed even without that. The main reasons for OS/2's failure were:

    1. Lack of good hardware support

    OS/2 had good support in some areas like printers and network cards, but other areas were seriously lacking.

    2. Higher hardware requirements

    OS/2 required more memory and processor power than Windows 95, which meant a lot back when that stuff was more expensive. I remember paying ~$400 for 16MB of RAM at the time and thinking it was a good deal.

    3. Lack of software

    Biggie right here. IBM never could get anyone to develop software for the low end. Oh, you could get plenty of high end development tools and server products, but nothing really for the average consumer. I remember that Stardock made a good run at it for a while, but even they had to branch out into the Windows world eventually.

    4. IBM couldn't market it for shit

    I never could understand this one. It was almost like they didn't want it to succeed. Even IBM's own PC division usually didn't offer it on their systems.

    There were a few other minor problems, but those were the main ones and they were more than enough. I used OS/2 for a few years as my main OS and I loved it. But IBM caused it to fail, not MS. The same goes for Lotus Notes. IBM bought Lotus and pretty much ran it into the ground.

  70. WTF are they talking about? by Alex+Belits · · Score: 2

    Transmeta indeed needs a sub-notebook market, but how is it related to Microsoft, the company that doesn't make PCs, and consistently makes OS suitable exclusively for desktops? Whoever will make hardware for Microsoft will either make it a desktop/laptop PC (=> Intel or AMD), and make something for "average Joe", or make a "palmtop" with Windows CE (=> ARM or MIPS) and make a toy for an overpaid executive. "Tablets" made for Microsoft will be just small but overpowered laptops, therefore Intel.

    --
    Contrary to the popular belief, there indeed is no God.
    1. Re:WTF are they talking about? by Alex+Belits · · Score: 2

      Huh? MS made its last killer app when it bought Visio. Any moron can make a small PC that runs Office, and hell will freeze over sooner than MS will make an application that will be well-designed specifically for a tablet. Look at what they did for "pocket" computers, made scaled down lookalikes of their desktop applications and lied to the customers about them being "compatible" will Office (lossless round trip, anyone?).

      --
      Contrary to the popular belief, there indeed is no God.
  71. Why Transmeta? by TekkaDon · · Score: 2, Insightful

    Someone pointed out that Intel or AMD could underclock one of their chips and beat Transmeta's offerings to dead. Well, why go that far? A simple 600MHz IBM PowerPC 750CX processor delivers as much battery time while being a far more powerful processor. Today. Granted, it won't run Windows but, hey, it would be able to power a TabletMac (Unix on a table, what a concept), say, something like a Powerbook Duo with 10.3. What the heck, I bet an iBook running Virtual PC with a good amount of RAM would beat the pants out of a Transmeta.

    The truth here is that, unfortunately (?) Transmeta chips have _not_ delivered on their promise. Lots of hot air, but no goods delivered.

    Mr. Torvalds would be better getting a job at IBM, Sun or, heh, even Apple.

  72. Re:Aw man... by jericho4.0 · · Score: 2
    You're mostly right, but I take issue with 'they make it easy for people to develop for the platform'. The MS API is not easy to develop for, compared to others.

    Developers write for windows because that's where the money is.

    --
    "A language that doesn't affect the way you think about programming, is not worth knowing" - Alan Perlis
  73. The problem with tablets by Lord+Kestrel · · Score: 2, Insightful

    is the interface. Face it. A pen is not the easiest interface to a computer. Adding a keyboard takes up too much room, and using a virtual on-screen keyboard uses up too much desktop space.

    Until there is an effective, easy to use interface, tablet PC's will never be more than niche items. I've seen them put to good use in warehouses, and retail stores, but Symbol is already a giant when it comes to those markets.

  74. Re:Aw man... by banzai51 · · Score: 2, Interesting

    That's right. And Quicken won out. A better product can and does win.

  75. Table PC's are good for medical but what else? by sterno · · Score: 5, Insightful

    Except for a few limited fields, tablet PC's are really not ideal. They are well suited to any field where you need some portability, and expect to be doing more data viewing than entry. The field that is most obviously well suited to this is the medical field. There you have X-rays, tests, etc, that can all be loaded from a central server and you only need to make small annotations. You need some portability, but not much.

    The problem is that not many fields really fit that bill. You usually want either total portability or very limited portability (thus making the laptop or PDA a good choice). Furthermore you sacrifice a lot of your ability to do data entry on a tablet PC with only a limited gain in portability. A well designed PDA is actually far superior for data entry because I can use a thumb keyboard and enter data quickly. A tablet requires one hand to hold the thing, and then the other to do data entry.

    I've used them and I've found that, for the most part, they are solving a problem that I've never had. I suspect that it's a problem very few people have, so except in a few niche fields tablets aren't going to be a big thing. So buhbye transmeta.

    --
    This sig has been temporarily disconnected or is no longer in service
    1. Re:Table PC's are good for medical but what else? by CheechBG · · Score: 2

      that deserves a 5. I have used a laptop for school and other such things, and a PDA I currently have for when I want to jot down quick notes. I don't see how a tablet can solve any "problems", given that they are all solves by either tha laptop or PDA.

      Seeing as I can get a decent laptop for under 1500, and the CHEAPEST tablet PC will be 2000, I really don't see the value.

      I really think these will fall flat on it's face, for these reasons, and the ones stated in the parent.

    2. Re:Table PC's are good for medical but what else? by jdbear · · Score: 2, Interesting

      I spent three years working for a software company that specialized in tablet pc's for the pharmaceutical industry. Our program was wildly successful (within the small community that we supported.) Our software came in three flavors, one for laptops, one for pen tops (tablet PC), and one for the Sharp Zaurus. I preferred the Sharp, but most companies opted for the Laptop version. The Pen Top version worked better for the actual data capture application (we had a three page form that could be filled out by checking selections with a stylus, then a signature was captured in a box at the bottom.) The laptops were not able to capture the signatures, and took longer to fill out the forms, but they were cheaper and had color screens for playing Solitare.

      IF the Tablet PC's were available back then for the same basic cost as a laptop, there would have been only one version of the software. It would have been a no brainer. The app worked much better on the tablets, but they were slower and much more expensive than the laptops, so they didn't sell as well.

      Take this as a lesson, it doesn't matter that you have a better product, or that it's easier to use. If someone can get one almost as good for half the price, they usually will.

      JDBear

      --
      If you're not living on the edge, you're taking up too much space.
    3. Re:Table PC's are good for medical but what else? by squaretorus · · Score: 2

      I've used them and I've found that, for the most part, they are solving a problem that I've never had. I suspect that it's a problem very few people have, so except in a few niche fields tablets aren't going to be a big thing. So buhbye transmeta.

      Sitting back in your sofa watching TV while surfing the web on your lap without any moving parts (i.e. flapping lids on your laptop) seems kinda cool to me! This has to be a consumer item to succeed - not business.

      Consumers dont type - they read!

    4. Re:Table PC's are good for medical but what else? by ecloud · · Score: 2

      It's important to have a keyboard, but they will, won't they? If you can use it as a tablet but also pop up the screen to reveal a keyboard underneath, that's better than a laptop, IMO. (I'm thinking of the GRiD 2260/2270 design...)

  76. Re:Aw man... by q-soe · · Score: 3, Insightful

    Back in the late 90's that was how business was done and MS were not alone in it - there were other companies out there. As for commenting on companies who directly compete with MS going broke i would have to point out that Lotus managed it on their own - with no upgrades to a wheezing product they stuck users with 123 or office choices for too long and then brought out a buggy and unstable SmartSuite product which lost them most of the customer base they had remaining.

    --
    I refuse to argue with Anonymous Cowards - if you want a discussion get an account....
  77. I disagree. by mindstrm · · Score: 2

    Americans are very much interested in ultrathin tiny pcs.. if they are either a) cheap or b) really fast.

    The problem is, they tend to be a fair bit more expensive than the average normal notebook, and not as fast or feature rich, and not all that much smaller.

  78. Transmeta's problem revealed ... by beer_maker · · Score: 2, Funny
    Transmeta's chief executive, Matthew Perry, is the company's fourth in less than three years.
    Maybe if they had hired an executive, not that guy from "Friends" ...

    --
    Hmmm. Your ideas are intriguing to me and I wish to subscribe to your newsletter.
  79. Re:Aw man... by samdu · · Score: 2

    Actually, I think the point was that a business model that relies on any one company is shaky. Intuit, Visio, etc... don't necessarily need Microsoft per se, just any OS with a suffeciently large user base. This could be any OS. I will concede that Symantec and McAfee rely on Windows, though. ;) Actually, when the Amiga was at her height, the best anti-virus tools were free (as in beer).

  80. If Transmeta bust, where would Linus land... by deragon · · Score: 2, Interesting

    Ok, lets assume Transmeta goes down. Where would Linus land? I heard he is a millionnaire, so he actually does not need to work. But if such is not the case, where would you see him go?

    For a big corporation? IBM? Sun? A small one? RedHat? Lets start the rumors.

    --
    Remember the year 2000? They promised us flying cars. They delivered the PT Cruiser...
  81. WHAT Tablet PC revolution?!?!? by samdu · · Score: 4, Insightful

    I've said it before and I'll say it again. Tablets will only be successful in vertical markets. Sure, they may sell some at first because of the GeeWhiz factor, but writing on the screen is simply less efficient than typing. If Transmeta and/or Microsoft is/are pinning their futures on tablets, then a rough future it/they will have.

    1. Re:WHAT Tablet PC revolution?!?!? by istartedi · · Score: 2

      It's more than just writing on the screen. The tablets come with integrated wireless, they are supposed to be low-power enough so you can walk around with them all day, and when you need a keyboard you can sit the tablet down next to a keyboard (which may also be wirless) and type normally. No, I wouldn't want to write my graduate thesis with a stylus, but websurfing wirelessly and whipping out quick comments like this to /. might be fun. Then of course there is any situation where you are taking notes, like class, a press conference, or a political meeting. People won't just use their tablets in "tablet mode". This has the potential to be a very flexible technology and that's why it's great.

      --
      For all intensive purposes, "whom" is no longer a word. That begs the question, "who cares"?
    2. Re:WHAT Tablet PC revolution?!?!? by samdu · · Score: 2

      But the only thing that you can do with a tablet that you couldn't do with a standard laptop is write on the screen. Integrated wireless... Laptops already have it. Low Power... There's no reason that this couldn't be implemented more in normal Laptops. As for notes in class, typing is still faster. I still establish that it's a vertical market application.

  82. Transmeta needs microsoft... by Trogre · · Score: 2

    ... like a hole in the head.

    Transmeta, if you can hear me, don't do it!
    Signing a deal with an illegal monopoly will *not* help your business.

    Microsoft has demonstrated time and time again that everything they do is in answer to the question, "how will this benefit our stranglehold on technology?".

    They will swallow you up without a second thought and then mysterously release the "MS Tablet" a year or so down the track.

    Oh dear, there goes my karma.

    --
    "Nine times out of ten, starting a fire is not the best way to solve the problem." - my wife
  83. Re:Aw man... by Trogre · · Score: 2

    Review the history of OS/2 to see what happens when you rape the developers.

    What, you mean it gets stolen by a technology procurement company and turned into a product line called Windows NT?

    --
    "Nine times out of ten, starting a fire is not the best way to solve the problem." - my wife
  84. Re:Aw man... by Trogre · · Score: 2

    Tell that to Gateway and Dell.
    OK, I'll go tell them.

    --
    "Nine times out of ten, starting a fire is not the best way to solve the problem." - my wife
  85. LCD, HDD are the culprits by ChaoticPenguin · · Score: 2, Interesting

    The reason Transmeta failed in the laptop market is the reason they will fail again in the tablet market. For the average user, CPU is not the major power consumer. The screen and HDD are... unless researchers come up with better battery technologies (fuel cells?) and power conserving screen (with same brightness), Transmeta will be doomed.

  86. Re:Aw man... by Anonvmous+Coward · · Score: 2

    Your post begs the timeless question: "So?"

  87. Like Tivo? by yerricde · · Score: 2

    They need a product that is going to sell hundreds of thousands of units, or even millions of units to make production worthwhile. There's no Linux based product that's even remotely close to that.

    Welcome to No Linux Based Product Dot Com.

    --
    Will I retire or break 10K?
    1. Re:Like Tivo? by NineNine · · Score: 2

      Tivo's in danger of going under very soon because of such slow adoption. Not the kind of product that is gonna help Transmeta.

  88. Transmeta no match for Intel's resources by MtViewGuy · · Score: 2

    I think Transmeta probably would have succeeded a bit better if they had been able to produce a version of Crusoe that had the equivalent performance of the Tualatin-core Intel Celeron CPU running at 1,200 MHz. This level of performance plus the naturally-low power consumption of the Crusoe CPU would have made it possible for laptops running even Windows XP Professional that are fast enough for laptop users. Of course, such a CPU would be perfect for the Tablet CPU, too.

    But in reality, Transmeta really could not compete against the technological might of Intel. Remember, Intel not long after the Crusoe CPU was announced rapidly developed low-powered versions of the Celeron and Pentium III CPU's that didn't use that much more power than the Crusoe CPU, which really affected Crusoe sales.

  89. Replying from a Transmeta Tablet running Linux by Royster · · Score: 3, Interesting

    It works just fine here on my ProGear from SonicBlue. I'll be rebulding the OS and window manager sometime soon so that I have more applications.

    We doan need no steenkin' Microsoft.

    --
    I have discovered a truly marvelous sig, unfortunately the sig limit is too small to contain i
  90. Re:Aw man... by zapfie · · Score: 2

    If MS wants to give me billions for my company, I'd have no problem with it "ceasing to exist."

    Then you must not be doing something you truly love with all your heart.

    --
    slashdot!=valid HTML
  91. Who missed the boat? by SomeOtherGuy · · Score: 2

    Living in a portable, and unplugged environment day in day out -- it perplexes me how something that can go 10+ hours unplugged is not rolling in more money than one can imagine. By far our biggest issue is battery life. All of our devices are currentlly hardened -- can withstand a drop from a car onto concrete, withstand temps of -30 and +120, etc... etc.. etc.. and guess what I talk to the vendors and tech reps from all of these companies and guess what -- they have hardly even heard of the crusoe, let alone are they investigating anything that does not start with I and end in TEL....talk about thinking outside the box. Why do so many (seemingly) killer products end up never breaking through?

    --
    (+1 Funny) only if I laugh out loud.
  92. Oh look another juicy unspoiled Virgin! by CyberGarp · · Score: 2, Insightful

    Hey there lovely lady, what's your name?
    Transmeta.
    I'm Bill.

    And thus another tragic sad story ensues.

    --

    I used to wonder what was so holy about a silent night, now I have a child.
  93. Re:If this tablet revolution is so overdue.... by jpmorgan · · Score: 2
    Apple has the eye candy, but they don't have the basic research into voice, handwriting recognition and other UI topics that others (such as Microsoft) have spent millions on over the years.

    Handwriting recognition has been one of the big things holding tablets back. I've played with the TabletPCs a bit, and I think MS may have just got that problem solved, though... still, while they have the details right, they're still missing something in the form department. It should look more like a PocketPC than WinXP, IMHO.

  94. Re:If this tablet revolution is so overdue.... by BWJones · · Score: 3, Insightful

    Apple has the eye candy, but they don't have the basic research into voice, handwriting recognition and other UI topics that others (such as Microsoft) have spent millions on over the years.

    Excuse me?!!? Is this a troll? Well, I guess I will bite. Despite Microsofts spending over the years, they STILL have not come to where Apple has been for years. I submit that I used voice recognition back in MacOS 8.1 including the ability for scripting of voice recognition. As far as handwriting recognition, I have a Newton 120 that had much better handwriting recognition than the latest Microsoft Tablet PC prototype that I played with two weeks ago. And I got the Newton 120 back in 1994!

    You appear to be buying into Microsoft's marketing dis-information by allowing them to lead you to believe that all the money they spend on R&D makes them true innovators. Did you know that marketing $$'s come out of the Microsoft R&D budget?

    Like it or not, if you look at innovation in the personal computing market, Apple has introduced most of the real advances. True they did not invent everything, but they were the first computer company with the balls to integrate many of these technologies. Lets go back to the CD-ROM. Apple was the first computer company to install CD-ROM drives in PC's and paid the price by getting sued by Apple records for their trouble. Do you remember installing big programs like Office before the CD? How about plug and play computing? You only have to look at the NUBUS protocol that eliminated all of the futzing about with DIP switches and such to get say a video card to work in your computer. How about Firewire? USB? The GUI? Drag and Drop software installation? Built in networking? Built in color for the video? Multiple monitor support? I could go on and on here, but I think you get the idea.

    As a microsoft shareholder, I am not happy with the way they are doing their accounting and I believe that they are using a large amount of R&D expenditures as tax write offs rather than performing real R&D. Furthermore, this is a company with $40 billion in the bank and they STILL have yet to pay a dividend.

    --
    Visit Jonesblog and say hello.
  95. I left Transmeta June 2001 by ddt · · Score: 5, Insightful

    What they needed then and need now is a comprehensive, grass-roots developer support program and to get humble quick about the power and performance.

    It's a nifty freaking technology, and it was a LOT of fun to play with. Did you realize that the Crusoe during the launch party was the fastest native picojava bytecode processor in the world? Did you realize that had they exposed an interface to CMS (code morphing software), that someone out there could have written a PowerPC personality for it, allowing it to run both x86 and PPC apps at the same time? Can you imagine what else you could do with access to this incredibly powerful, real-time, back-end compiler? Did you realize that you could decode, issue and retire two integer ops and an MMX or fp op on every cycle, the same decode rate as a modern Athlon and a faster decode rate than the P4? Did you realize that all the tech is in place to allow you to download CMS upgrades that vastly improve performance? Did you know they have a perf monitoring tool that puts vtune to shame? Did you know that using gdb connected as a cross-debugger, you can hit "ctrl-C" in an NMI handler or anywhere else and get a complete dump of the internal processor state, including numerous perf statistics?

    Tip of the iceburg for the current core, and their next generation architecture (TM8x00) is SO MUCH COOLER. Like hella-cool with chocolate sauce.

    But you probably didn't know any of this because they don't think developers are their #1 customers. Someone there needs to watch Ballmer do his developer dance.

    Crusoe's are cool. Transmeta was cool, too. Working there was like working down the hall from about a dozen John Carmacks. You could walk into any one of these offices and be blown away by what they were working on. They were crossing real-time translation and optimization bridges that Intel won't be getting to in years but will eventually have to face.

    Microsoft learned long ago how important developers were. That should have been the main market to chase. Crusoe wasn't ready for the masses, not by a long shot. The performance is catching up with a vengeance with every new core, but they made so many promises and IPO'd on so much hype, that they entered the classic promise debt trap that so many dot-coms fell into, and their lofty marketing plan claiming that benchmarks are "wrong" (please!) and that it offers this brilliant power savings are just goofy.

    Had they remained lean, not staffed up to 400+ people from the 150ish they had when I joined, and stayed quiet, humble, and in the service of developers until developers helped propel them to mass marketability, they would not be the laughing stock they are today.

    Yes, they hoped to be faster than "native" x86 based computers by morphing to VLIW, but what they didn't realize was that there would be a terrible price in instruction bandwidth. They ended up with a lemon, made lemonade, then added red food coloring and called it wine.

    If they exposed an API to CMS, I think they would be truly impressed by the tricks that independent developers could come up with to compress their own instruction stream to make the compression ratio competetive with x86 code footprint.

    Do you realize that's really the main performance problem with Crusoe? The instruction bandwidth! On average, x86 instructions, because they're variable width and byte granularity, are 6X smaller than the average Crusoe instruction, which is made up of two or four 32-bit atoms in the current architecture.

    OK, that's too darn bad, but it's the youngest surviving newcomer to the x86 market, and this is a solvable problem, and "with many eyeballs, all problems become shallow," once said a bright chap who ought to put his foot down and say it again.

    Tablets: I made the demos that ran on tablets for their shows and IPO roadshow. They're cute, fun, no market for them yet, but again, something to get in the hands of developers so that they can make killer apps to create a market for tablets.

    1. Re:I left Transmeta June 2001 by 0x0d0a · · Score: 2

      Developer features have indirect but very far-reaching trickle-down effect. If we were all still using 1980s-vintage dev tools, software would suck much, much more than it does.

  96. Joe Consumer won't buy it by Infonaut · · Score: 2

    Actually, I'm aware of the whole swiveling LCD trick of Tablet PCs. It's quite spiffy, but I still don't buy the idea that people are going to want to shell out the extra bucks for it. In particular, the writing tablet might be good for taking notes. But I still don't think people will see note-taking ability as a reason to buy an entirely new piece of hardware.

    The Franklin Planner crowd will love it, but most people are simply not interested in being that organized, particularly when you know even the most sophisticated handwriting recognition software Microsoft can come up with will leave you with some misspelled and unreadable words in your notes.

    Seriously. Look at the people you live and work with and tell me that they'd all love to fork out several hundred bucks for a machine that would let them do some of what their laptop does, with the *oh goody!* added bonus of being able to take notes. It won't fly.

    --
    Read the EFF's Fair Use FAQ
  97. Re:Aw man... by Helter · · Score: 2

    Thank you. I had the extreme displeasure of administering an OS/2 infested network in '96. I would have broken kneecaps to get rid of it.

  98. Ehn. Wrong. They paved the way... again. by solios · · Score: 2

    Plaintalk and the Newton. End of story.
    I could give my iMac voice commands in 1998, and the software had existed for several OS revisions prior to that. Shipped default install, no less.

    The Newton... is another subject entirely. Light years ahead of its time, with handwriting recognition that still spanks the Palm resoundly- I much prefer writing in my own hand instead of learning Grafitti, thank you.

    Do some research, you'll get body-checked less often. :)

  99. Exactly! by solios · · Score: 2

    It's horrid to see what could easily be the swiss army knife of multi-platform software development be used in something that's buzzword compliant.

    So much for thinking outside the box, eh? Hell, I'd LOVE a rack of these on a PCI board to accellerate photoshop, After Effects, etceteras.... the company that made the board would could have it be ppc on the mac and x86 on the PC.

    I could *use* Transmeta chips.... but I have no use for a tablet PC or a PC laptop. :(

  100. Gotta check ya on one thing.... by solios · · Score: 2

    ....USB is an intel spec. :)

    However, you're spot on with your point that while Apple doesn't invent a lot of this stuff (Firewire, yes. But the rest? Well, poke around...)- but they ARE the first to actually weild it and get people into it. If it hadn't been for the iMac, USB would still be a niche technology.

    Apple has the power to totally push the technology- through virtue of being able to move faster than the rest of the market, due to their smaller size and much more satisfied consumer base. (I have eleven Macs at home....).

  101. Re:Transmeta and a non-American approach by q-soe · · Score: 2

    most countries consider defence to be important - sure it might not seem it to us but still there is an argument. Oh and most third world countries are not dictatorships.

    --
    I refuse to argue with Anonymous Cowards - if you want a discussion get an account....
  102. Err... by 0x0d0a · · Score: 2

    Rasterman is probably one of the better examples of a skilled to-the-metal coder you're going to find. If gcc is generating comparable code, I'm into that.

    gcc is supposed to be really good these days. I still think that it has *awful* C++ *compilation times*, but in terms of generated code...MSVC used to beat the crap out of it, but today I think it may generates some of the best, if not the best (and this includes icc), code of any compiler you can get your hands on for the x86. Not sure how good the SPARC/PPC/etc backends are -- I hear much more complaining about them.

    I haven't seen any ultra recent benchmarks (if anyone's up to doing some benchmarks, please post 'em to Slashdot).

    I think gcc is probably about as fast as you can push a C compiler -- to run any faster, we need more restricted languages to give the optimizer more guarantees about what's going on.

    1. Re:Err... by 0x0d0a · · Score: 2

      I wish the chip manufacturers would get in on it.

      I don't understand why Intel even tries to make money from their compiler. Their big cash cow, by far, is their chips, not their compilers sold to some tiny dev market. It seems like it'd do them more good to have fast support for new features in their chips in gcc *quickly* in terms of getting people saying "Wow, the P5 is really fast".

      Say Motorola or IBM runs out and puts a compiler guy or maybe two full time on the gcc PPC backend. It makes their chips look a hell of a lot better...

      It must be awful to be a chip designer and design this perfectly good system that a compiler could take advantage of to make code that runs really quickly...and then have most people use compilers that take their time about getting around to supporting these new, performance adding features on the chip.

  103. I think they might catch on by 0x0d0a · · Score: 2

    The problem is that existing apps aren't really done up for them.

    But there is potential.

    * e-books (the obvious, really big market).
    * web browsing (maybe, *just maybe*, tablets will help move us back to a saner age without all this Flash and Javascript crap)
    * some games, like board-style with the system sitting between the players. I remember handing a PDA back and forth to play chess -- something like this

  104. Why MS likes tablet PCs by 0x0d0a · · Score: 2

    MS needs a market for XP embedded/CE.

  105. You could be right by Infonaut · · Score: 2
    Perhaps I've become too jaded and cynical. I've just seen so many hardware items pitched as the Next Big Thing over the past couple of decades. It just seems to me that adoption of new form factors for computers really takes a long time, and getting consumers to try something new is like trying to wring blood from a stone.

    I may end up having to eat my words if the Tablet PC takes off in the next two or three years. You'll of course be able to track me down and tell me you told me so. :-) Of course, since you're an Anonymous Coward, I can't do the same if they fail. ;-)

    --
    Read the EFF's Fair Use FAQ
  106. Re:If this tablet revolution is so overdue.... by BWJones · · Score: 2

    I normally refrain from replying to anonymous cowards, but here goes:

    Ya but compared to other third party systems on Windows or even OS2 the bundled Mac app was piss poor.

    Well, it seemed to work pretty well as I could navigate quite nicely without having to touch the keyboard. And as for third party products, Ya, but where were they when MacOS 8.1 was out? Did you see Microsoft integrating any of that technology at the time? Hell no, Win95 was just coming out.

    As for handwriting recognition true the Newton was and still quite possibly is the best natural writting recognition system yet things like Palm's Grafitti system have become dominant.

    For reasons entirely independant of the handwriting recognition technology. So what is your point here?

    Remeber if over 80% of the masses don't use or see your tech, they won't care.

    Ahhhh, but I maintain they DO see the technology because Microsoft and other Wintel manufacturers copy it. (Often badly at that)

    (although the switch campaign was pretty poor)

    That is an opinion, and you know what they say about opinions.....

    Finally if you really are concerned as as you seem about acconting at MS why not place your money into Apple?

    You assume a lot. Who says it is not?

    I rest my case.

    And What case is that? I see no facts here.

    --
    Visit Jonesblog and say hello.
  107. Really? by sterno · · Score: 2

    Blogs... Instant messaging... Have you seen how much of on-line interaction these days circles around things that require substantial text input to use. Sure, I might occasionally just go out and surf, but is anybody really willing to go and blow another $1000 on computer equipment to do that?

    The funny thing is that the people who are most likely to be willing to blow $1000 on a whiz bang gadget are the ones least likely to find a tablet PC useful. Tech savvy consumers, are the ones who are more likely to be blogging and IM'ing people which would be a pain in the butt to do with a tablet PC.

    Furthermore, if I want to surf while sitting on the couch, a laptop is an excellent form factor frankly. I tried using a tablet (yes, I have one) on the couch and it's a pain because I have to prop it up somehow so that I can read it. This means sitting at strange angles and I can't shift around very much. On the other hand, a laptop, I just plop it on my lap, flip up the screen and I can sit anyway I want.

    --
    This sig has been temporarily disconnected or is no longer in service
  108. Re:Aw man... by Anonvmous+Coward · · Score: 2

    Compaq definitely made lots of money from MS. Packard Bell, well they just sucked.

  109. Re:Aw man... by Trogre · · Score: 2

    Except that OS/2 was originally a joint venture by IBM and Microsoft. When MS figured they could use the code elsewhere, they gave IBM the big one-fingered gesture, and made their own version called Windows NT.

    Why do you think there was ever an emulation layer? The underlying technologies are very similar, so emulation was trivial (though I'd still argue that OS/2 Warp handles pre-emptive multitasking better than Windows NT 5.1).

    "Microsoft has not changed any of its plans for Windows. It is obvious that we will not include things like threads and preemptive multitasking in Windows. By the time we added that, you would have OS/2." - William Henry Gates III, 1990

    --
    "Nine times out of ten, starting a fire is not the best way to solve the problem." - my wife
  110. Re:Aw man... by Da+VinMan · · Score: 2

    Well, Microsoft did give away Money 95

    Yup.. they did. And I've still got that zip file ferreted away on my hard drive. ;+) My wife won't use newer versions of Money. She just uses the planning wizards anyway for what-if type stuff; we don't use that online payment/statement junk they offer.

    --
    Please mod this post only if you think others should/n't read this. I have enough ego^H^H^Hkarma. Thanks!