- eBooks
- ePrint outs (Map direction)
- Digital Photo Frame
- Replace Portable DVD Player
- Replace netbook
- skype phone
- Portable Internet Browser
- Product presentation in exec room / coffee shop
- Keynote speaker/teleprompter
- larger screen for video camera/ on location editing
- Music player
- Instant ON can replace laptop - check email
- Multi touch - for artist/painters/ white boarding
- Travel kit - replacement for laptop
Sunday, January 31, 2010
iPad use possibilities
Non 3G Version
Sunday, January 10, 2010
perl JSON API http
- sudo perl -MCPAN -e 'install JSON'
- sudo perl -MCPAN -e 'install JSON::XS'
- sudo perl -MCPAN -e 'install WWW::Mechanize'
#!/usr/bin/perl -w
use strict;
use JSON;
use LWP::Simple;
fetch_json_page("http://www.crunchbase.com/v/1/company/yousendit.js");
sub fetch_json_page
{
my ($json_url) = @_;
eval{
my $content = get($json_url);
my $json = new JSON;
# these are some nice json options to relax restrictions a bit:
my $json_text = $json->decode($content);
print $json_text->{phone_number} . "\n";
};
# catch crashes:
if($@){
print "[[JSON ERROR]] JSON parser crashed! $@\n";
}
}
Tuesday, January 05, 2010
mysql backup
http://dev.mysql.com/doc/refman/5.1/en/backup-methods.html
MySql data file copy is a valid process for MyISAM engine!!
MySql data file copy is a valid process for MyISAM engine!!
- Making Backups by Copying Table Files
- Making Delimited-Text File Backups
- Making Backups with mysqldump or mysqlhotcopy
- Making Incremental Backups by Enabling the Binary Log
- Making Backups Using Replication Slaves
- Recovering Corrupt Tables
- Making Backups Using a File System Snapshot