「ぎょーむ日誌」目次に戻る | KuboWeb top に戻る | twilog | atom

ぎょーむ日誌 2000-12-(11-20)

苦情・お叱りは, たいへんお手数かけて恐縮ですが, 久保 (kubo@ees.hokudai.ac.jp) までお知らせください.

2000 年 12 月 11 日 (月)

Wireless Trackball [無線トラックボール]
赤外線方式.小さい.
2 ボタン.詳細はまた
おいおい.ともかく鍵
盤二枚体制はおしまい.

	#include	<iostream>
	#include	<fstream>
	#include	<string>

	class MyNewStream :
		public ofstream
	{
	public:
		MyNewStream( const string& fn ) :
			ofstream( fn.c_str(), ios::out ) { }
	};

	int main ( void )
	{
		MyNewStream new_stream( "tmp.txt" );
		new_stream << "Hello, Our New Stream !" << endl;
		return 0;
	}
	#include        <iostream>
	#include        <fstream>
	#include        <string>
	class MyNewStream :
	        public ofstream
	{
	public:
	        MyNewStream( const char* fname ) :
	                ofstream( fname, ios::out ) {}
	        MyNewStream& operator<<( const string& data );
	        MyNewStream& operator<<( __omanip func );
	};

	MyNewStream& MyNewStream::operator<<( const string& data )
	{
	        string modified( "// " + data );
	        write( modified.c_str(), modified.size() );
	        return *this;
	}

	MyNewStream& MyNewStream::operator<<( __omanip func )
	{
	        return ( MyNewStream& )( *func )( *this );
	}

	int main( void )
	{
	        MyNewStream new_stream( "tmp.txt" );
	        new_stream << "Hello, Our New Stream !" << endl;
	        return 0;
	}

2000 年 12 月 12 日 (火)

Right Click [右クリックどらっぐ]
親指でクリックしつつ人差指側面で
玉を転がしてる.慣れが必要.ちな
みに中指の位置に左クリックトリガー
あり.これは使いやすい.普段は親
指で玉を転がし人差指でクリック.

	        Kstream kstream( "tmp.txt" );
	        kstream << "BEGIN\tFOREST\t" << 0  << endl;
	        kstream << "data1\t" << 2000 << endl;
	        kstream << "BEGIN\tTREE\t" << 1  << endl;
	        kstream << "data2\t" << 3.1415 << endl;
	        kstream << "END\tTREE\t" << 1  << endl;
	        kstream << "END\tFOREST\t" << 0  << endl;
	BEGIN   FOREST  0
	        data1   2000
	        BEGIN   TREE    1
	                data2   3.1415
	        END     TREE    1
	END     FOREST  0

2000 年 12 月 13 日 (水)

[無線玉ほーむぽじしょん]
写真撮影のため左手で持つ (では
昨日の写真は?).私は筆記も箸も
完全に左利きなのにポインティン
グディヴァイスは両方で使える
(なぜか右のほうがやや良い).


2000 年 12 月 14 日 (木)


2000 年 12 月 15 日 (金)


2000 年 12 月 16 日 (土)


2000 年 12 月 17 日 (日)


2000 年 12 月 18 日 (月)

	#if !defined(___Class_Forest)
	#define ___Class_Forest
	……(本文)……
	#endif
	MLFITTING := $(shell find $$HOME/bin -type f -name 'mlfitting' -print )
	...
	mlfitting:
	ifeq ($(MLFITTING),)
		@echo -e "ERROR: Install $(HOME)/bin/mlfitting first"
		@exit 1
	else
		...
	endif
lib_evision

2000 年 12 月 19 日 (火)

	pub.cbd(pub.mwd)                -pub--- 
	pub.cld(pub.mwd)                -pub--- 
Mori no Shizen-Shi [森の自然史]
「複雑系の生態学」なる奇怪
な副題は編者・甲山さん発案
(ただし採用反対),もう一人
の編者・菊沢さんと出版社の
意向で決まったとのこと.


2000 年 12 月 20 日 (水)


KuboLog | KuboWeb