Ask Slashdot: Where Can I Find Resources On Programming For Palm OS 5? 170
First time accepted submitter baka_toroi (1194359) writes I got a Tungsten E2 from a friend and I wanted to give it some life by programming for it a little bit. The main problem I'm bumping up against is that HP thought it would be awesome to just shut down every single thing related to Palm OS development. After Googling a lot I found out CodeWarrior was the de facto IDE for Palm OS development... but I was soon disappointed as I learned that Palm moved from the 68K architecture to ARM, and of course, CodeWarrior was just focused on Palm OS 4 development.
Now, I realize Palm OS 4 software can be run on Palm OS 5, but I'm looking to use some of the 'newer' APIs. Also, I have the Wi-fi add-on card so I wanted to create something that uses it. I thought what I needed was PODS (Palm OS Development Suite) but not only I can't find it anywhere but also it seems it was deprecated during Palm OS's lifetime. It really doesn't help the fact that I'm a beginner, but I really want to give this platform some life. Any general tip, book, working link or even anecdotes related to all this will be greatly appreciated.
Now, I realize Palm OS 4 software can be run on Palm OS 5, but I'm looking to use some of the 'newer' APIs. Also, I have the Wi-fi add-on card so I wanted to create something that uses it. I thought what I needed was PODS (Palm OS Development Suite) but not only I can't find it anywhere but also it seems it was deprecated during Palm OS's lifetime. It really doesn't help the fact that I'm a beginner, but I really want to give this platform some life. Any general tip, book, working link or even anecdotes related to all this will be greatly appreciated.
Not worth it (Score:5, Insightful)
Don't waste your time. Learn iOS, Android or some other platform that isn't dead.
Re:Not worth it (Score:5, Insightful)
Yes this. Especially Android. Since it is Java based you can use that knowledge to program server side apps as well.
Programming for an OS without memory protection is a nightmare.
Re: Not worth it (Score:5, Informative)
Android Java knowledge is reusable for... Server side development?
The biggest time suck for learning a new platform is the platform itself, not the language. If we're comparing platforms, Android is like programming on the moon, and server side development is like programming on Saturn. A new programming language should only take a week or two to learn. The platform takes years. Android doesn't have much in common with a web platform. Unless Tomcat got an API to do mobile UI and touch handling, and Android got an API for failover and distributed services, they don't really have much in common at all.
If a developer is scared to cross to any platform because they don't want to be multi-lingual, they're doing it wrong. Java, Obj-C, Swift and C# are all pretty much the same thing, just with some syntax changes. Heck, there is even a family tree there. Java was based on Obj-C, and C# was based on Java. Swift is based on all of them.
Don't repeat yourself in a multilingual project (Score:2)
If a developer is scared to cross to any platform because they don't want to be multi-lingual, they're doing it wrong.
An application can be separated into logic and presentation, or model and view [wikipedia.org], however your framework prefers to describe them. A program may require separate presentation for each platform, but versions of a program for multiple platforms should ideally share the logic. But some platforms strongly recommend or even require use of certain languages. How can a programmer follow the rule of not repeating yourself [wikipedia.org] to share logic across languages? Say I developed a game in Java or Objective-C but I want to por
Re: (Score:2)
An application can be separated into logic and presentation, or model and view [wikipedia.org], however your framework prefers to describe them. A program may require separate presentation for each platform, but versions of a program for multiple platforms should ideally share the logic. But some platforms strongly recommend or even require use of certain languages. How can a programmer follow the rule of not repeating yourself [wikipedia.org] to share logic across languages? Say I developed a game in Java or Objective-C but I want to port it to a Microsoft platform that allows only C#. (In theory it allows any language that compiles to verifiably type-safe .NET Compact Framework bytecode, but in practice that means C#.) How would I go about making and maintaining that port so that fixes to defects in the logic of the version on the original platform propagate to the version on the Microsoft platform ?
I don't think writing logic should be a gating factor that keeps a developer from using the right tool for the job, or keep a developer or a community locked in single language programming hell. There are edge cases (I've worked on an Android/iOS app that kept a bunch of code in JavaScript because it runs on both), but this doesn't even make the answer automatically "Java". I could very well say that developer should just go learn JavaScript because it runs on everything.
But more to the point, I don't usual
Re: (Score:2)
I don't usually see server architectures and client architectures sharing too much in the way of logic code
Input validation logic and any logic related to offline use needs to be the same (or at least provably identically behaving) on server and client.
Re: (Score:2)
I don't usually see server architectures and client architectures sharing too much in the way of logic code
Input validation logic and any logic related to offline use needs to be the same (or at least provably identically behaving) on server and client.
I don't buy that's a reasonable excuse to force the client and server to be the same language.
First off, I don't buy that a client necessarily needs to do validation at all if the server is doing it. In fact, if you're doing complex validation on the client end, I think that is a Bad Thing (TM). What if your validation is wrong? Well you could just fix your server. But now your client's validation doesn't match, unless you're going to go around and force all your clients to update. Maybe at gunpoint or some
Re: (Score:2)
But now your client's validation doesn't match, unless you're going to go around and force all your clients to update. Maybe at gunpoint or something. Who knows.
Online games won't play unless at the latest patch level, for example.
offline use
if you need to do complicated validation why the heck are you doing it on the client? Just send it to the server
Because the user is using the application during a 2-hour period of having no access to the Internet.
and then let the server return an error
So your suggested workflow is just to let the user enter grossly invalid data for two hours then have the server present pages of error messages once a connection is reestablished.
Again, if this is the metric we're working on, I could just take it up one level and say everyone should learn JavaScript instead of Java
Hence the growth of Node.
Re: (Score:3)
Even if your code is perfect, you still run the risk of having the other guy's program start scribbling over yours unless you feel like re-implementing absolutely everything whose behavior you don't entirely trust.
Re: Not worth it (Score:4, Funny)
Seriously agree 100%.
Find an open source project that could use coders.
Heck, I hear Linus is pretty upset about the kernel right about now.
Re: (Score:3)
This is Slashdot, right?
This is the last thing I expected to find here.
Re: (Score:2)
Every once in a while you can find good advice here... On first glance I agree with you but there's a tidbit at the end of TFS that led me to this place as well: "It really doesn't help the fact that I'm a beginner, but I really want to give this platform some life"
He may be able to give some life to his gifted device but he's never gonna breath life into the "platform". It's dead Jim. I fully support a beginner wanting to play with interesting things that currently being the Palm device he was just gift
Re: (Score:2)
Re: (Score:2)
Nothing a hard reset didn't fix.
Be ready for a lot of frustration (Score:5, Insightful)
PalmOS is a rather antiquated system. No memory protection, no native multitasking, clunky APIs...
Depending on your personality type and the coding experience you have, it's either going to be a TON of fun, or you're going to want to smash and break things on the very first night.
Or maybe both. :) I don't have any pointers, but as a former Palm OS user, godspeed.
(Palm IIIxe from 2000-2005, Palm Treo 650 from 2005 to 2009)
Re: (Score:2)
I remember my PalmIII fondly. And my Palm V that replaced it. And my Zire, that was the last one I had (although the V had some niceties the zire did not). Or maybe I'm just remembering them for what they were then, and not compared to iOS and Android. I bet if I booted the old PocketPC in my desk I'd go nuts (and not in a good way)(PocketPC 2003).
Re:Be ready for a lot of frustration (Score:4, Interesting)
Palm had one thing going for it, at least in the early days: excellent battery life. With no wireless, no background serivces, and no traditional backlight, battery life was measured in days—or weeks—or months!
While they don't hold a candle to modern devices in every other respect, I loved being able to tap away at the thing forever without ever worrying about finding a charger. And the EL backlight [wordpress.com] was pretty darn cool (though it made you really hate dimly lit rooms)...
Re: (Score:2)
You've got to be kidding. My Palm III ate batteries like a fiend. I was lucky if they lasted a week, and I hardly used the thing. I'd guess I got about 6-7 hours of functionality out of a set of batteries. And I'm not talking rechargeables, but good quality alkalines.
Re: (Score:2)
In my experience the power consumption of the Palm III varied significantly. I think there was a switchmode power converter of some sort in it, and it could be good or very, very bad, depending on individual device. Probably related to the capacitor in it. That's how I vaguely remember it, anyway.
Re: (Score:2)
Re: (Score:3)
Re: (Score:2)
Also the UI was really good for getting things done quickly....
it was an organizer first and foremost which today's multi-functional devices are not and hence they always suffer for some form of identity crisis.
Re: (Score:2)
I had an old Handspring Visor, Palm Treo and Centro. I came here to say this.
I had the IDE for a while. No multitasking (you could have timers that ran background tasks) and you could read/write directly into other programs' memory spaces. It was so easy to crash that OS. It's seriously only a few levels above MS/PC DOS with a really crappy C API. I'm really glad we're so far past those devices.
Re: (Score:2)
Try (Score:3)
http://www.rahul.net/flash/spu... [rahul.net]
http://forums.delphiforums.com... [delphiforums.com]
Re:Try (Score:5, Funny)
SPUG: "The group is on hiatus."
The most recent "previous meeting" mentioned was 12/5/2006, and there's a link at the bottom that says "Palm is hiring" if you want a hint of when that page was last updated.
Even the link to the article about the death of Palm is two years old now. Seriously man, it has run down the curtain and joined the choir invisible.
Re: (Score:2)
Seriously man, it has run down the curtain and joined the choir invisible.
THIS IS AN EX-PLATFORM!!
Re: (Score:2)
Are you sure it's not merely pining for the fjords?
Re: (Score:3)
Re: (Score:3)
Re: (Score:2)
Where Can I learn (Score:2, Insightful)
Where can I learn how to send smoke signals?
Why? (Score:4, Insightful)
It's hideously slow and limited by today's standards, the standards are horribly out of date (802.11b anyone?) the ten year old battery is surely shot, and the platform is dead, dead, dead.
If you're looking for a cheap hackable device, get a no-frills Android tablet. If you're looking to get into mobile development, get any decent smartphone.
Still, if you really want to work on that old Palm, you should still be able to find the Garnet OS Development Suite.
Re: (Score:2)
Still, if you really want to work on that old Palm, you should still be able to find the Garnet OS Development Suite.
I'm looking for it but can't find a working copy. Most of them point to www.accessdevnet.com which looks like just a Wordpress front end for some random posts.
prc-tools (Score:5, Informative)
Writing ARM-native code on Palm OS 5 was never easy. I used prc-tools and Peal to write pssh (which needed ARM-native code for fast crypto and terminal emulation).
http://prc-tools.sourceforge.net
http://sealiesoftware.com/peal/
http://sealiesoftware.com/pssh/README.code
Re: (Score:3)
wow an actual response to the question, mod up.
also some guys were telling him to just learn java.. there's a java vm available for palm os 5
http://thepiratebay.se/torrent... [thepiratebay.se]
Re: (Score:2)
Also, Palm OS Companion (Score:3)
The main difference in OS5 was the addition of "PNOlets", chunks of native ARM code. Chapter 14.
It's still tricky. When I ported Palm's OS4 emulator to Android, I had to do some library coding and tracking down sample source code was... nontrivial. Definitely look for open-source Palm programs, like pssh, and learn from them.
And Palm OS Programmer's API Reference (Score:2)
Retroactive: Thanks (Score:2)
Oh, you're the author of that ?
Thank you, man.
I used your soft back then and liked it !
Check your local library, or Amazon (Score:5, Informative)
My local libraries all have tons of outdated (5- to 15-year-old) books on a variety of computer subjects. You just might get lucky and find the one you need at yours.
Or, check Amazon. Lots of people list lots of useless old books for basically nothing plus shipping. First hit for "palm os programming" is this [amazon.com] meaty tome, from 2002, for 30 cents plus $3.99 shipping. Bang, zoom, $4.29 later, you're set. Palm OS Programming for Dummies [amazon.com], 22 cents plus $3.99. Whatever version you need is out there somewhere.
And they usually come with interactive CD-ROMs. Interactive, my friend. Check the descriptions on Amazon and make sure they're included.
Re:Check your local library, or Amazon (Score:5, Informative)
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
Most of the Palm programming books with a CD bundle shipped a copy of Code Warrior Lite. As already mentioned in the summary, that's not really useful for Palm OS 5 development work.
I don't think this poster was completely serious though. But they were very interactive.
What you're doing is akin to learning Latin (Score:2)
Latin is a dead language, dead as can be.
Some previous posts mention other current platforms. Try those. Palm is dead.
side note. a 2E that sill works? Mine died years ago.
Re: (Score:2)
Re: (Score:2)
And broadcasting the world news in Latin [ohjelmaopas.yle.fi] too...
Re: (Score:2)
too funny for words. amazing.
Re: (Score:2)
archeology (Score:5, Funny)
I'm pretty sure they were written in cuneiform on clay tablets, so you might want to learn the language of the Anunnaki
I might be wrong. Maybe they were written in Middle Egyptian on papyrus.
Either way, you could start by asking a very very old nerd. If you can find an old pay phone, wait for someone with long greasy grey hair to pick it up and start whistling into it. Make sure you have some jelly worms on hand, but not the green ones.
Re: (Score:2)
Luckily there's an entire guide available to stalking the wily hacker [textfiles.com].
Too soon (Score:3)
Come back in 10 years when it can be called a "classic" platform.
Good luck (Score:4, Interesting)
The best thing about Palm was the task manager (Score:4, Interesting)
If someone would code that for iOS i'd pay. It was the best to-do list application ever.
Apple's Reminder's is so useless I can't imagine why any effort was expended coding it.
Re: (Score:2)
Yeah, me too. Currently using Todo.txt for Android, which is alright, while writing my own based on the Palm staple...
I still have Palm Treo ringtones if anyone wants (Score:3)
Reach out to me.
Once my phone went off and an older man next to me began roaring with laughter when he heard the Treo ring tone. Ah well, it was great in its day.
You could try CASLsoft 4.3 (Score:2)
Sure (Score:5, Informative)
Since you're a C guy, there's http://onboardc.sourceforge.net/ [sourceforge.net] that compiles right on the Palm Pilot. A bit tough by modern standards, if there's an API call you want that's not in the standard header file you have to find the ROM address for it and put it in yourself.
Much easier but of course limited is http://smallbasic.sourceforge.net/ [sourceforge.net] which runs on Palm OS and has a lot of little games in the forums.
Not exactly what your asking for. (Score:2)
Re: (Score:2)
I ran Linux (OE) on my Zire 72 back in the day. As you say, not quite useful; slow and with few utilities (and running X was a bit overkill on that platform). But I could say to my nerdy friends that I ran Linux even on my Zire. And now I can tell my nerdy son that I ran Linux on my Zire. And in time I will be able to tell my nerdy grandson that I ran Linux on my Zire.
Re: (Score:2)
Found where I got my Linux-for-Zire:
http://l4p.hackndev.org/ [hackndev.org]
Hopefully you;ll find some help here (Score:5, Informative)
Check out Code Project - lots of great articles on Palm programming: http://www.codeproject.com/sea... [codeproject.com]
Go to Sourceforge - it may take a while to pick through the weeds, but you should find some useful projects to examine the code:
http://sourceforge.net/directory/os%3Apalmos/?q=palm&sort=update
C programming for Palm: http://onboardc.sourceforge.ne... [sourceforge.net]
http://www.vb-helper.com/review_palm_ides.html -- a review of Palm IDEs - may give you some ideas
http://porganizer.sourceforge.net/ -- Palm Organizer has the essential files for creating a Palm program if you look at the bottom of the page
Try the 1stSource forums, check out the menu on the left for various Palm models and you'll be sure to find some useful info:
http://www.1src.com/forums/forumdisplay.php?f=156
For some fun - and perhaps some code to review:
http://sourceforge.net/projects/phoinix/ -- Gameboy emulator for Palm
http://sourceforge.net/projects/palmapple/?source=recommended -- Apple II emulator for Palm
More emulators to consider: http://the-gadgeteer.com/2004/... [the-gadgeteer.com]
http://www.codejedi.com/shadowplan/castaway.html -- Atari ST emulator
http://frodopalm.sourceforge.n... [sourceforge.net] -- commodore 64 emulator
Good luck and have fun!
Don't. (Score:3)
Take a look at some Palm code.
If the hideous restrictions and limits there don't put you off, then find out what they recommend to compile.
Flashy IDE's probably aren't going to be easy to find, there weren't many around in the first place and the majority of stuff I know is just command-line compilers which can plug into any IDE (if you're brave enough).
All I remember of Palm coding was having to break C files into tiny parts, jam them together and hope the individual object files never went over a certain size because the linker had to play all kinds of tricks to load them.
Take a look at something like this:
http://www.chiark.greenend.org... [greenend.org.uk]
The base code of which is generally easy to port (Simon Tatham's PORTABLE Puzzle Collection). That Palm version is quite a pain to compile even with the right tools.
SDK available here: (Score:3)
SDK available here:
http://gl.access-company.com/p... [access-company.com]
Perhaps next time you will read the acquisition history for the software you are trying to find in the Wikipedia article, and then go to the OpenSource/Downloads section of the company website for the current owner of the technology yourself?
Re: (Score:2)
here is the sdk... (Score:2)
http://www.mediafire.com/downl... [mediafire.com]
Didn't download this myself, so I don't know if the docs are in there too.
Nice trip through memory lane, but go for Android (Score:2)
I wrote an app almost 10 years ago . Just looked through the code a bit. It says "Build with PRC-Tools 2.0 and Palm OS SDK 4.0 or better". Written all in C++. Most of my work I did in a simple text editor. Not in an IDE. And I used makefiles I wrote myself and a command-line to compile the lot. I remember compiling for the m68k mostly because that would cover all our potential customers. But there was already ARM support in the works... until we just dropped it. We had too few sales to warrant further devel
If you want to code for a dead platform.... (Score:2)
If you wanted to write code for a clumsy dead platform, why not the Apple Newton? Far cooler and more interesting. At least the Newton is the same CPU architecture.... just with a much better OS, 2 PCMCIA slots and a bigger screen.
Hell, even the Atari 8-bit is more interesting than a piece of crap from Palm.
Seriously, PalmOS sucks. I've written a couple things for it in the past and I wish I hadn't.
Once again... (Score:2)
Re: (Score:3)
Don't get me wrong, maybe they're right and I sho
Re:Dear Slashdot (Score:4, Insightful)
Many times I've seen pieces of news about Amigas and usually they're warmly received (are they not outdated?).
The Amigas are outdated. However the stories are warmly recieved, because Amiga has been popular, and lots of people still have one in their basement. Palm OS wasn't this popular. People love their Amigas, Amiga became a part of culture. This has many reasons, not just popularity. The fanboy group for Palm OS is smaller but I doubt it doesn't exist. Its not mainstream culture though.
I don't know why you shouldn't "waste" your time learning about a dead platform. As long as you see it as your hobby. Some people like reenactments, and dress in historic uniforms to "play" historic battles. Others know every part of the steam engines used from 1860 to 1892 by Santa Fe. So why not Palm OS?
Re: (Score:2)
I don't know why you shouldn't "waste" your time learning about a dead platform.
I think the only reason why not is that time is a finite and limited commodity and if you spend it on one thing then you can't spend it on another thing.. people are saying if you're going to learn something new and arcane you might as well learn something that they deem more applicable. this is ultimately them speaking about their own life limitations like kids or what not; obviously you (you, the submitter not you the parent) are the only one who can make that decision about yourself. But I believe that t
Re: (Score:3)
PalmOS was more popular than the Amiga. At one point about 90% of smartphones [palminfocenter.com] were based on Palm software, and by 2000 [getfilings.com] they had already sold more than 7 million units--compared to roughly 6 million Amigas across its entire lifetime.
The only Commodore computer that outsold Palm was the Commodore 64, with 22 million units. The main reason Amiga seems like a much larger influence than Palm is that overall computer sales were so much smaller when it was active. 6M computers in the late 80's/early 90's was a
Re: (Score:2)
I would really have liked a PalmOS cart for my Nintendo DS ; the form factor would have made it an awesome little organizer, it had a touch screen, etc, and the CPU power would probably have been good enough to run the original OS ROMs in an emu.
There were rumours of it happening (maybe I even started them by discussing it on BBs...) but alas, it never came to be.
One thing I really liked about the PalmOS stuff, which other software suites took ages to catch up with, was the way they all integrated. Some of
Re:Dear Slashdot (Score:5, Informative)
See, old stuff that *they* like is important. Working on that stuff is a great idea.
Working on old stuff that they don't care about is clearly a waste of time.
Anyhow, here's a start for you: GCC PRC-Tools [sourceforge.net] Which is likely what you want. Ron's Obsolete Palm OS Computing Information Page [nicholson.com] has a working link to HotPaw, which is better than nothing.
You'll also want to take advantage of the Wayback Machine [archive.org] to see what's behind all the dead links you're surely running in to.
Re:Dear Slashdot (Score:5, Informative)
You are 100% right in criticizing me. Actually, I wasn't expecting this to get to the frontpage.Nonetheless, I thought Slashdot was the best place to ask. Many times I've seen pieces of news about Amigas and usually they're warmly received (are they not outdated?). I'm wondering why so many people are saying stuff like "let it go", "it's useless", "learn a language." Other people are linking me to LMGTFY as if I haven't spent hours looking for working links.
Don't get me wrong, maybe they're right and I shouldn't spend/waste my time learning about a dead platform, but at least I'd like to hear their rationale.
Because Amiga, C64, Early DOS and UNIX's were great and successful. For me, all that stuff was my childhood and messing around with it is like going to a garage sale and finding my old favorite GI Joe figure or something. PalmOS5 failed right out of the gate. There's nothing to be nostalgic about.
If you want to do some cool hobby stuff (and I don't blame you, I do that sort of thing all the time) I recommend the following:
RaspberryPI or one of the several 3rd party variants out there: It's basically a small PC with a UART (hardware interface with buttons) You can turn it into a media player, an Audio DSP, a "car computer" whatever you can think of.
http://www.raspberrypi.org/ [raspberrypi.org]
http://www.pcworld.com/article... [pcworld.com]
Arduino is a micro controller. Not to be confused with the RPI. An arduino will teach you how to solder :-)
You can run scripts written in C, and control lights, relays, sensors, etc... You can build something that automatically waters your garden, turns on your lights, feeds your pets... basically anything you can script.
http://www.arduino.cc/ [arduino.cc]
AX84 is a website that has a host of amplifier projects. They are all tube based. Why tube? Well a lot of us think it sounds better, but that's a long argument. Even if they don't, it's how electronics started and if you want to know how things were done originally... and why that lead to how things are done now, Tubes are a great way to start. It's like learning to build a campfire by rubbing 2 sticks together. Yea, you could just throw a road flare on a dead tree, but somethings are just worth doing the old way. If you're not a musician, there's a Stereo amp near the bottom.
http://www.ax84.com/sel.html [ax84.com]
Then there's steam engines... There's no collective site for that, but I've done them and they are fun. No codding involved unless you count the valves ;-)
These are super fun though. Imagine a device that can generate power from any source of heat. Even mirrors reflecting the sun. I recommend starting on youtube.
Anyways, there are lots of "useless" projects you can do that will have a far larger community and be far less of a waste of time in the end. Good luck.
Re: (Score:2)
Re: (Score:2)
Also, look at the beagle bone. These are about $50 and they come with analog i/o and digital i/o, but unlike a micro controller, they run a full operating system (linux). Lots of fun!
Re: (Score:2)
and unlink the Raspberry Pi, it has a modern Cortex ARM CPU instead of a 12 year old ARMv6, and a PRU to do real-time hardware interfacing if you need it.
Re: (Score:2)
So then add a short USB cable. If you're building something for production, then make a custom board. Beagle Bone is a fine product to have fun with.
Re: (Score:2)
Why not short cut it even further and buy a $10 including shipping clone from China?
They're all over ebay and aliexpress
Re: (Score:2)
Re: (Score:2)
I thought Slashdot was the best place to ask. Many times I've seen pieces of news about Amigas and usually they're warmly received (are they not outdated?).
That's nostalga kicking in. The Amiga was an amazing piece of technology back in the day; a powerful, multimedia capable, grown-up computer for those who cut their teeth on the Commodore 64 and Vic-20 computers. A last generation, PalmOS 5 based PDA is not going to tug at the nostalga heartstrings. Furthermore, the warmly received stories are about people who have accomplished something with the old hardware, who have gotten their machines to do something above and beyond what people thought they were ca
Re: (Score:2)
I think much like many tech groups I "grew up with", slashdot has gone from a large number of high school and university students hacking stuff in their basement to predominately professionals working out in industry. Some of the "hacker spirit" has vanished and been replaced by practicality, and you see these kinda responses to projects we all probably would have found cool 10 years ago.
I'll admit that even I have fallen into this kinda thinking. I find myself approaching my hobby stuff the same way I appr
Re: (Score:2)
No. If you have a Palm and want to code for it, there's absolutely nothing wrong with that - and I find the reactions here very strange and un-slashdotlike. It doesn't matter if it's a good machine or not, or if you have fond childhood memories of it or not. If you happen to have something that can be explored and programmed, and you feel like doing it, great. How is reading a book or trying out some other hobby (as others suggested) in any way "better"?
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
http://onboardc.sourceforge.net/
Re: (Score:2)
The Palm has similar CPU performance compared to a Raspberry Pi.
Re: (Score:2)
I'm using an old laptop. It pulls about 10W with the screen off, 20W with it on full brightness.
About 17W average usage which gave it 3.5 hours battery life back in the day. It's about 12 years old now.
I don't think any laptop has ever been produced that consumes more than 150W.
There used to have some that came with 160W PSU bricks back when they put Pentium 4's in them, but that also charged the battery at the same time.
Re: (Score:2)
"I don't think any laptop has ever been produced that consumes more than 150W."
I had one, the Samsung Series 7 gaming laptop monster with dual video cards.
200 Watts.
Re: (Score:2)
Re: (Score:2)
An old laptop pulling 150-200w or more. Sure makes sense. 200w can power 4 50" LED TVs now...
That's ignorant talk. Most laptops pull 10W to 50W depending on the load. Even old ones.
Re: (Score:2)
He is trying to learn a language. It is just a dead language!