littlebearz

To content | To menu | To search

Friday, September 03 2010

Cute Cat

Tuesday, August 31 2010

FWD a swallow tail - emotional birds french newspaper

这是一段低沉又略显简单的故事,当她绕着公路低空盘旋时,撞在了一辆车上。她受伤了,情况非常危急……他为她带来了食物,试图给她爱的慰藉。

他再一次为她出去觅食,归来时却发现她已经死去。他试图挪动她——一丝徒劳无功的努力。当他发现心上人再也不能回到他身边时,他悲愤地仰天长泣。他站在她身边,整个世界都黯淡了下来。最终他发现一切已无力回天时,懊恼和悲伤布满了整个面庞……  

简简单单的苦恋故事,数百万人类观众看得泪雨滂沱。据称摄影师将这组照片卖给了法国一家大报,仅象征性地收取了少量费用。照片刊登当日,报纸销售一空。还有人会认为动物没有头脑和感情吗?!

Saturday, August 28 2010

Ryerson University Changes to Wireless Access

To provide a more secure and convenient access to the wireless network, Computing & Communications Services (CCS) has implemented Wi-Fi Protected Access, version 2 (WPA2) as a wireless access method across campus called RU-Secure. The new service will be available on Friday, August 13 at 8 a.m. If you are currently using a personal laptop or other wireless-enabled device, it is strongly recommended you begin using WPA2 by following these directions.

The current wireless access, WEP, will be available until at least April 30, 2011 to ease the transition to WPA2 and to accommodate devices that currently do not support WPA2. If you have any questions or need assistance, please contact wireless@ryerson.ca. trackback

Friday, August 27 2010

Export PDF in OpenOffice

I was on Windows Vista Home Premium and was asked to output a pdf from a doc file, I looked around in the office but I don't think it's there so I used oOo and export it into a nice readable PDF file that would never be bothered with the fonts not available or formatting error on different computers. I guess that's why it's called Portable Document File.

Thursday, August 26 2010

Switching Monitors with same windows

#!/bin/sh
 
ans=$(zenity  --list  --text "How do you want to switch your monitor?" \
--radiolist  --column "Pick" --column "Output Type" TRUE LCD FALSE VGA \
 FALSE Both);
 
if [ "$ans" = "LCD" ]
then
        xrandr --output VGA --off
        xrandr --output LVDS --auto
elif [ "$ans" = "VGA" ]
then
        xrandr --output LVDS --off
        xrandr --output VGA --auto
elif [ "$ans" = "Both" ]
then
        xrandr --output VGA --auto
        xrandr --output LVDS --mode 1024x768
fi

I send a big cheers to kelvin :P "I send a big cheers and thanks to the Zenity guys, I'll surely use this quick language more frequently."

Sources: Kelvin

- page 1 of 48