2008-06-21から1日間の記事一覧

PING打つ

C#

using System.Net.NetworkInformation; public Boolean ping(String serverAddr) { try { Ping p = new Ping(); PingReply reply = p.Send(serverAddr); p.Dispose(); if (reply.Status == IPStatus.Success) { return true; } } catch(Exception ex) { trac…

mercurial設定

~/.hgrc [ui] username = shokai <sho@mac.macbook>bootcamperなのでwinxpのほうは shokai にしておきたい リポジトリ/.hg/hgrc [paths] default = ssh://user@zanmai.com/src/myproject fs = ssh://user@fs.shokai.org/src/myprojectこれで hg push だけでdefaultに送れる あ</sho@mac.macbook>…