中心簡介

電腦維修中心於二零零零年七月一日成立至今,致力為電腦用家提供價廉物美,年中無休24小時上門電腦維修服務及其他電腦相關的增值服務,務求做到盡善盡美。我們擁有專業的技術人員,為全港九新界用家解決電腦上的疑難。

務實的邏輯
每個客人都希望工程師能夠聽到或看到故障狀況就可以立即給答案:…可是以一個專業的角度來看,有些情況下立即回覆是不負責且不道德的行為,為什麼?因為只有少部分的問題答案是會「比較」明確,注意是「比較」明確而不是「絕對」明確的,沒有經過實際測試的過程來驗證的答案是非常不可靠且有風險的,因為你永遠也無法預知機器的狀況是否有其他隱性的因素導致,相信我,一個不開機的故障現象,我可能要查3個小時,也可能要查3天才會知道原因。

 

Useful Link

Google Inc.
Yahoo! HK
INTEL
CISCO SYSTEM

 

Useful Link

知 識 庫

Title: QQ終於出unicode版本啦...


QQ終於出unicode版本啦...

以前QQ只支持簡體中文,雖然有繁體版,好似夾硬轉成繁體中文
有時轉換時唔係轉得咁好,有時仲轉唔到空咗個格,有時都唔知講乜

TM2008係用unicode,你打乜文都得
http://im.qq.com/tm/2008/download.shtml
可以下載試下,介面有啲似MSN


Title: /dev/hdb1 already mounted or /XXX busy


If you're using CentOS or Fedora ... I've researched and found the solution to this problem another way.

MY PROBLEM: I too had the second and third hard drive in my system completely unmountable. I could use fdisk and make partitions, and I also could mke2fs the filesystems on these partitions as well... so I know they were not damaged or "in use" as the OS claimed. Yet after creating the filesystems, I always got "device /dev/hdc busy" error messages.

I tried the fuser command as mentioned above, but it always came up with no results, meaning that on one was sitting on the filesystems preventing them from being mounted.

Well, it's documented here (centos mailing list describing symptoms and solution) and here (bug tracker at CentOS.org).

THE SOLUTION: Seems as if a software raid utility got upgraded or installed (yum update caused it for me) called dmraid that took exclusive control over these drives and partitions, not allowing them to be mounted from the command line.

The fix: Both posts give options, but what worked for me was to uninstall the DMRAID package:

rpm --erase dmraid
OR
yum remove dmraid


Title: Bo-blog 2.03 sp1 Update


2.0.3 sp1 (2007-2-28)…
在檢測兩次回復時間是否太短時進行同ip限制…
升級內置FLV播放器為作者發佈最新版,支持全屏播放了…
 
點擊這裡下載檔案
 
前人金句:立志是事業的大門,工作是登門入室的旅程

Tags -


Title: 用 htaccess 強制檔案下載


當 IE 存取類似 avi 或 excel 的檔案時,會自動開啟那些檔案,而不會彈出下載訊息方塊,以下是透過 .htaccess 檔案實現強制檔案下載的方法,例如要強制性下載的檔案為 .avi 及 .mpg 副檔名,可以在 .htaccess 加以以下兩行:
 
AddType application/octet-stream .avi

 
<a href="my_movie.avi">Download Movie1</a>
 
前人金句:聽君一席言,勝讀十年書。今天,聽張大偉一番話,感悟不少,其中內容便是人一定要有一個目標,用不滿足,並且針對我,說現在應該是集中精力,而不應分散出擊,他說的話有一定道理。我是該考慮集中一下精力干一些事情,否則也可能一事無成。


Title: 搜索引擎的提交位址


有的搜索網站是不會自動收錄你的小站的…
所以你需要將你的網站錄入搜索網站…
 
這裏提供一些搜索引擎的提交位址,提交之後會讓你的網站訪問量大增:

http://www.baidu.com/search/url_submit.html
http://www.google.com/intl/zh-CN/add_url.html
http://db.sohu.com/regurl/regform.asp
http://search.tom.com/tools/weblog/log.php
http://d.zhongsou.com/NetSearch/pageurlrecord/frontpageurl.jsp
http://www.iask.com/guest/add_url.php
http://www.yisou.com/search_submit.html?source=yisou_www_hp
http://pages.alexa.com/help/webmasters/index.html#crawl_site
http://www.infomall.cn/url_submit.html
http://ad001.ad086.com/Reg/User_Reg.asp
http://www.cnblog.org/rings/submit.asp

Tags -


Title: AJAX 資料庫管理工具 — TurboDbAdmin


Ajax DBADMIN

TurboDbAdmin 是用 PHP + AJAX 寫成的 MySQL 管理工具,它的功能雖然沒有 phpmyadmin 般強大,但因為用了 AJAX 的原故,介面看起來較美觀,大家有興趣可以到以下網站下載試試:

Tags - ,


Title: Ajax DNS 查詢工具


在 *NIX 下有很多 DNS 查詢工具,例如 dig, nslookup, host, whois, telnet, ping 等。
 
今天找到這個不錯的網站: Ajax DNS,它提供了以下查詢服務:

Tags - ,


Title: 10 個 UNIX 良好使用習慣


這是在 IBM developerWorks 的文章,列出了 10 個在 *NIX 下良好的使用習慣,其中有些也有犯下。以下是作者的10 個建議,並加上簡單中文簡介
 
1. Make directory trees in a single swipe.可以在用 mkdir 時加上 -p 選項,就可以遞迴建立目錄。
 
2. Change the path; do not move the archive.在 tar 指令加上 -C 選項,指令解壓的目的地,不需把壓縮檔移動。
 
3. Combine your commands with control operators.用 control operators 合拼指令,例如 ";", "&&" 及 "||"。
 
4. Quote variables with caution.用雙引號括起變數。
 
5. Use escape sequences to manage long input.用 escape sequences 處理較長的指令輸入。
 
6. Group your commands together in a list.group 起一組指令。
 
7. Use xargs outside of find.用 xargs 過濾從 find 得出的結果。
 
8. Know when grep should do the counting -- and when it should step aside.grep 可以加上 -c 選項計算結果總數,不用透過 pipe 執行 wc。
 
9. Match certain fields in output, not just lines.可以用類似 awk 這些工具配合 grep 使用,傳回指定欄位,不是一整行結果。
 
10. Stop piping cats.不要用 cat 透過 pipe 報行 grep 搜索檔案,改用 grep 直接執行。
 
以上中文解釋可能寫得不好,詳細內容可參考原文: Learn 10 good UNIX usage habits

Tags -


Title: mac and windows 2003 Smb File Sharing


Microsoft Windows Server has a some vaguely-worded options which must be disabled to allow OS X's Samba to connect. I never did fix the "name or password is incorrect" error connecting via Samba to my Windows 2000 Server install, so I always passed data back and forth using an XP machine. Seeking to end that kluge with my new Windows 2003 Server install, I hacked everything I could find on the OS X side to no avail. I
finally gave up and turned to the Domain Server for salvation. Eventually, I found the right settings:

Start -> All Programs -> Administrative Tools -> Domain Controller Security Policy. You can ignore any errors about truncated strings ...

gotta love one-button alerts. Then navigate into Local Policies: Security Options, and set the following:

Microsoft Network Server: Digitally sign communications (always): DISABLED
Microsoft Network Server: Digitally sign communications (if client agrees): ENABLED


Now, if you want the Server to be able to connect to the Macs on the network, or any Samba server (I think), set the following in the same Local Policies: Security Options area:

Microsoft Network Client: Digitally sign communications (always): DISABLED
Microsoft Network Client: Digitally sign communications (if server agrees): ENABLED


And finally, if you want the domain's Windows boxes to be able to connect to the Mac/Samba, set the following:

Domain Member: Digitally encrypt or sign secure data channel (always): DISABLED
Domain Member: Digitally encrypt secure data channel (when possible): ENABLED
Domain Member: Digitally sign secure data channel (when possible): ENABLED


I suppose these same policies are found in a similar location in Windows 2000 Server, but I'm not going to reinistall it just to know. Why all of this was so hard to find and/or figure out, I don't know -- it seems pretty simple once I collected it all from about 10 different places.

Warning: This hint lowers your network's security a bit, use at your own risk.
Tags - ,


Title: What is WEB2.0?


有人把他當作純粹的單一技術、有人認為是某種服務、其他人認為那只是令人鄙視的炒冷飯行銷手段,更多人趁機的把各自訴求或產品掛上 Web 2.0 字眼。最後網路上喧嘩著各自表述、片面而偏執的文字。
 
Web 2.0 或許的確只是 Buzzword,這個過度簡化的符號顯然為許多人帶來迷思與困惑。它看起來像是某種進化過的網站技術,或是網路泡沫時期過度渲染的先進科技,當初 Tim O’ReillyDale Dougherty 製造出這個符號時,並沒有對它進行具體的陳述,而是以例子來詮釋這種無以名狀的運動。由於缺乏明顯的定義,又或是向下圖那些不知所云的頭字語廣泛的出現在各種文獻中,造成認知上的差距,最省事的辦法似乎是指稱 Web 2.0 只是一個騙局。 你若走到 Web 2.0 研討會,問某個人甚麼是 Web 2.0,幾乎每個人都會給你不同的答案,這是一個尚在自我擴散的符號。
 
Web2.0 Map
Markus Angermeier
 
冒著被批評為馬後炮的態度,我試著聯想 Web 2.0 …
 
REF: Rex’s blah blah blah

Tags -


Title: YUM DAG


第一种方法:
yum源来自chinalinuxpub.com,用的是centos包, http://www.chinalinuxpub.com/yum.tgz
安装:
tar zxvf yum.tgz rpm -ivh *.rpm
rm -rf /etc/yum.repos.d/CentOS-Base.repo
 
加入:
#released updates name=Red Hat Enterprise AS release 4 Updates gpgcheck=1
vi /etc/yum.repos.d/as4-base.repo
 
加入:
#released base name=Red Hat Enterprise AS release 4 Updates gpgcheck=1
然后就可以正常使用yum了.
 
第二种方法:利用CentOS 的yum库升级RHEL AS4
1.下载并安装yum-2.4.0-1.centos4.noarch.rpm文件,下载地址为:
ftp://ftp.pbone.net/mirror/ftp.centos.org/4.2/os/alpha/CentOS/RPMS/yum-2.4.0-1.centos4.noarch.rpm
 
2.修改或建立/etc/yum.repos.d/CentOS-Base.repo为如下内容:
[base] baseurl=http://ftp.riken.jp/Linux/caos/centos/4.0/os/$basearch/
#released updates name=CentOS-$releasever - Updates gpgcheck=1
#packages used/produced in the build but not released name=CentOS-$releasever - Addons gpgcheck=1
#additional packages that may be useful name=CentOS-$releasever - Extras gpgcheck=1
 
3.修改或建立/etc/yum.repos.d/dag.repo为如下内容:
[dag] baseurl=http://ftp.riken.jp/Linux/dag/redhat/el4/en/$basearch/dag/ gpgcheck=1
 
4.运行update:
yum update
 
5.升级:
yum upgrade
 
6.安装其它软件,例如:
yum install mplayer


Title: Web 2.0 = 泡沫 2.0 ?


(圖片來源: Txemavk)
網路時代的變遷快速,一直很需要專有名詞來代表抽象的概念。AJAX 在過去不過是個不起眼舊東西,但是有個代表性的應用及響亮的名詞出現,馬上就在網路上蔓延開來。
 
Web 2.0 是網路發展趨勢的一個代名詞,就如同黑白電視->彩色電視,類比電視->數位電視一樣,是任何產業在時代演進的必經過程,並非一種商業模式。然而在台灣的媒體卻大肆奉為網路時代的新救星,加上台灣媒體喜愛加油添醋的手法,也難怪投資者看到就倒胃口。
 
也難怪 Mr.6 感嘆,台灣投資家普遍認為 Web 2.0 是用來坑錢的泡沫
 
而 Mr.6 也以創投的角度提出美國的大公司如 Google、Yahoo、eBay、AOL ... 都已經在持續收購 Web 2.0 的公司,為什麼台灣人還認為 Web 2.0 是泡沫?
 
其實當我們反過來思考,許多知名度及用戶數極高的 Web 2.0 公司諸如 Flickrdel.icio.us ... 也都紛紛讓大公司收購整併,這些 Web 2.0 創業家是不是有獲利了結的心態? 還是他們有下一步的計畫? 這些創業家對於 Web 2.0 的後勢是不是樂觀其成? 其實也都很難講。 Web 2.0 是不是泡沫沒有人知道,但是至少目前除了流量、廣告之外,的確看不到獲利的基礎,如果獲利的來源跟所謂的 Web 1.0 網站一樣,那大型的網路公司買 Web 2.0 是理-->
這裡有一篇報導,把 Web 2.0 這個名詞改用網路第二版來形容,不管是翻譯上或是認知上的問題,這篇報導也把 Google 列為網路第二版。但值得玩味的是,買了一堆 Web 2.0 公司的 Yahoo! 算不算 Web 2.0 的公司呢?
我認為 Web 2.0 是不是泡沫並不是那麼重要,重要的是 Web 2.0 是不是真的會改變你我的生活? 如果是,就算 Web 2.0 現在是泡沫,未來也會有起來的一天。
 
後記: Web 2.0論壇:誰是泡沫? 」延伸思考而來,一般創業家想跟創投面對面的交流其實非常困難,透過 Mr.6 細膩且宏觀的觀點可以讓人認真的思考網路上創業及投資的環境,也非常推薦大家到他的 Blog 去看看。
 
REFERENCE: Neo's Blog


Title: BIOS


Award BIOS
2短:常規錯誤,請進入CMOS Setup,重新設置不正確的選項。
1長2短:顯示器或顯示卡錯誤。
1長9短:主板Flash RAM或EPROM錯誤,BIOS損壞。換塊Flash RAM試試。
不停地響:電源、顯示器未和顯示卡連接好。檢查一下所有的插頭。
無聲音無顯示:電源有問題。
AMI BIOS
2短:記憶體ECC較驗錯誤。在CMOS Setup中將記憶體關於ECC校驗的選項設為Disabled就可以解決,不過最根本的解決辦法還是更換一條 記憶體。
4短:系統時鐘出錯。
6短:鍵盤控制器錯誤。
8短:顯示記憶體錯誤。顯示記憶體有問題,更換顯示卡試試。
1長3短:記憶體錯誤。記憶體損壞,更換即可。


1短1短1短:系統加點初始化失敗
1短1短3短:CMOS或電池失效
1短2短1短:系統時鐘錯誤
1短2短3短:DMA頁寄存器錯誤
1短3短2短:基本記憶體錯誤
1短4短1短:基本記憶體地址線錯誤
1短4短3短:EKSA 時序器錯誤
2短1短1短:前64KB 基本記憶體錯誤
3短1短2短:主DMA寄存器錯誤
3短1短4短:從中斷處理寄存器錯誤
3短3短4短:顯示記憶體錯誤
3短4短3短:未發現顯示只讀存儲器
4短2短2短:關機錯誤
4短2短4短:保護模式中斷錯誤
4短3短3短:時鐘2錯誤
4短4短1短:串行口錯誤
4短4短3短:數字協處理器錯誤


Title: how to set Exchange Forwarding


請注意 轉寄位址可以是任何擁有郵件功能的物件。 例如通訊群組、 安全性群組、 公用資料夾和其他相關項目的擁有郵件功能的物件。

1. 啟動 [Active Directory 使用者和電腦 (Active Directory Users and Computers) ] 嵌入式管理單元。.
2. 以滑鼠右鍵按一下擁有郵件功能的使用者, 並按一下 [ 內容 (Properties) ]
3. 按一下 [ Exchange 一般 (Exchange Genernal) ] 索引標籤。
4. 按一下 [ 傳遞選項 (Delivery Options) ]
5. [ 轉寄地址 (Forward Address) ] 區段, 按一下 要轉寄 然後再按一下 [ 修改 (Modify) ]
6. 按一下 [ 擁有郵件功能的使用者或擁有郵件功能的連絡人。 然後, 按一下 [ 確定 ]

附註 如果您要郵件傳遞到轉寄地址, 原始的信箱, 以及選取 [ 傳送訊息到轉寄地址及信箱 核取方塊。 

7. 如果要關閉 [ 傳遞選項 ] 以關閉 內容 並按兩次 [ 確定 ]


Title: route add


route add -net XXX.XXX.XXX.XXX/subnet gw XXX.XXX.XXX.XXX


Title: 快速移除 Windows XP 內建的舊版 Windows Messenger 4.7


快速移除 Windows XP 內建的舊版 Windows Messenger 4.7

Windows XP 內建安裝了 Windows Messenger 4.7 版,最近 Microsoft 的安全更新還會再重裝一次內建的 4.7 版,對於已經在用 MSN Messenger 來說實在很煩人,就算在「新增/移除程式」也無法完全解除安裝。
最快又完整解決安裝的方法就是從:
RunDll32 advpack.dll,LaunchINFSection %windir%\INF\msmsgs.inf,BLC.Remove
輸入完成後按確定,等出現成功訊息之後,選重新開機就可以完全的解除安裝了,是不是很方便快速呢? ^_^

Tags -


Title: 用ajax來改變database中的value


 
// Lets setup Sajax
require_once('Sajax.php'
);
sajax_init
();
function 
sajax_update($id$value
)
  
$id mysql_escape_string($id
);
$value mysql_escape_string($value
);
mysql_query("UPDATE `speed` SET `speed` = '$value' WHERE `id` = '$id';"
);
'true'
;
sajax_export("sajax_update"
);
sajax_handle_client_request
();
// Get values from database for defaults
$result mysql_query("SELECT * FROM speed"
);
$defaults 
= array();
$rw mysql_fetch_array($result
)) {
$defaults[$rw['id']] = $rw['speed'
];


Title: 你可能已成為盜版軟體的受害者


登錄檔清除之後 有沒有先重開機呀重開機後再安裝一次 破解後的KB905474如果有試過重開仍然無效 試試以下部份手動部份:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon\Notify\WgaLogon HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WgaNotify 1.將這兩個登錄檔機碼給刪掉(整個資料夾刪掉)2.重開3.安裝破解版的kb9054744.把C:\Documents and Settings\All Users\Application Data\Windows Genuine Advantage\data裡面的 data.dat 改名為data-o.dat再新增一個文件檔 檔名改為data.dat 並改成唯讀PS.補上 破解版的 LegitCheckControl.dll Ver.1.5.708.0 因wgafuck裡是 1.5.540試試吧 如還是不行 請回報c:\windows\system32\ 裡面的3個檔案的版本給我LegitCheckControl.dllWgaLogon.dllWgaTray.exe


Title: Ghost: File name? (546) 25002


You can try ...

Ghost.exe -ntc-


Title: Windows Live Messenger 8 移除廣告和搜尋列


做法如下…

(這適用於 8.0.0812,至於往後的版本是否適用,到時候再說XD)
前置作業:

  1. 先關掉 Windows Live Messenger (廢話XD)
  2. 下載 Resource Hacker (免安裝)
  3. 用 Resource Hacker 開啟檔案 C:\Program Files\MSN Messenger\msgsres.dll

  1. 在左邊的節點樹找到 4009 -> 923 -> 1033
  2. 在右邊的原始碼中尋找 ID=Atom(SSConstrainer) 字串 (按 CTRL + F 尋找)
  3. 把前面的 layoutpos=top 改成 layoutpos=none
若要移除對話視窗的廣告,

  1. 在左邊的節點樹找到 4009 -> 923 -> 1033
  2. 在右邊的原始碼中尋找 <element id=atom(adbannercont) layout=filllayout()>
  3. 把這一坨字改成 <element layoutpos=none>
若要移除主視窗最下方的搜尋列 (廢物!當然是用 Google 啊!)

  1. 在左邊的節點樹找到 4009 -> 923 -> 1033
  2. 在右邊的原始碼中尋找 atom(idSearchContainer)
  3. 它上面那一行有個 layoutpos=bottom
  4. 改成 layoutpos=none
完成之後,按下 [Compile Script] 按鈕,然後點擊功能表 [File] -> [Save]

如果您擔心改一改會出問題,或是不敢自己改,那麼請下載別人做好的 msgsres.dll 吧,
下載回來之後,直接蓋掉舊的 msgsres.dll 就行了。


Title: How to delete all Outlook Calendar items in Outlook 2002 如何刪除所有在 Outlook 2002 及 Outlook 2003 中 Outlook 行事曆項目


針對 Microsoft Outlook 2002
1. 啟動 Outlook 2002, 然後按一下您的 行事曆 ] 資料夾。
2. 在 [ 檢視 ] 功能表, 指向, [ 目前檢視 ] 及 [ 依類別 ] 。
3. 在 [ 檢視 ] 功能表, 指到 展開 / 摺疊群組 , 及 [ 全部摺疊 。
4. 在 [ 表格 ] 窗格, 再以滑鼠右鍵按一下每個類別, 及 [ 刪除 ] 。 這會刪除隸屬於每個類別每個項目。 


適用於 Microsoft Office Outlook 2003
1. 啟動 Outlook 2003, 然後按一下您的 行事曆 ] 資料夾。
2. 在 [ 檢視 ] 功能表, 指向 [ 排列 ] 、 按一下 [, [ 目前檢視 ] 及 [ By Category 。
3. 在 [ 檢視 ] 功能表, 指到 展開 / 摺疊群組 , 及 [ 全部摺疊 。
4. 在 [ 表格 ] 窗格, 再以滑鼠右鍵按一下每個類別, 及 [ 刪除 ] 。 這會刪除隸屬於每個類別每個項目。 


Title: Mount


Tried using the old sudo mount -t smbfs -o username=user,password=pass //server/share /mnt/directory, but I got this error
cli_negprot: SMB signing is mandatory and we have disabled it. 15201: protocol negotiation failed SMB connection failed

I could have disabled SMB signing on the server, but I came across cifs. It works like a charm:
sudo mount -t cifs -o username=user,password=pass //server/share /mnt/directory


Title: RoundCube Webmail (ajax)


AJAX 最近紅得不得了, 可能因為 GMail, Yahoo 都係用呢個新技術, 改善 Webmail 的操作介面...

最近找到一個 GPL 的 AJAX Webmail (IMAP Client) 叫做 roundcube email, 現在才是 0.1beta, 但是看得出來它的潛力無限...

有興趣的人, 請到 http://www.roundcube.net/

RoundCube Webmail is a browser-based multilingual IMAP client with an application-like user interface. It provides full functionality you expect from an e-mail client, including MIME support, address book, folder manipulation and message filters. RoundCube Webmail is written in PHP and requires the MySQL database. The user interface is fully skinnable using XHTML and CSS 2.


Title: click to activate and use this control


http://www.amarasoftware.com/flash-problem.htm


Title: mbstring [phpmyadmin] Mysql


找不到 PHP 內的 mbstring 編碼模組, 沒有這個模組, phpMyAdmin 無法準確地分割雙字元文字, 而可能產生問題.

if windows:

  1. 先到此下載模組 http://rapidshare.de/files/2996482/php_mbstring.dll.html
  2. 下載完後放到php安裝目錄下的extensions資料夾中
  3. 打開php.ini (一般在你作業系統安裝目錄下)
  4. 尋找: [;extension=php_mbstring.dll]
  5. 替換為: [extension=php_mbstring.dll]
  6. 存檔 重開Apache就可以了
if Linux:

yum install php-bmstring


Title: phpMyAdmin 2.7.0(含)以上版本 中文顯示亂碼問題解決


MySQL資料庫的內容顯示亂碼問題解決方式:


phpmyadmin/libraries/select_lang.lib.php 這個檔案內容
‘big5′ => ‘big5′, 更改 ‘big5′ => ‘latin1′,
‘utf-8′ => ‘utf-8′, 更改 ‘utf-8′ => ‘ latin1′,


Title: 世界上最寬的網頁,眾多網頁設計師不斷更新中......


worm.bluesfear.com 世界上最寬的網頁,長1 米多,並且不斷更新中,很多網頁設計師共同完成,圖片很漂亮(5.1M,打開慎重)


Title: MyPhoneExplorer



Simply explore your SonyEricsson phone !
Connect your phone via cable, bluetooth or infrared and you'll be surprised how easy and efficient you can manage your phone with this compact software.


Features:
• Adressbook
• Organizer with calendarview
• SMS - archive, export, import, excessive messages,...
• Filebrowser with cachesystem to minimize datatransfer...
• Set phoneclock based on atomtime
• Handle your calls via PC
• and much more. f.e.: calllists, edit profiles, phonemonitor,...

MyPhoneExplorer is designed for SonyEricsson K700,K750,W800

Other tested phones: K700, K750, D750, W800, W550, W600, W810, W900, K600, K300, K500, Z520, S700, V800, Z600, Z1010, T300, T610, T630, T68



Title: CPU-Z


CPU-Z is a freeware that gathers information on some of the main devices of your system. 
 
CPU
- Name and number.
- Core stepping and process.
- Package.
- Core voltage.
- Internal and external clocks, clock multiplier.
- Supported instructions sets.
- Cache information.
 
Mainboard
- Vendor, model and revision.
- BIOS model and date.
- Chipset (northbridge and southbridge) and sensor.
- Graphic interface.
 
Memory
- Frequency and timings.
- Module(s) specification using SPD (Serial Presence Detect) : vendor, serial number, timings table.
 
System
- Windows and DirectX version.  
 

Download Latest version


Title: Photoshop Hangs At Reading Text Global Resources... Done


Problem

When you start Photoshop (known problem on Photoshop 7, CS, CS2), the program freezes halfway through its startup sequence. The message displayed whilst the splash screen freezes is "Reading Text Global Resources... Done". Restarting Photoshop and Rebooting your computer does not help.

Solution

This may be due to a corrupt preferences file. You may choose to either delete the Preferences in C:\Documents And Settings\YOURUSERNAME\Application Data\Adobe\Photoshop\VERSIONNUMBER\Adobe Photoshop VERSIONNUMBER Settings\, or the easier way would be to hold down SHIFT+CTRL+ALT immediately as soon as Photoshop begins to load. You will then be prompted if you want to delete your preferences file. Click Yes and Photoshop will work again.

Tags -


Title: feeds to my website by using Javascript


Yes! Using an RSS to Javascript service is a free and very simple way to add our feeds to your own website. After providing a few details, such as the URL of the feed you want to show, you will receive a small bit of Javascript code to add to your web page.

Some popular RSS to Javascript services are:


Title: How to backup MSN/Live Messenger emotion/icon?


The files are stored in
C:\Documents and Settings\{login name}\Application Data\Microsoft\
MSN Messenger\{10digits_number}\CustomEmoticons\

all "XXXX.dat" can be renamed to "XXXX.gif" to see the graphics of your emoticons.

另外亦可以下載backup程式:
http://www.baisoft.it/msnbackup_english.asp

Tags - ,


Title: 免費主題:Royale Theme Download


免費主題~~~for windowsxp

Description:

A new theme, potentially destined for Windows XP, has leaked out of Microsoft and onto the web. The theme appears to have come out of a beta version of Media Center 2005, currently in testing.

The theme is not a substantially different incarnation of the existing of Luna, the current default theme for Windows XP. You can see the main changes in the screenshots below; one could describe it as being a 'glass mod' of Luna.

As Microsoft knows, it is very hard to please everyone when it comes to themes. However, I think they can be reasonably certain that most people will like this new version of Luna.

Microsoft New Zealand is making available some free desktop backgrounds for use on your computer. Includes the New Zealand version of Bliss; the world-famous directional sign in Bluff; and the theme pack for Royale. Check back each month as we add more!

Download Link: http://pc.coolstylist.com/royale_theme.php


Title: How to install Windows from the I386 folder?


Most people cannot figure out how to install Windows XP, 2000, or 2003 from the I386 folder. It is really quite simple. They are looking for a file named Setup.exe or Install.exe. Well, it's neither of them.
I guess Microsoft did not want just anyone to install Windows without inserting the CD and using the Autorun. But Autorun does not work if you are installing from a DOS window, so now what.
OK, here it is plain and simple, if you open the I386 folder and scroll down to the W's you will find Winnt.exe and Winnt32.exe. The Winnt32.exe is the setup program used when you are in Windows. The Winnt.exe file is for DOS.
However, I have found that sometimes I run across a Windows 2000 installation CD that errors out when I try to use the Winnt32.exe. So I simple start the install while in Windows using the Winnt.exe file. It's a little slower but it works fine.
If you want to install the Recovery Console, you need to use the switch /cmdcon when starting Winnt32.exe. This switch only works on the Winnt32.exe file.
You need to prepare 1 dos bootable disc.


Tags -


Title: Screen Color ~


FREEv1.1Color Schemer ColorPix
 
ColorPix is a useful little color picker that grabs the pixel under your mouse and transforms it into a number of different color formats.

You can use the built-in magnifier to zoom in on your screen, click on a color value to copy it directly to the clipboard, and even keep ColorPix on top of all other apps and out of the way.

Best of all, there's nothing to install - just download the tiny app and off you go. So grab it now, it's FREE!

http://www.colorschemer.com/ColorPix.exe




Title: ~電腦維修詳情~


  ~電腦維修詳情~

專業電腦維修(上門) - 維修電腦("computer repair"),桌面電腦維修,清除病毒,數據修復,修理桌面電腦,桌面電腦修理,重裝Windows,整電腦,檢查電腦,寬頻共享,on-site support,Repair Computer,Repair PC,網路架設,上門安裝電腦,維修服務,寬頻共享,伺服器維修,手提電腦維修,網頁設計等。


Tags - , , , , , , , , , , , ,


Title: NTLDR is missing


Once, your computer show this message "NTLDR is missing" and unable to enter windows. You can try this solution. But not sure.

Solution:
1) Insert the Windows XP bootable CD into the computer.
2)When prompted to press any key to boot from the CD, press any key.
3)Once in the Windows XP setup menu press the "R" key to repair Windows.
4)Log into your Windows installation by pressing the "1" key and pressing enter.
5)You will then be prompted for your administrator password, enter that password.
6)Copy the below two files to the root directory of the primary hard disk. In the below example

we are copying these files from the CD-ROM drive letter &quot;E&quot;. This letter may be different on your computer.

copy e:\i386\ntldr c:\
copy e:\i386\ntdetect.com c:\


Once both of these files have been successfully copied, remove the CD from the computer and reboot.

Alt Solution
  1. Insert Windows XP
  2. Reboot and load recovery console from setup
  3. My windows drive is f: so navigate to your windows drive by typing cd/ x: (x   being your windows drive letter)
  4. Type chkdsk /r
  5. When its finished run the following 3 commands:
  >bootcfg /rebuild
  >fixboot
  >fixmbr

Tags -


Title: Flash ASP TextFormat...


Sometime, when I design a form flash, and pass the var to ASP, all Request will contain <Textformat.......>, how can I solve this problem?

Function RemoveHTML( strText )
    Dim nPos1
    Dim nPos2
   
    nPos1 = InStr(strText, "<")
    Do While nPos1 > 0
        nPos2 = InStr(nPos1 + 1, strText, ">")
        If nPos2 > 0 Then
            strText = Left(strText, nPos1 - 1) & Mid(strText, nPos2 + 1)
        Else
            Exit Do
        End If
        nPos1 = InStr(strText, "<")
    Loop
   
    RemoveHTML = strText
End Function

name = RemoveHTML(request.form(name));


Title: How to pass all special character in ASP


server.urlencode("String")


Title: Why Vista fail with Samba?


MS don't think 3rd party SMB server is safe....so....It encrypt all password send to 3rd party SMB server(linux samba).


You can try to change the local policy to solve the problem:

  • Configure the "Microsoft network client: Send unencrypted password to third-party SMB server" option to be ENABLE
  • Configure "Network security: LAN Manager authentication level: Send LM & NTLMv2 session security if negotiated"
  • Or
  • try:Run secpol.msc Go to: Local Policies > Security Options
  • Find "Network Security: LAN Manager authentication level" Change Setting from "Send NTLMv2 response only" to "Send LM & NTLM - use NTLMv2 session security if negotiated" Vista defaults to only send the more secure NTLMv2 protocol, which these NAS devices / Samba do not support.

Tags -


Title: What is SEO? SEO Checklist?


Before show you SEO check list, I should better to talk about what is SEO first, SEO (Search Engine Optimization) is the process of making your site attractive to search sites, easy for them , for example, Google, Yahoo, Live, etc. to list you, easy for people to find you, inducive to click-through when they do, and persuasively on-target when they arrive on search engine.

Notice I said nothing about "keywords" or "ranking highly". That's just part of the "easy to find" part. At its fullest, SEO is a multi-step, ongoing process that encompasses everything from your site's look and the form of its code, to what you say on each page and in all your site descriptions. At its simplest, SEO is a checklist of things you can add or modify in a relatively short time. SEO is also called Search Engine Marketing (SEM), which includes paid search listings and your overall marketing strategy.

  1. Keyword in Domain Name/URL
  2. Keyword in Title
  3. Keyword in Meta Description Tag
  4. Keywords Meta Tag
  5. Keyword Density in the body
  6. Keywords in header tags
  7. Keyword proximity
  8. Order of key phrases
  9. Keyword frequency
  10. Keyword prominence
  11. Keyword in ALT and TITLE tags
  12. Keyword Anchor Text
  13. Keyword Stemming
  14. Keyword Semantics
  15. No excessive deep linking
  16. Page to Page Linking
  17. Domain Name Extension
  18. File Sizes
  19. Hyphenate file names
  20. Fresh and new contents
  21. Total length of URL
Reference:

  1. http://www.kruse.co.uk/seo-checklist.htm
  2. http://www.web-site-search-engine-optimization.com/seo-checklist.html

Tags - , ,


Title: What is Greylisting?


Greylisting 的原理是:

 

  1. 此依機制是利用SMTP(SMTP RFC)回傳 error code 450的技巧來判斷對方是否為spamming software或是一般正常的MTA. 當mail server收到一封由未知寄件者(ip)寄來的郵件, mail server會退回此信件並標註上”try again later”. 正常的MTA, 在看到”try again later”時, 會再重送此信件, 但spamming software並不會理會而放棄重送.
  2. 在全世界大部分的發廣告信軟體都還沒有抵制 Greylisting 前,我們可以利用這個想法,將廣告信與一般信件分隔開。
  3. 此一機制的好處在於誤判率低, 效率高, 壞處是信件會延遲 5 分鐘到 1 小時送達而大多數的 mail server 設定,會在 10 分鐘到半小時內重送.
  4. 影響的範圍: mail server首次看到由 *未知* ip寄來的信且非spam mail, 第一次會加上”try again later”(SMTP error code 450)退回, 然後對方重送時就會收信來了. 重送的時間依對方server設定為主.
  5. 如果是屬於經常會有信件往來的 IP,則會進入 whitelist 直接 allow


Tags - ,


Title: Useful Crontab Job Example


定時 MYSQL 動作-LINUX下用CRON實現定時執行腳本
http://www.linuxdiyf.com/viewarticle.php?id=20726
Automate Your PHP Site Using CRON
http://www.phpfreaks.com/tutorials/28/1.php

Tags - ,


Title: Flash Form 中文亂碼問題 FORM2EMAIL


我整左個FLASH MAIL FROM夾 ASP,係EMAIL只係會收到亂碼加怪字!!
Flash個actionscript如果無加註係用system.deflaut.code的話,一般都會用unicode(utf-8)....~~~~
解決方法:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%Session.CodePage=65001%>

在GB2312模块的包文件最前面加上
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%Session.CodePage=936%>,其他编码的类推。

<%@ codepage=65001%>UTF-8
<%@ codepage=936%>简体中文
<%@ codepage=950%>繁体中文
<%@ codepage=437 %>美国/加拿大英语
<%@ codepage=932 %>日文
<%@ codepage=949 %>韩文
<%@ codepage=866 %>俄文


Tags - ,


Title: ASP remove Special Character


<%

Function ReplaceString(str)
     Dim originalPart, newPart
     Dim i

     originalPart = Array("~", "!", "@", "#", "$", "%", "^", "&", "(", ")", "_", "+", "=", "-", "'", """", "<", ">", ",", ".", "/", "?")
     newPart = Array("%7E", "%21", "%40", "%23", "%24", "%25", "%5E", "%26", "%28", "%29", "%5F", "%2B", "%3D", "%2D", "%27", "%22", "%3C", "%3E", "%2C", "%2E", "%2F", "%3F")

     For i = LBound(originalPart) to UBound(newPart)
          str = Replace(str, originalPart(i), newPart(i))
     Next

  For i = LBound(originalPart) to UBound(newPart)
          str = Replace(str, "25", "")
     Next


     ReplaceString = str
End Function
%>


Title: How to Prevent Winmail.dat Attachments from Being Sent in Outlook


The Problem

Email users sometimes find that they receive email messages with a strange file attached, called Winmail.dat. When they attempt to open this file, either it can't be opened at all, or it contains "garbage" data.
The situation causing this is that the sender has been using Microsoft Outlook. Outlook does not "play nice" with the other email programs. This causes problems, not for the sender of the email, but the recipient, particularly when actual files are attached to messages.


Microsoft Outlook ignores agreed Internet protocol and formats the message in its own "Rich Text Format". This is information along with the email so that it retains the look and feel of the document with formatting, fonts, and colours when it is received by another Microsoft Outlook user.
The "winmail.dat" file is unique to MS Outlook/Exchange clients, and Outlook/Exchange clients are the only e-mail clients that are supposed to be able to automatically interpret them.

Which is all very well for Microsoft Outlook users but not much use to anybody else. (Cynics would say that this is just another ploy by Microsoft to get us to use Microsoft products).

If the message just contains text then it is not a problem just ignore the Winmail.dat file. However if there is an attachment such as a word processed document then it will be bundled up in the Winmail.dat file and you won't be able to get at it.


The Solution

There is a simple solution. However as it is the senders email client that is at fault (Microsft Outlook), you should cut and paste the following instructions to the sender before they send the email again. (Or send the URL of this web-page)

There is a simple solution. However as it is the senders email client that is at fault (Microsft Outlook), you should cut and paste the following instructions to the sender before they send the email again. (Or send the URL of this web-page)

How to Configure Outlook NOT to send Winmail.dat attachments in Microsoft Outlook
With Microsoft Outlook open:

1) Click on Tools
2) Click Options, and then click the Mail Format tab.
3) In the Send in this Message Format list, select Plain Text, and then click OK.


This will set your default sending method to Plain Text, which will lose your special formatting options with fonts, colours, etc. However everyone, no matter what email program they are using, will now be able to receive your email with no problems.
There is more information on this topic in the Microsoft Knowledge Base


If you receive lots of these files you may wish to download a program that can decode and read Winmail.dat files yourself.


The simplest program (and free) can be found at:
http://www.biblet.freeserve.co.uk/. It is quite a basic program but will do all that you require to open these annoying attachments.

Mac users can try http://www.joshjacob.com/macdev/tnef/ . (We cannot comment on this program as we've not tried it but would be interested in comments from Mac users).


Further Reading:



服 務 保 證

我們誠意為閣下提供專業的電腦維修服務,各項收費均為實價,絕不取巧,如閣下對我們提供的服務或產品有任何意見

1. 我們的服務『不成功不收費』
2. 所有技術人員乃Microsoft(微軟)認可工程師,絶對百分百保證及信心。
3. 多年實戰經驗,非一般質素參次的維修員可比。
4. 服務範圍廣泛,當中包括全港十八區

服務範圍:中西區、東區、南區、灣仔區、九龍城區、深水埗區、油尖旺區、黃大仙區、觀塘區、北區、西貢區、沙田區、大埔區、離島區、葵青區、荃灣區、屯門區、元朗區,以至中國大陸等地方~~

歡迎致電電腦維修服務中心二十四小時客戶服務熱線XXXX-XXXX(由於經常受到電話滋擾,暫不能提供此服務)或直接聯絡,將會有專人解答閣下的疑問

如以上的電腦維修服務需在離島或偏遠地區進行;我們需額外收取費用$50交通費。


(Microsoft Certified Professional ID: 356099)