<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Browserlinux Forum - All Forums]]></title>
		<link>http://browserlinux.com/forum/</link>
		<description><![CDATA[Browserlinux Forum - http://browserlinux.com/forum]]></description>
		<pubDate>Sat, 13 Mar 2010 05:37:03 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Standby / suspend]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=365</link>
			<pubDate>Wed, 10 Mar 2010 07:37:23 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=365</guid>
			<description><![CDATA[Hello from Italy <img src="http://browserlinux.com/forum/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /> First of all thanks for this great distro, I'm using it as "quasi-instant-on" OS on my netbook side by side with my primary linux distro <img src="http://browserlinux.com/forum/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
I'd like to add a "standby/suspend" function which I don't see on the Shutdown menu.<br />
<br />
I added proper ACPI kernel module (ASUS_acpi) and executing /cat/sys/power/stats it give me "standby mem" result, so it seems ok.<br />
<br />
Then I used this script<br />
<blockquote><cite>Quote:</cite>#!/bin/sh <br />
<br />
# this script was adapted for Puppy 2.12 by EdB, from the original in <br />
# <a href="http://www.linux.com/article.pl?sid=06/05/24/1716222" target="_blank">http://www.linux.com/article.pl?sid=06/05/24/1716222</a> <br />
<br />
# discover video card's ID <br />
ID=`lspci -i /usr/share/pci-usb-pcmcia.ids | grep VGA | awk '{ print &#36;1 }' | sed -e 's@0000<img src="http://browserlinux.com/forum/images/smilies/angry.gif" style="vertical-align: middle;" border="0" alt="Angry" title="Angry" />@' -e 's@<img src="http://browserlinux.com/forum/images/smilies/angry.gif" style="vertical-align: middle;" border="0" alt="Angry" title="Angry" />/@'` <br />
<br />
# securely create a temporary file <br />
TMP_FILE=`mktemp /var/tmp/video_state.XXXXXX` <br />
# trap 'rm -f &#36;TMP_FILE' 0 1 15 <br />
<br />
# switch to virtual terminal 2 to avoid graphics <br />
# corruption in X <br />
chvt 2 <br />
<br />
# write all unwritten data (just in case) <br />
sync <br />
<br />
# dump current data from the video card to the <br />
# temporary file <br />
cat /proc/bus/pci/&#36;ID &gt; &#36;TMP_FILE <br />
<br />
# suspend <br />
echo -n mem &gt; /sys/power/state <br />
<br />
# restore video card data from the temporary file <br />
# on resume <br />
cat &#36;TMP_FILE &gt; /proc/bus/pci/&#36;ID <br />
<br />
# switch back to virtual terminal 3 (running X) <br />
chvt 3 <br />
<br />
# remove temporary file <br />
rm -f &#36;TMP_FILE <br />
<br />
# needed by my wlan internal card! <br />
iwconfig wlan0 essid any</blockquote>
<br />
found on a Puppy Linux forum. It works suspending my netbook (ASUS eeepc 1008HA), but when I click any key to wake it up, the screen is blank and I can't do anything except pressing the power button forcing it to shut down.<br />
<br />
What's wrong? <br />
<br />
Thank you in advance <img src="http://browserlinux.com/forum/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" />]]></description>
			<content:encoded><![CDATA[Hello from Italy <img src="http://browserlinux.com/forum/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /> First of all thanks for this great distro, I'm using it as "quasi-instant-on" OS on my netbook side by side with my primary linux distro <img src="http://browserlinux.com/forum/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
I'd like to add a "standby/suspend" function which I don't see on the Shutdown menu.<br />
<br />
I added proper ACPI kernel module (ASUS_acpi) and executing /cat/sys/power/stats it give me "standby mem" result, so it seems ok.<br />
<br />
Then I used this script<br />
<blockquote><cite>Quote:</cite>#!/bin/sh <br />
<br />
# this script was adapted for Puppy 2.12 by EdB, from the original in <br />
# <a href="http://www.linux.com/article.pl?sid=06/05/24/1716222" target="_blank">http://www.linux.com/article.pl?sid=06/05/24/1716222</a> <br />
<br />
# discover video card's ID <br />
ID=`lspci -i /usr/share/pci-usb-pcmcia.ids | grep VGA | awk '{ print &#36;1 }' | sed -e 's@0000<img src="http://browserlinux.com/forum/images/smilies/angry.gif" style="vertical-align: middle;" border="0" alt="Angry" title="Angry" />@' -e 's@<img src="http://browserlinux.com/forum/images/smilies/angry.gif" style="vertical-align: middle;" border="0" alt="Angry" title="Angry" />/@'` <br />
<br />
# securely create a temporary file <br />
TMP_FILE=`mktemp /var/tmp/video_state.XXXXXX` <br />
# trap 'rm -f &#36;TMP_FILE' 0 1 15 <br />
<br />
# switch to virtual terminal 2 to avoid graphics <br />
# corruption in X <br />
chvt 2 <br />
<br />
# write all unwritten data (just in case) <br />
sync <br />
<br />
# dump current data from the video card to the <br />
# temporary file <br />
cat /proc/bus/pci/&#36;ID &gt; &#36;TMP_FILE <br />
<br />
# suspend <br />
echo -n mem &gt; /sys/power/state <br />
<br />
# restore video card data from the temporary file <br />
# on resume <br />
cat &#36;TMP_FILE &gt; /proc/bus/pci/&#36;ID <br />
<br />
# switch back to virtual terminal 3 (running X) <br />
chvt 3 <br />
<br />
# remove temporary file <br />
rm -f &#36;TMP_FILE <br />
<br />
# needed by my wlan internal card! <br />
iwconfig wlan0 essid any</blockquote>
<br />
found on a Puppy Linux forum. It works suspending my netbook (ASUS eeepc 1008HA), but when I click any key to wake it up, the screen is blank and I can't do anything except pressing the power button forcing it to shut down.<br />
<br />
What's wrong? <br />
<br />
Thank you in advance <img src="http://browserlinux.com/forum/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[More apps]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=364</link>
			<pubDate>Tue, 09 Mar 2010 01:00:33 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=364</guid>
			<description><![CDATA[Hi again,<br />
I was wondering about the best way to install some additional light software.<br />
I was thinking about Finch (for IM) and CalCurse (a CLI Organizer). How should I install programs? Is there any Package Manager? Repositories available?<br />
<br />
Best regards.]]></description>
			<content:encoded><![CDATA[Hi again,<br />
I was wondering about the best way to install some additional light software.<br />
I was thinking about Finch (for IM) and CalCurse (a CLI Organizer). How should I install programs? Is there any Package Manager? Repositories available?<br />
<br />
Best regards.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Desktop fault?]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=363</link>
			<pubDate>Tue, 09 Mar 2010 00:53:41 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=363</guid>
			<description><![CDATA[I can not tell for sure why sometimes, usually after watching some video on YouTube, Desktop goes blank. I still get the Menu on the Taskbar and the TaskBar itself when move the pointer near bottom of the screen.<br />
As I said I haven' t been able to find the cause of this behavior but apparently is related to something about video streaming (thou not always happens).<br />
<br />
Any clues?<br />
<br />
Asus eee 900. <br />
BrowserLinux 362pre.<br />
<br />
Excelent work!]]></description>
			<content:encoded><![CDATA[I can not tell for sure why sometimes, usually after watching some video on YouTube, Desktop goes blank. I still get the Menu on the Taskbar and the TaskBar itself when move the pointer near bottom of the screen.<br />
As I said I haven' t been able to find the cause of this behavior but apparently is related to something about video streaming (thou not always happens).<br />
<br />
Any clues?<br />
<br />
Asus eee 900. <br />
BrowserLinux 362pre.<br />
<br />
Excelent work!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[make screenshot]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=362</link>
			<pubDate>Fri, 05 Mar 2010 15:17:28 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=362</guid>
			<description><![CDATA[and how can i make a screenshot of my desktop?]]></description>
			<content:encoded><![CDATA[and how can i make a screenshot of my desktop?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[conky]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=361</link>
			<pubDate>Fri, 05 Mar 2010 15:15:23 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=361</guid>
			<description><![CDATA[hellow, how can i have something software like conky?<br />
i would like a system monitor, is it possible?<br />
<br />
many thanks, z]]></description>
			<content:encoded><![CDATA[hellow, how can i have something software like conky?<br />
i would like a system monitor, is it possible?<br />
<br />
many thanks, z]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[A place where tranquility lasts]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=360</link>
			<pubDate>Wed, 03 Mar 2010 04:33:57 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=360</guid>
			<description><![CDATA[Give yourself a time to relax as you let all the anxiety fade away. Let your mind be calm and allow the stillness surpass! We are facing with our different routines and lifestyles. Why not try a to have some trip or a vacation! ! For others, hotels may be more than just a place to stay! <br />
<br />
Experience staying in HOTEL VICTORIA!<br />
<br />
Experiencing Hotel Victoria is all about catching a wave and letting go for the first time, enjoying music festivals in superb natural settings, tasting the best local produce, mixing with the locals at fiestas and carnivals. Relaxing, playing, sunbathing, exploring and discovering why Cornwall is so many holidaymakers favorite destination.<br />
<br />
<span style="color: #FF0000;"><span style="font-weight: bold;"><span style="font-size: medium;"><span style="font-family: Courier;">You’ll surely get the privacy you deserve in hotel Victoria.</span></span></span></span><br />
________________________<br />
<a href="http://www.hotel-victoria.co.uk/" target="_blank">Cornwall Hotels</a>]]></description>
			<content:encoded><![CDATA[Give yourself a time to relax as you let all the anxiety fade away. Let your mind be calm and allow the stillness surpass! We are facing with our different routines and lifestyles. Why not try a to have some trip or a vacation! ! For others, hotels may be more than just a place to stay! <br />
<br />
Experience staying in HOTEL VICTORIA!<br />
<br />
Experiencing Hotel Victoria is all about catching a wave and letting go for the first time, enjoying music festivals in superb natural settings, tasting the best local produce, mixing with the locals at fiestas and carnivals. Relaxing, playing, sunbathing, exploring and discovering why Cornwall is so many holidaymakers favorite destination.<br />
<br />
<span style="color: #FF0000;"><span style="font-weight: bold;"><span style="font-size: medium;"><span style="font-family: Courier;">You’ll surely get the privacy you deserve in hotel Victoria.</span></span></span></span><br />
________________________<br />
<a href="http://www.hotel-victoria.co.uk/" target="_blank">Cornwall Hotels</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[362]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=359</link>
			<pubDate>Fri, 26 Feb 2010 03:16:09 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=359</guid>
			<description><![CDATA[hello<br />
<br />
i have downloaded browserlinux 362 and it is great.<br />
<br />
you people really have a great idea here. auto connect<br />
<br />
and surf.<br />
<br />
great.<br />
<br />
timremy]]></description>
			<content:encoded><![CDATA[hello<br />
<br />
i have downloaded browserlinux 362 and it is great.<br />
<br />
you people really have a great idea here. auto connect<br />
<br />
and surf.<br />
<br />
great.<br />
<br />
timremy]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Wubi or similar?]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=358</link>
			<pubDate>Wed, 24 Feb 2010 02:56:24 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=358</guid>
			<description><![CDATA[Is there a way to create a dual boot between Windows and BrowserLinux in a similar method to Wubi or xPUD?<br />
<br />
Thanks,<br />
emgates]]></description>
			<content:encoded><![CDATA[Is there a way to create a dual boot between Windows and BrowserLinux in a similar method to Wubi or xPUD?<br />
<br />
Thanks,<br />
emgates]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Re: Advantages of Flash Player in nexus one]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=357</link>
			<pubDate>Tue, 23 Feb 2010 07:39:17 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=357</guid>
			<description><![CDATA[Google Nexus One demonstrated with Flash 10.1 Support.Thanks to the Flash Player 10.1 you will be able not only to see Flash-based banners, but also watch videos and even play Flash games.The Flash playback takes full advantage of its zippy Snapdragon CPU. Games and videos are fluid and because of the sensitive capacitive touchscreen display playing games on the HTC Google Nexus One seems quite fun.]]></description>
			<content:encoded><![CDATA[Google Nexus One demonstrated with Flash 10.1 Support.Thanks to the Flash Player 10.1 you will be able not only to see Flash-based banners, but also watch videos and even play Flash games.The Flash playback takes full advantage of its zippy Snapdragon CPU. Games and videos are fluid and because of the sensitive capacitive touchscreen display playing games on the HTC Google Nexus One seems quite fun.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Re: Update : Nexus One]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=356</link>
			<pubDate>Tue, 23 Feb 2010 07:37:32 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=356</guid>
			<description><![CDATA[In updatred version of nexus one they includes following functionality:<br />
1. Google navigation map: "Night mode" navigation, automatically changing the screen color and brightness for easier viewing when driving at night.<br />
The update is being rolled out now and Nexus One users will receive a message notifying them of its availability.<br />
2. Google googles: This mobile application will now be available directly on your device by launching it from your All Apps menu. Just use your Nexus One camera to start searching the web.<br />
3. Pinch-to-zoom Functionality: Google provides pinch-to-zoom capabilities with this new over-the-air software update for Nexus One devices.<br />
4. Now google provides Improved 3G connectivity.<br />
5. Gogole shopper: This new application is very similar to Google Goggles.It scan the cover of a book, CD, DVD, video game, or barcode, and Google will recognize that image, then perform a search on the product. Shopper will return prices from various retailers.]]></description>
			<content:encoded><![CDATA[In updatred version of nexus one they includes following functionality:<br />
1. Google navigation map: "Night mode" navigation, automatically changing the screen color and brightness for easier viewing when driving at night.<br />
The update is being rolled out now and Nexus One users will receive a message notifying them of its availability.<br />
2. Google googles: This mobile application will now be available directly on your device by launching it from your All Apps menu. Just use your Nexus One camera to start searching the web.<br />
3. Pinch-to-zoom Functionality: Google provides pinch-to-zoom capabilities with this new over-the-air software update for Nexus One devices.<br />
4. Now google provides Improved 3G connectivity.<br />
5. Gogole shopper: This new application is very similar to Google Goggles.It scan the cover of a book, CD, DVD, video game, or barcode, and Google will recognize that image, then perform a search on the product. Shopper will return prices from various retailers.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Re: Google's New Phone]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=355</link>
			<pubDate>Tue, 23 Feb 2010 07:35:40 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=355</guid>
			<description><![CDATA[Nexus One Smartphone is the latest Google Android Phone. It is officially called Google’s Nexus One Superphone because of its powerful 1 GHz Qualcomm 8250 processor. Nexus One was released on January 5, 2010.It is a great phone.It fulfills the need for a camera with a flash and an mp3 player. The speed of the phone is very fast as it has a very fast CPU. Moreover, the voice recognition feature is very cool.]]></description>
			<content:encoded><![CDATA[Nexus One Smartphone is the latest Google Android Phone. It is officially called Google’s Nexus One Superphone because of its powerful 1 GHz Qualcomm 8250 processor. Nexus One was released on January 5, 2010.It is a great phone.It fulfills the need for a camera with a flash and an mp3 player. The speed of the phone is very fast as it has a very fast CPU. Moreover, the voice recognition feature is very cool.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Favorite Music]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=354</link>
			<pubDate>Sat, 20 Feb 2010 07:08:24 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=354</guid>
			<description><![CDATA[Generally i love to listen fast music like hip hop and rock because bakground music of this music gives terrific effect when it's going on that time i can't hear my heart bit.There is also addition effect of it's woofer and stereo sound system.<br />
Some time i am also like slow music but all it depend on my mood.<br />
Thanks]]></description>
			<content:encoded><![CDATA[Generally i love to listen fast music like hip hop and rock because bakground music of this music gives terrific effect when it's going on that time i can't hear my heart bit.There is also addition effect of it's woofer and stereo sound system.<br />
Some time i am also like slow music but all it depend on my mood.<br />
Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Realtek RTL8187SE driver for BrowserLinux]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=351</link>
			<pubDate>Fri, 19 Feb 2010 08:06:36 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=351</guid>
			<description><![CDATA[I'm trying BrowserLinux on my eeePC701 and find that the standard RTL8187 driver doesn't work.<br />
I'm booting from a USB but I have UNR installed on the master disk. The wireless card works fine in UNR and is identified as RTL8187SE, so I'm wondering if I would be able to use that driver in BrowserLinux.<br />
If so, how do I do it. Is it simply a matter of finding it in UNR then copying it the USB boot device?<br />
If that's right, where do I look to find it and where do I copy it to?<br />
Thanks for any help<br />
Tony]]></description>
			<content:encoded><![CDATA[I'm trying BrowserLinux on my eeePC701 and find that the standard RTL8187 driver doesn't work.<br />
I'm booting from a USB but I have UNR installed on the master disk. The wireless card works fine in UNR and is identified as RTL8187SE, so I'm wondering if I would be able to use that driver in BrowserLinux.<br />
If so, how do I do it. Is it simply a matter of finding it in UNR then copying it the USB boot device?<br />
If that's right, where do I look to find it and where do I copy it to?<br />
Thanks for any help<br />
Tony]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[delete junk]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=350</link>
			<pubDate>Thu, 18 Feb 2010 02:52:23 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=350</guid>
			<description><![CDATA[When going from place to place on the net the 16meg space I have gets used up and all comes to a halt? I find no button to clear the junk? A restart of system clears all and 16meg is back? NO CLEAR ALL BUTTON?<br />
<br />
See other post, only have 128meg flash 256meg ram. All space left after 353 install was used for save.]]></description>
			<content:encoded><![CDATA[When going from place to place on the net the 16meg space I have gets used up and all comes to a halt? I find no button to clear the junk? A restart of system clears all and 16meg is back? NO CLEAR ALL BUTTON?<br />
<br />
See other post, only have 128meg flash 256meg ram. All space left after 353 install was used for save.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[save downloads]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=349</link>
			<pubDate>Thu, 18 Feb 2010 02:22:05 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=349</guid>
			<description><![CDATA[I have 353 on a 128meg flash, frugal, and 256meg ram unit. I would like to save downloads to a usb stick plugged and mounted to unit but dont know how? No choice at download time, only will put into download folder, not enough room.<br />
Help please!<br />
<br />
edit<br />
found in firefox how to change download location]]></description>
			<content:encoded><![CDATA[I have 353 on a 128meg flash, frugal, and 256meg ram unit. I would like to save downloads to a usb stick plugged and mounted to unit but dont know how? No choice at download time, only will put into download folder, not enough room.<br />
Help please!<br />
<br />
edit<br />
found in firefox how to change download location]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[APATHY]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=348</link>
			<pubDate>Mon, 15 Feb 2010 13:06:44 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=348</guid>
			<description><![CDATA[SO I GIVE IN-NO BODY POSTS ANY USEFULL THINGS SO I DONT GIVE A DAMM ANYMORE-I MAY NOT BE A LINUX GURU BUT I HAVE ABOUT 2 YEARS EXPEARENCE WITH PUPPY-LINUX-NOW I WILL INSTALL THE LATEST 4.3.1+MOVE ON TOT ZIENS TROLL-<img src="http://i.telegraph.co.uk/telegraph/multimedia/archive/01587/Eurasian-lynx_1587054c.jpg" border="0" alt="[Image: Eurasian-lynx_1587054c.jpg&#93;" />]]></description>
			<content:encoded><![CDATA[SO I GIVE IN-NO BODY POSTS ANY USEFULL THINGS SO I DONT GIVE A DAMM ANYMORE-I MAY NOT BE A LINUX GURU BUT I HAVE ABOUT 2 YEARS EXPEARENCE WITH PUPPY-LINUX-NOW I WILL INSTALL THE LATEST 4.3.1+MOVE ON TOT ZIENS TROLL-<img src="http://i.telegraph.co.uk/telegraph/multimedia/archive/01587/Eurasian-lynx_1587054c.jpg" border="0" alt="[Image: Eurasian-lynx_1587054c.jpg]" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[family]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=342</link>
			<pubDate>Thu, 11 Feb 2010 05:06:55 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=342</guid>
			<description><![CDATA[nowdays we have less and less time to spare for our family . Sometimes  I even feel guilty for my fiancee,last year I came to work in shanghai ,a big city in China which have made the situation even worse.yet in shanghai,I find it's also a big question for people here to spare enough time for their family. now The Spring Festival is <br />
<br />
coming ,it's a very important festival in China , to some extent just as our Cristmas ,some people here have started their holiday ,yet many people here have to work as usual.maybe this 's also the result of GLOBALIZATION.<br />
<br />
    yet even the little family time , we can't take good use.And the tradition of the family walk is dying out for lack of time and interest according to a study. it showed tiredness, poor motivation and too little information about where to walk were also cited as major barriers.we know that family walk is also beneficial for our body,<br />
<br />
but most people around have given up the practice ,what's worse is sedentary activities seem popular now. before research,for<a href="http://www.unbootssale.com/" target="_blank"> <span style="color: #000000;">mbt shoes</span> </a>,has revealed family would rather spend time together at meals, sit around talking or watch TV(wow,all sedentary ac).<br />
<br />
    maybe we're really too busy ,of course also too lazy .]]></description>
			<content:encoded><![CDATA[nowdays we have less and less time to spare for our family . Sometimes  I even feel guilty for my fiancee,last year I came to work in shanghai ,a big city in China which have made the situation even worse.yet in shanghai,I find it's also a big question for people here to spare enough time for their family. now The Spring Festival is <br />
<br />
coming ,it's a very important festival in China , to some extent just as our Cristmas ,some people here have started their holiday ,yet many people here have to work as usual.maybe this 's also the result of GLOBALIZATION.<br />
<br />
    yet even the little family time , we can't take good use.And the tradition of the family walk is dying out for lack of time and interest according to a study. it showed tiredness, poor motivation and too little information about where to walk were also cited as major barriers.we know that family walk is also beneficial for our body,<br />
<br />
but most people around have given up the practice ,what's worse is sedentary activities seem popular now. before research,for<a href="http://www.unbootssale.com/" target="_blank"> <span style="color: #000000;">mbt shoes</span> </a>,has revealed family would rather spend time together at meals, sit around talking or watch TV(wow,all sedentary ac).<br />
<br />
    maybe we're really too busy ,of course also too lazy .]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[?]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=341</link>
			<pubDate>Wed, 10 Feb 2010 03:33:19 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=341</guid>
			<description><![CDATA[I have tried several of the websites provided, but unable to watch the tv. I have a bb 8320! Anyone know of a site compatible with blackberry????<br />
______________<br />
<br />
<span style="text-decoration: underline;">wear Jhane Barnes@@ ##with Rolex,}}{{walkng across the world in @@..^^..</span><a href="http://www.unbootssale.com/" target="_blank"><span style="color: #000000;"><span style="text-decoration: underline;">mbt shoes</span></span></a><span style="text-decoration: underline;"> , ##^^of course ,not a playboy @@^^</span>]]></description>
			<content:encoded><![CDATA[I have tried several of the websites provided, but unable to watch the tv. I have a bb 8320! Anyone know of a site compatible with blackberry????<br />
______________<br />
<br />
<span style="text-decoration: underline;">wear Jhane Barnes@@ ##with Rolex,}}{{walkng across the world in @@..^^..</span><a href="http://www.unbootssale.com/" target="_blank"><span style="color: #000000;"><span style="text-decoration: underline;">mbt shoes</span></span></a><span style="text-decoration: underline;"> , ##^^of course ,not a playboy @@^^</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[what book are you reading now?]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=340</link>
			<pubDate>Wed, 10 Feb 2010 03:30:53 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=340</guid>
			<description><![CDATA[now days , I  am reading a book called " FURTHER ALONG THE ROAD LESS TRAVELLED" ,WELL , it's wodserful book and the author try to analize <br />
people's behavior in terms of psychology ,we really can have a better know of ourselves through it.<br />
_________<br />
<br />
<span style="text-decoration: underline;">wear Jhane Barnes@@ ##with Rolex,}}{{walkng across the world in @@..^^..</span><a href="http://www.unbootssale.com/" target="_blank"><span style="color: #000000;"><span style="text-decoration: underline;">mbt shoes</span></span></a><span style="text-decoration: underline;"> , ##^^of course ,not a playboy @@^^</span>]]></description>
			<content:encoded><![CDATA[now days , I  am reading a book called " FURTHER ALONG THE ROAD LESS TRAVELLED" ,WELL , it's wodserful book and the author try to analize <br />
people's behavior in terms of psychology ,we really can have a better know of ourselves through it.<br />
_________<br />
<br />
<span style="text-decoration: underline;">wear Jhane Barnes@@ ##with Rolex,}}{{walkng across the world in @@..^^..</span><a href="http://www.unbootssale.com/" target="_blank"><span style="color: #000000;"><span style="text-decoration: underline;">mbt shoes</span></span></a><span style="text-decoration: underline;"> , ##^^of course ,not a playboy @@^^</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[xorg crashes when firefox starts]]></title>
			<link>http://browserlinux.com/forum/showthread.php?tid=339</link>
			<pubDate>Wed, 10 Feb 2010 01:42:43 +0000</pubDate>
			<guid isPermaLink="false">http://browserlinux.com/forum/showthread.php?tid=339</guid>
			<description><![CDATA[Hi, i'm testing the microclient units and i'm getting this error<br />
<br />
<br />
Backtrace:<br />
0: X(xf86SigHandler+0x77) [0x80bfd57&#93;<br />
1: [0xffffe400&#93;<br />
2: /usr/X11R7/lib/xorg/modules//libfb.so(fbCompositeCopyAreammx+0x4a) [0xb7ca4f9a&#93;<br />
3: /usr/X11R7/lib/xorg/modules//libfb.so(fbComposite+0x4c2) [0xb7c97eb2&#93;<br />
4: /usr/X11R7/lib/xorg/modules//libxaa.so(XAAComposite+0x1fd) [0xb7c5872d&#93;<br />
5: X [0x8168f9e&#93;<br />
6: X(CompositePicture+0x1e1) [0x81502c1&#93;<br />
7: X [0x8156247&#93;<br />
8: X [0x8153351&#93;<br />
9: X [0x8146a3d&#93;<br />
10: X(Dispatch+0x1ab) [0x8087ddb&#93;<br />
11: X(main+0x4a4) [0x8070234&#93;<br />
12: /lib/libc.so.6(__libc_start_main+0x12e) [0xb7e6e20e&#93;<br />
13: X(FontFileCompleteXLFD+0x1e1) [0x806f591&#93;<br />
<br />
Fatal server error:<br />
Caught signal 4.  Server aborting<br />
<br />
(II) SIS(0): Restoring by setting old mode 0x03<br />
<br />
this happens shortly after firefox is started.<br />
<br />
any ideas?]]></description>
			<content:encoded><![CDATA[Hi, i'm testing the microclient units and i'm getting this error<br />
<br />
<br />
Backtrace:<br />
0: X(xf86SigHandler+0x77) [0x80bfd57]<br />
1: [0xffffe400]<br />
2: /usr/X11R7/lib/xorg/modules//libfb.so(fbCompositeCopyAreammx+0x4a) [0xb7ca4f9a]<br />
3: /usr/X11R7/lib/xorg/modules//libfb.so(fbComposite+0x4c2) [0xb7c97eb2]<br />
4: /usr/X11R7/lib/xorg/modules//libxaa.so(XAAComposite+0x1fd) [0xb7c5872d]<br />
5: X [0x8168f9e]<br />
6: X(CompositePicture+0x1e1) [0x81502c1]<br />
7: X [0x8156247]<br />
8: X [0x8153351]<br />
9: X [0x8146a3d]<br />
10: X(Dispatch+0x1ab) [0x8087ddb]<br />
11: X(main+0x4a4) [0x8070234]<br />
12: /lib/libc.so.6(__libc_start_main+0x12e) [0xb7e6e20e]<br />
13: X(FontFileCompleteXLFD+0x1e1) [0x806f591]<br />
<br />
Fatal server error:<br />
Caught signal 4.  Server aborting<br />
<br />
(II) SIS(0): Restoring by setting old mode 0x03<br />
<br />
this happens shortly after firefox is started.<br />
<br />
any ideas?]]></content:encoded>
		</item>
	</channel>
</rss>