(The following assumes that a USB network adapter is available to get internet connection. If not, you will need to use the regular iso instead of netinst in step 2 and download the kernel package mentioned in step 7 in Windows before installing it in Linux.)
1. Make room for Linux: In Windows 8, use disk management to make room for Linux installation. (See, e.g., this.)
Visual Studio 2010 Express提供了一個簡單的C++編譯環境:『Visual Studio 命令提示字元 (2010)』。
開啟後的終端機環境中可以用『cl』命令來編譯連結一般的C++程式。如:
cl hello.cpp
而glut的程式(在glut有正確安裝後)也可以直接編譯。
不過如果要編譯WIN32的程式,在命令列則要加上kernel32.lib,user32.lib,gdi32.lib等額外的程式庫以供連結:
*** 本則資訊已過時 *** Linux版的Google Earth從發行以來,中文的顯示一直都不能隨裝即用。一個主要的原因在於它用的圖形介面程式庫是它所附帶,32位元的QT動態程式庫。因為不是使用者系統中所的QT動態程式庫,使用者不能用qtconfig來更正中文字形。這一點,在一般32位元的Linux系統上,可以用系統中已安裝的動態程式庫(libQT*.so檔們)來取代,詳細步驟可以參考[1]。在64位元的系統上,由於系統中的32位元相容程式庫常有不全(如debian sid的libQtWebKit.so),單純的刪去附帶的版本會造成程式無法啟動。這時,可以試著用[1]中打包好的檔案來跑看看。但如果還是動不了,要自行補全所有的程式庫可能要費好一些功夫。 一個比較簡單的方法是利用QT程式庫的通用命令列參數: -stylesheet來指定Google Earth的style(見[2])。這個方法用在Window下,網路上已經多次被提到(例如[3])。只是,雖然Google Earth是用QT寫成的,Google似乎用到了一些標準外的方法,以至於在指定stylesheet時一些popup的繪製立即會出現問題。而對style的指定,也常看不到想要的效果。
I prefer to indent my code with TABs. Some people do not like that because a TAB can represent different amount of spaces in different editors or viewers. However, I like TABs for their semantic meaning of levels of grouping. How a code editor or viewer displays this grouping information should be left to the liking of its user. And, using two spaces (or four) is just wasting an extra character when we can just set the TAB size to 2 (or 4). I also favor compactness and readability. It's desirable to make the code visually shorter as long as it remains readable.