Yearly Archives: 2010

CherryPad America

I got my CherryPad America toward the end of October.  It’s a low-end tablet, comparable to the ones you can now find at WalMart and KMart.  I bought mine primarily to function as an e-reader, and quickly found that it had impressive video codec support and could do more than I was expecting out of such a cheap device.  (When I bought it, it was one of the cheapest on the market.)

I was order number 58, so some things are probably different now.  I believe the factory language is now English instead of Chinese for instance.

Some initial thoughts:

  • Good codec support (Too bad the Android video player doesn’t support internal mkv subtitles.  You need third party software from the market for that.)
  • Root access!
  • Android Market is a pain to get (and keep) working.
  • Resistive Screen takes some getting used to
  • Speakers are less than impressive, but sounds pretty decent with headphones or externally attached speakers.
  • Fits in one hand, good for reading.
  • Gah, why is JavaScript not on by default?
  • I like the aluminum case.
  • Uses my iPod’s docking cable.
  • A little slow sometimes, depends on the task.

Getting the Android Marketplace to function well has been an uphill battle, and honestly, the biggest problem I’ve run into.  It will work for a bit and then stop working entirely.  Actually, hasn’t worked for a week for me now. *sigh* I think I’ll email and ask about that.

If you’re looking for a simple music-playing, video-playing tablet, that you can use for reading and browsing the Internet.  It’s perfectly capable of all that.  I even use it to order parts off NewEgg and such.  Once you get it set up to your liking and get used to the resistive screen, it’s nice, if a little slow.  Verdict is that I like it, but am hesitant to recommend buying it because of the issues I’ve had with the Android Market.

CherryPad America Factory Reset

The CherryPad America is a tablet running Android I plan to write up a review for later, however a quick note for anyone who might be searching: Yes, if you do a factory restore, the default language will be Chinese.

You can change it to English by pressing the change-language button in the lower-right hand corner of the initial start screen where you are asked to press on the android. (But you can’t read that since it’s in Chinese. 😛 )  Then you can pick English and be good to go for your initial boot.

Using Python to create command line tools

Was directed to a nifty tutorial regarding Python’s optparse, and how to use it to quickly create handy command-line utilities.   Saves you the trouble of ever having to parse the command line.  Check it out on IBM’s website: http://www.ibm.com/developerworks/aix/library/au-pythocli/

Summary taken from the article:

Summary: If you work in IT, as a UNIX® Sysadmin, a software developer, or even a manager, there a few skills that will set you apart from the crowd. Do you fully understand the OSI model? Are you comfortable with subnetting? Do you understand UNIX permissions? Let me add to this list the humble command line tool. By the end of this article, anyone involved in IT at any capacity should be able to create at least a simple command line tool.

Recettear: An Item Shop’s Tale

Heh, this Saturday I spent nearly 7 hours playing Recettear: An Item Shop’s Tale and I have to say that I love it.  Beyond a fairly enjoyable cast of characters you can choose just about every aspect of your shop from what is stocked to the wallpaper, flooring and carpeting used.  As for inventory, you can work the town markets or go out adventuring to rustle up some sales from whatever you skin off monsters.  I love these types of games, and having such a cute protagonist certainly doesn’t hurt.

Drop by their website and check it out.

Resize and Crop to a specific width x height with a crop suggestion point.

I really don’t have a shorter description for this.  I was working on a personal project the other day and realized that this might be a nifty function.  Basically, you know all those snippets to make cropped thumbnails (squares and the like), and how most of them either center or crop to the top of an image.  I wanted a new function that would crop to most any size I desired and any position on the image I desired without the need to change any code, only parameters.  And thus img_resize_crop was born.

Continue reading