2010/03/12

Google Testing TV Internet Search

The experiment could determine whether TV viewers would favor Web-like searches over the use of remote control searches.

By W. David Gardner
InformationWeek
March 10, 2010 11:00 PM

Google and Dish Network are testing a search service that would enable users to find video content on conventional TV and on the Internet, according to a report in the Wall Street Journal.

The test, which uses Google's Android software, could determine whether TV viewers would favor Web-like searches over the use of remote control searches, which usually involve the use of menus and much clicking around via a TV's remote control. The test is said to be restricted to a small number of set-top boxes in the hands of Google employees.

The experiment is another indication that a wide range of companies is seeking to take advantage of the emerging convergence of TV and Internet video offerings. Google and Dish Network officials have declined to discuss the test publically. Google's chief executive, Eric Schmidt, however, has suggested that Android technology could be used by TV hardware manufacturers.

"It makes sense that people would use Android as an operating system for set-top boxes, buddy boxes and TVs," he said, according to published reports. "All of those ideas have been proposed by our partners."

Two years ago, Google teamed up with satellite TV provider Dish Network to test the automation of ad buying, delivery sales, and metrics to study how TV search and advertising operate. At the time Schmidt said that test was important because Google said it believed it could add value to TV by delivering more relevant ads to viewers.

The 2007 experiment was also meant to test the waters by providing better accountability for advertisers and to better monetize inventory for TV operators and programmers.


Microsoft Entertainment and Devices Division created the Mediaroom solution powering 4 million telco IPTV set-top boxes. It is also home to Xbox 360 with over 30 million consoles sold with more foc...

2010/03/07

Andriod Emulator ERROR: could not find virtual device name: xxx

If you get this error, it's because your windows user home directory is changed. Fix the error by adding a environment variable named ANDROID_SDK_HOME, and set the value to, for example, d:\users\MY_USERNAME.

Click to view
















Reference: http://www.mail-archive.com/android-beginners@googlegroups.com/msg13718.html

2010/01/18

MacBook Pro - Very Poor Volume Output FIXED!

If your bootcamp windows is having very poor volume output on 2009 unibody MacBook Pro, here's the solution: http://www.stuffedcow.net/macbook_audio. Thank you, Henry.

I follow the instruction below, plus a reboot, and fixed the problem:
  1. Download and unzip this package: CirrusAudioXP_Macbook_c.zip 1.0.0.13c (Nov. 1, 2009).
  2. In Device Manager, Update Driver for the Cirrus Logic High Definition Audio device. Don't let Windows search for or do anything automatically. Manually choose to the driver from a list, and use the "Have Disk..." button.
  3. Reboot.
My configuration is latest 13" MBP (MB990LL/A), bootcamp 3.0 from Snow Leopard, and latest Windows 7 (build 7600).

The detail discussion can be viewed here: http://discussions.apple.com/thread.jspa?threadID=2037093&start=449

2009/12/25

Linux & NTFS

http://wiki.centos.org/zh-tw/TipsAndTricks/NTFS

1. Install
yum --enablerepo=rpmforge install fuse fuse-ntfs-3g

2. Mount it
mount /dev/The_NTFS_PARTION /the_mount_point

That's it.

2009/11/12

ssh via apache deamon user

Scenario: You have a web script (php, ruby, python, or so) that need to ssh over a remote machine to do stuff. How you do set up ssh key for the apache deamon user?

After some dig out, here's the steps, mostly taken from (Boredworkers.com):

Make key for apache daemon
1. log in to source server as root
2. create .ssh directory for apache user. Make sure you have the ownership right:

$ mkdir /var/www/.ssh
$ chown -R apache:nobody /var/www/.ssh


3. Generate the ssh-key authentication key as user apache using sudo. Use the default file location and leave empty when prompted for passphrase.

$ sudo -u apache ssh-keygen -t rsa


4. Append apache's public key to destination server

$ sudo -u apache cat .ssh/id_rsa.pub | ssh dest_user@dest_server 'cat >> ~/.ssh/authorized_keys'


5. Test the set up. You’ll see that you can now run ssh commands without being prompted for the user password:

$ sudo -u apache ssh dest_user@dest_server


refernce: http://www.boredworkers.com/2009/08/24/script-tips-ssh-key-for-apache/

Mercury簡易改裝

有同好有一樣的困擾 - 如何使用自己的data logging軟體,因此寫了這篇來分享我的簡易改裝。 Background 雲豆子 MERCURY roaster 烘豆機的設計是使用自行開發的軟體,來:1. 操控風門/火力; 2. data logging/自動烘焙。 ...