2007年9月28日 星期五

zenity - Display graphical dialog boxes from shell scripts

Zenity is a tool that allows you to display GTK dialog boxes in commandline and shell scripts.



Zenity allows you to display GTK+ dialogs from shell scripts; it is a rewrite of the `gdialog' command from GNOME 1.

Zenity includes a gdialog wrapper script so that it can be used with legacy scripts.

FYI: Thinker: zenity - A GTK+ Dialog

gdebi - Simple tool to install deb files

gdebi lets you install local deb packages resolving and installing its dependencies. apt does the same, but only for remote (http, ftp) located packages. This package contains the graphical user interface.

gdebi-core - This package contains the libraries and command-line utility.

2007年9月26日 星期三

htop - an interactive process viewer for Linux


This is htop, an interactive process viewer for Linux. It is a text-mode application (for console or X terminals) and requires ncurses. Tested with Linux 2.4 and 2.6.

真是一整個賞心悅目啊!

Data Structures and Program Design In C, 2/E 書中的 source code 下載

Data Structures and Program Design In C, 2/E 書中的 source code 下載:
ftp://ftp.prenhall.com/pub/esm/computer_science.s-041/kruse/dspdc2/

96年7-8月統一發票中獎號碼

http://invoice.etax.nat.gov.tw/

  • 特獎: 94706755
  • 頭獎:
    • 01151_187
    • 20658_657
    • 76860_639

2007年9月20日 星期四

將 Java bytecode 轉成 Windows executable 的工具

2007年9月19日 星期三

Debian 上安裝 X

記得剛開始學Debian的時候,要安裝 X,我很清楚的記得是:apt-get install xserver-xorg x-window-system-core,裝上這兩個套件就搞定了,之後就是再決定要哪套桌面環境。

不過在 Etch release 之後,要裝 X,只要:aptitude install xorg 就搞定了。

目前 x-window-system-core 的 package description:

This package is provided to smooth upgrades from Debian 3.1 ("sarge") to Debian etch. It may be safely removed from your system. It depends on the xorg package which is the new metapackage for installing the X Window System in Debian.

2007年9月18日 星期二

ThinkPad 服務中心

FYI: http://www-07.ibm.com/lenovoinfo/pc/support/tw/tp_centre2.html
免付費專線
:7天24小時的免費技術支援專線 0800-000-700 #2#1


服務時段
: 星期一至星期五 09:00 - 21:00、星期六 09:00 - 18:00 (PS: 星期日及國定例假日不營業)

服務中心
電話
台北: 台北市忠孝東路四段320號2F (02) 2778-8997
新竹: 新竹市金城一路7號3F (03) 571-0207
台中: 台中市美村路一段247號 (04) 2301-0627
高雄: 高雄市建國二路145號 (07) 236-0737

設定Programmer's Notepad的JAVA開發環境...

在[Tools]=>[Options]裡面的[Tools]選項,在Scheme的地方選Java,然後按右邊的Add按鈕,新增:

1. javac:
Command: C:\Program Files\Java\jdk1.6.0_01\bin\javac.exe
Parameters: -classpath %d %d%f

2. java:
Command: C:\Program Files\Java\jdk1.6.0_01\bin\java.exe
Parameters: -classpath %d %n

然後就可以從[Tools]選單裡面看到javac跟java兩個按鈕。而Java程式編譯與執行的結果,會秀在最下面的Output視窗。