Stuart ONE

我有一头小毛驴,我从来也不骑……

 

2006年6月25日

Using anti-alias

set anti-alias for graphics:
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);


set anti-alias for components:
// Making a JTextArea use anti-Alias fonts
// only works in JDK 1.5+
jtextArea.putClientProperty(
com.sun.java.swing.SwingUtilities2.AA_TEXT_PROPERTY_KEY,
Boolean.TRUE ); 

posted @ 2006-06-25 21:28 Stuart 阅读(390) | 评论 (0)编辑 收藏

2006年4月12日

删除某路径下所有某后缀名的文件

    $  find . -name \*.NAME -exec rm '{}' \;

posted @ 2006-04-12 13:04 Stuart 阅读(297) | 评论 (0)编辑 收藏

2006年3月27日

mysql backup & restore command, AS IF..... -_-#

Backup:
mysqldump -u USERNAME -p DBNAME > OUTPUT.dump

Restroe:
mysql -u USERNAME -p DBNAME < OUTPUT.dump


posted @ 2006-03-27 16:46 Stuart 阅读(273) | 评论 (0)编辑 收藏

2006年3月25日

The vista fonts

I added the vista fonts into my laptop, i like the corbel font, and the numbers are cute:-)

Here's the steps:(In fact im still quite confused abt the setting fonts in debian...#*(&%#$...and i think these steps isn't the right way although it works)

1. put the vista fonts in a folder and put the folder into /usr/share/fonts/truetype/
2. add these in the ~/.fonts.conf
<match target="font">
   
<test name="family">
   
<string>Calibri</string>
   
<string>Cambria</string>
   
<string>Candara</string>
   
<string>Consolas</string>
   
<string>Constantia</string>
   
<string>Corbel</string>
   
</test>
 
<edit name="autohint">
       
<bool>true</bool>
   
</edit>
</match>
3.now u can choose ur fonts in the gnome.....

PS: for step 1, i think put the vista folder in the ~/.fonts/ directory is ok too....(i never tried)

posted @ 2006-03-25 12:09 Stuart 阅读(236) | 评论 (0)编辑 收藏

2006年3月21日

create user in MySQL 5.0

The create user command:
mysql> CREATE USER yy IDENTIFIED BY '123';

grant:
mysql> GRANT ALL PRIVILEGES ON *.* TO 'user'@'host' [ IDENTIFIED BY'password' ];

flush:
mysql> flush privileges;

now u can login with:
$ mysql -u username -p

posted @ 2006-03-21 22:21 Stuart 阅读(2750) | 评论 (0)编辑 收藏

2006年3月9日

About replace text

今天老安又给我上了一课:

具体内容是关于文件里面text的替换,首先是VI里的替换:

%s/ORIGINAL_TEXT/REPLACE_TEXT/gc

然后呢,因为一个folder下的所有文件都需要替换某些text,于是又有以下这个script(注:进入到该folder所在位置后):

for f in *do  sed 's/ORIGINAL_TEXT/REPLACE_TEXT/' < $f > $f.new; mv -f $f.new $f; done

shell programming 还真屌……

posted @ 2006-03-09 16:13 Stuart 阅读(316) | 评论 (0)编辑 收藏

2006年3月7日

List the fonts currently using

fc-match --sort

posted @ 2006-03-07 11:03 Stuart 阅读(270) | 评论 (0)编辑 收藏

2006年2月22日

在Debian下调字体

1. First of all you can see all the available fonts using
$ fc-list -v

2. Modify the file /etc/fonts/fonts.conf, make ur own conbinatory font.

3. Now we have to make our changes take effeck, using:
# fc-cache -v

4. If you are not satisfied with the font, just repeat step 2 & 3.

posted @ 2006-02-22 17:38 Stuart 阅读(272) | 评论 (0)编辑 收藏

2006年2月20日

append a text file's content in vi

move ur cursor to somewhere u want to append from, type the " :r FILENAME ".

posted @ 2006-02-20 15:58 Stuart 阅读(238) | 评论 (0)编辑 收藏

2006年2月8日

Add the apt key

$ wget -O -  http://ftp-master.debian.org/ziyi_key_2006.asc  | sudo apt-key add -

posted @ 2006-02-08 12:01 Stuart 阅读(262) | 评论 (0)编辑 收藏

仅列出标题  下一页

导航

统计

公告

常用链接

留言簿(3)

随笔分类

随笔档案

文章分类

相册

BlogRoll

Tech websites

搜索

积分与排名

最新评论

阅读排行榜

评论排行榜