Thursday, August 2, 2012

WEAD

A javascript solution to better reading experience on windows phone 7

Ever found the font is simply too small to be view-able on your favorite site.
Try WEAD, an simple yet elegant reader mode

 

Saturday, June 25, 2011

Saturday, July 3, 2010

Open Source Slashdot RSS reader on Android

Presenting an Open Source Android Application for Slashdot reading


Currently, it can only display Slashdot stories as a ListView and read summary on another WebView.

Usage:
On ListView, tap to jump to story.
On WebView, Left/Right to go to previous or next story. Menu key to go back to ListView
Swipe Left/Right for previous or next story


























Friday, January 16, 2009

ubuntu fix /boot/grub/menu.lst not updated

sudo apt-get purge grub
sudo apt-get install grub
sudo update-grub

ref: http://ubuntuforums.org/archive/index.php/t-1003779.html

Wednesday, January 14, 2009

restore palm tx wifi icon

#1 Get Tx Rom Customization Scripts
wget http://palmtx.da.ru/system/TXUpdate.zip

mkdir txupdate
unzip to txupdate

#2 Get Wifi Update
wget http://palmtx.da.ru/system/tx_security_upgrade.zip
extract TX_Security_Upgrade/Palm/TXUpdate/*.pdb to txupdate/Input

#3 Copy files to sdcard
copy Input/Overflow.zip to /rom
copy Palm/TXUpdate/RomUpdater.prc to /palm/launcher/

#4 Perform update
Launch RomUpdater
enter "devon" then

On completion, the device will reset _twice_

[Reference]
Tx Rom Updater on CJKOS
http://www.1src.com/forums/showthread.php?t=133328

Download links for Steps 1 & 2
http://jdhlp.blog.163.com/blog/static/225481382007111031348678/

Sunday, October 26, 2008

plucker gtk viewer image patch

This solves the dark image problem

diff -r f58c7099044b image.c
--- a/image.c Sun Oct 26 16:09:28 2008 +0800
+++ b/image.c Sun Oct 26 16:16:56 2008 +0800
@@ -1251,7 +1251,7 @@ static GdkPixbuf* TranscribePalmImageToG
}
memcpy (lastrow, rowbuf, bytes_per_row);
}
- else if (((flags & PALM_IS_COMPRESSED_FLAG) &&
+ else if (((flags && PALM_IS_COMPRESSED_FLAG) &&
(compression_type == PALM_COMPRESSION_NONE)) ||
(flags && PALM_IS_COMPRESSED_FLAG) == 0) {
memcpy (rowbuf, palm_ptr, bytes_per_row);
@@ -1295,11 +1295,14 @@ static GdkPixbuf* TranscribePalmImageToG
pixels[(j * 3) + 0] =
(inval >> (bits_per_pixel - palm_red_bits)) &
((1 << palm_red_bits) - 1);
+ pixels[(j * 3) + 0] <<=3;
pixels[(j * 3) + 1] =
(inval >> palm_blue_bits) & ((1 << palm_green_bits) -
1);
+ pixels[(j * 3) + 1] <<=2;
pixels[(j * 3) + 2] =
(inval >> 0) & ((1 << palm_blue_bits) - 1);
+ pixels[(j * 3) + 2] <<=3;
inbyte += 2;
}
}

Saturday, October 11, 2008

Openwrt Kamikaze git clone

git clone git://nbd.ds10.mine.nu/openwrt.git

Repository website:
http://nbd.ds10.mine.nu/gitweb.cgi