スカイプの品質測定ツール
2005-06-15-7: [Skype]
http://hkspage.livedoor.biz/archives/24094157.html
意味は以下の通り.
Jitter | 遅延の揺らぎ (小さい方がよい) |
Packet loss | パケットロス |
Roundtrip | (往復での) 遅延時間 |
Relays | 中継ノードの数 (0 は直接通信) |
2005-06-15-7: [Skype]
http://hkspage.livedoor.biz/archives/24094157.html
意味は以下の通り.
Jitter | 遅延の揺らぎ (小さい方がよい) |
Packet loss | パケットロス |
Roundtrip | (往復での) 遅延時間 |
Relays | 中継ノードの数 (0 は直接通信) |
2005-06-15-6: [Skype]
http://www.vskype.com/
まだ試していないけど,UI は以下のような感じ.
Skype 本体にメニューとボタンがつく.
- 注意
Skype 社の純正のサービスではない.あくまでサードパーティーのプラグイン
関連記事:
[2005-06-24-1] ビデオチャットソフト vSkype にまつわるよくある誤解
[2005-06-11-1] Skype 用ビデオ通信プラグイン vSkype
2005-06-15-5: [Solaris]
http://www.opensolaris.org/os/announcements/
- OpenSolaris Source Browser
http://cvs.opensolaris.org/source/
検索もできて便利.
2005-06-15-4
http://support.microsoft.com/default.aspx?scid=kb;ja;875569
URL を見れば分かる.
2005-06-15-3: [Google]
http://blog.goo.ne.jp/kiyo1977jp/e/4e47ec841a44a3d5981ad118b1d693db
Google のロゴで使われているフォントは「Catull」という名前らしいです
なんか,あっさり作れるみたい.
- ref.: Catull:
http://www.identifont.com/show?HF
2005-06-15-2: [CSS]
http://www.lucky-bag.com/images/popup.html
- via: Lucky bag::blog
http://www.lucky-bag.com/archives/2005/06/css_popup.html
いつか使うかもしれない.
2005-06-15-1
エラーが出てビルドができない件 ([2005-06-14-8]) は,ドキュメントを見たらあっさり解決.
windows\README を見ると
To build Wget with MSVC run configure.bat (in the main Wget directory)
with the argument --msvc, and then run nmake. At a certain point in time
Wget exposed some compiler bugs in MSVC 5.0; later Wget started to
expose (at least http.c, retr.c) some other compiler bugs in MSVC 6.0
SP6 (cl.exe version 12) which could/can be worked around by compiling
completely without optimization or at least partially (by using
#pragma optimize("g",on) and "off" around offending functions).
However, read the rest of this document before continuing.
との事なので,以下のパッチを当てたら問題なくいけた.
--- src\wget.h-orig 2005-05-14 21:36:30.000000000 +0200
+++ src\wget.h 2005-06-15 11:35:27.643158400 +0200
@@ -32,6 +32,8 @@
includes some often-needed system includes, like the obnoxious
<time.h> inclusion. */
+#pragma optimize("g",off)
+
#ifndef WGET_H
#define WGET_H
- GNU wget 1.10 for Win32 binary
http://pocari.org/tools/wget-win32/wget-1.10-win32-binary.zip
実行には,OpenSSL のライブラリ (ssleay32.dll,libeay32.dll) が必要.
- OpenSSL 0.9.7g for Win32 binary
http://pocari.org/tools/openssl-win32/openssl-0.9.7g-win32-binary.zip
- ref.:
[2005-06-14-8] GNU wget 1.10 リリース
[2005-03-20-1] GNU wget for Win32 を作る