Tue, 07 Sep 2004
Beslan tragedy

Events of a few last days couldn't leave anyone cold. For me, as a father of two small childs, it is an unthinkable imagination that some of this gruesomeness should happen to any of them. I don't understand to those 'so-called' people, why they did do, why they hurt innocent childrens and took so much hostages for their 'high' objectives. The result of this terrorist act - 338 died, half of them children.

I've still in front of my eyes the images of killed childrens, their burried and mutilated bodies. And tears scramble out of my eyes. Me - personally - I don't understand why to process a courts, why to waste money of all of us... simple behead or halter them without mercy... as they did to the other innocent people.


(posted at 16:06 | filed under press | link)    (comments | add new)
pyblosxom fully functional! :)
aargh. I've done RewriteRules for py*. There's my configuration from apache:
	Alias /blog "/home/web/tools/blogs/znouza"
	
	<Directory "/home/web/tools/blogs/znouza">
    	DirectoryIndex index.cgi
		Options ExecCGI Indexes FollowSymlinks
		AllowOverride All
		Order allow,deny
		allow from all
		RewriteEngine On
		RewriteCond %{REQUEST_FILENAME} !-f
		RewriteCond %{REQUEST_FILENAME} !-d
		RewriteRule ^(.*)$ /blog/index.cgi/$1 [L,QSA]
		<Files index.cgi>
		     SetHandler cgi-script
		</Files>
		<Files config.py>
			deny from all
		</Files>
	</Directory>


(posted at 14:03 | filed under | link)    (comments | add new)
My first Rhino model
I've finished my first rhino3d model - this child choo-choo :)

choo-choo :)

I'm looking forward to Rhino4 :) Tried WIP version and was excited.


(posted at 10:21 | filed under rhino3d | link)    (comments | add new)
Direct video memory access
UInt32       *ptrScreen = BmpGetBits(WinGetBitmap(WinGetDisplayWindow()));
// 8bits/color, 320x320 display.. fill entire display with black
UInt32       count = 320*320

while(count--) { ptrScreen[count] = 0; }

* since OS3.5

is neccessary to evalute number of colors used and desired resolution. Buffer is by rows from upper. 16bit (65535) means 2bytes per pixel, 256 means 1byte etc...

for PalmOS<3.5 use the following:

WindowType  *winP;
winP = WinGetWindowHandle( win );
ptr = winP->displayAddrV20;

(posted at 09:21 | filed under programming/palmbits | link)    (comments | add new)
still not working
my blog isn't still working at all :(

(posted at 00:37 | filed under | link)    (comments | add new)