2007年7月31日 星期二

832 Financial Risk

題目網頁:http://acm.uva.es/p/v8/832.html

這是我目前做過最心機的題目了,重點在於最後幾句
Your program must write the percentage of uncovered risk, truncated to 2 fractional digits.
原本以為用 %.2lf%% 就可以解決,上傳了10幾遍還是沒辦法,靈機一動才想到這幾句話的意思...

有可能的Output: 30%、11.85%、10.6%

2007年7月25日 星期三

利用 Filezilla 連接 SFTP

使用環境:Windows+Filezilla Portable(隨身碟)
  1. 進入Filezilla的站台管理員,新增一站台,輸入主機名稱(port會自行調整),伺服器型態選擇 "SFTP使用SSH2"輸入 使用者名稱 與 Account ,即可連線。
  2. 利用之前不需輸入帳號密碼便可登入SSH做出來的Key,首先到Putty作者的網頁下載Pageant,執行後,畫面右下角會出現Pageant的圖示,選擇 add key 匯入之前的.ppk檔,輸入passphrase,連線後Filezilla一樣會跳出要求密碼的視窗,再次輸入passphrase,即可登入。

參考資料:
http://filezilla-project.org/wiki/index.php/Howto

2007年7月24日 星期二

一些有關 C 語言的連結

C Standard Library:
http://www.utas.edu.au/infosys/info/documentation/C/CStdLib.html

裡面包含了C99才加入的lib,不過說明比較少,平常用的話,我比較喜歡 Eric Huss 1997年寫的

The C Reference Guide:
http://www.acm.uiuc.edu/webmonkeys/book/c_guide/

雖然是比較舊的版本,但是說明比較詳細,有些還會附範例,我直接存到電腦裡,要寫的時候直接開起來看。

FAQ:

http://c-faq.com/

Infrequently Asked Question:
http://www.plethora.net/~seebs/faqs/c-iaq.html


裡面有些問題還挺有趣的,平時不會想到,有空可以研究研究。

2007年7月11日 星期三

Uniform Server

Introduction
The Uniform Server is a WAMP package that allows you to run a server on any MS Windows OS based computer. It is small and mobile to download or move around and can also be used or setup as a production/live server. Developers also use The Uniform Server to test their applications made with either PHP, MySQL, Perl, or the Apache HTTPd Server.

官方網站
文件

目前最新版本:Uniform Server 3.5-Apollo

安裝後,phpmyadmin沒辦法使用,說啥
Cannot load mysqli extension. Please check your PHP configuration.

找了一堆討論看不出重點,就不管了,反正用console可以連的上就好,順便練習SQL語言,console連線方法在文件裡有講到。


7/16
知道問題出在哪邊了:之前自己安裝php和mysql的時候,把libmysql.dll自己複製到C:\windows下面,砍掉以後就一切正常,不然php根本沒辦法支援mysql...
以前還寫啥教學文章,現在看看真是膚淺...