這是兩個很早就發現的 google map API 運用,把它們收下來。
January 2009
RNA Biology 期刊投稿新規定
O'Reilly radar 2008年(去年)12 月有一則文章,提到,RNA Biology 期刊有一個新的投稿規定,就是該期刊在刊登你的學術論文之前,要求你要將論文投到 Wikipedia RNA 的目錄下。
I love the RNA Biology journal's new guidelines for submissions, which state that you must submit a Wikipedia article on your research on RNA families before the journal will publish your scholarly article on it:
This track will primarily publish articles describing either: (1) substantial updates and reviews of existing RNA families or (2) novel RNA families based on computational and/or experimental results for which little evolutionary analysis has been published. These articles must be accompanied by STOCKHOLM formatted alignments, including a consensus secondary structure or structures and a corresponding Wikipedia article. Publication in the track will require a short manuscript, a high quality Stockholm alignment and at least one Wikipedia article; Each centered around the RNA in question.
這樣的訊息,在 Nature news - Publish in Wikipedia or perish 也有報導。
[Read more]
兩個常用到的 mysql 指令:修改密碼與建立資料庫
先說比較簡單的「修改密碼」
$ mysqladmin -u root -p password theNewPassword {enter}
{prompt}
$ Enter password: oldPassword
建立 database
你是否預過一種狀況,明明資料庫建好了,一個系統安裝起來之後,開始新增資料。好不容易寫完一篇文章,送出之後,一看,中文字全變成亂碼(例如:?????????),那大概你遇到了資料庫編碼(encoding)沒有設定正確的問題了。為甚麼會發生這樣的事呢?
我們大部分利用 terminal 介面建立資料庫的時候,都是登入 mysql 之後,直接使用指令 CREATE DATABASE databasename 來新增(大寫部份是 mysql 的指令),然而,對於使用中文的我們,有些時候若是預設的資料庫編碼不是 utf8,或 big5,那我們將來寫入的中文資料,在存入資料庫的時候,就會用不正確的方式編碼,結果,存進去的東西就不對了,以至於當要讀出來的時候,就會變成 ???? 這樣奇怪的東西。
所以為了保險起見,建立資料庫的時候,最好還是指定資料庫的編碼標準,以免出錯。由於我的資料庫將來可能會有各種語言寫入,所以我大半都是採用 utf8 編碼。
[Read more]