A better article on this topic看到很多文章說修改/etc/fonts/language-selector.conf,但在我的系統下面並沒有這個檔案。 後來,我從網上考了別人的一個檔案, 可以用。/etc/fonts目錄下的檔案有: conf.avail conf.d fonts.conf fonts.dtd local.conf按照這些檔案內建的注釋,
以前還看到一個論文: make friends with xxx(聊天機器人的名字)I am the psychotherapist. Please, describe your problems. Each timeyou are finished talking, type RET twice.key bindingWhy do you say key binding?she dont know what is a keyIs it because of your plans that
http://arstechnica.com/news.ars/post/20070620-plans-for-ubuntu-7-10-gutsy-gibbon-revealed.htmlit is not the news now.Development plans for Ubuntu 7.10 (codenamed Gutsy Gibbon) were announced last night on the Ubuntu development mailing list.
continued from "hello world"next...安裝好geany下載文檔glibc-doc 和 manpages-dev概念: static library: 打好包的程式, 每個調用都會複製一份到記憶體。 shared libray<beginning linux programming>: When a program uses a shared library, it is linked in such a way that it
表的一個欄位varchar類型,select * from a where f1=@var(傳入參數)f1比如為"AA,BGF,YH",@var為"BGF,YH,AA".也就是說相同的值,只是排列順序不同.怎麼寫個簡單函數來判斷相等?當然可以SUBSTRING()一個一個取來判斷,顯得比較麻煩.--建立使用者定義函數create function f_StrCmp(@strA varchar(1000), --源字串@strB varchar(1000),
Are you confused??#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ int cmpstringp(const void *p1, const void *p2); char *nations[5]={"china","america","australia","france","german"}; int i; for(i=0;i&
版本幾經不記得了, 去年的+--org.jdom.input.SAXBuilderBuilds a JDOM document from files, streams, readers, URLs, or a SAX InputSource instance using a SAX parser. The builder uses a third-party SAX parser (chosen by JAXP by default, or you can choose manually)
Protected Sub btnEncrypt_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnEncrypt.Click Dim config As System.Configuration.Configuration = WebConfigurationManager.OpenWebConfiguration(Request.ApplicationPath) Dim section
/*-- 資料測試環境 --*/if exists (select * from dbo.sysobjects where id = object_id(N'[tb]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)drop table [tb]GOcreate table tb(單位名稱 varchar(10),日期 datetime,銷售額 int)insert into tb select 'A單位','2001-01-01',100 union