MicroToo Banner MicroToo logo

Blog navi

Author

I'm a junior C# .NET developer and webdeveloper, and an experienced Windows Vista beta-tester, user and admin.

For .NET I mainly use the C# language, because of its similarity to my most favorite C++ language and to Java.

Since I've followed the Vista development starting with its betas, I feel now pretty confident to give opinions and advices to various Vista-related topics.

In summer of 2007, I finally found time to create this blog.

More about me ...

Latest Blog Posts

Eclipse 3.3.2 (PDT), Java 1.6.0 and Ubuntu 8.04 Hardy

Tue, 17. June 2008, 20:32:28
total reads 31 popularity 0%

My new Microsoft Wireless Laser Desktop 6000 v2

Thu, 30. August 2007, 19:08:32
total reads 1097 popularity 10%

Windows Vista and on my Asus A6R notebook

Thu, 23. August 2007, 20:19:38
total reads 2025 popularity 19%

Asus A6 - Vista to XP to Ubuntu comparison

Thu, 13. September 2007, 13:24:39
total reads 595 popularity 6%

My ASUS A6R notebook disassemble / dismantle

Sun, 5. August 2007, 01:20:07
total reads 2236 popularity 21%

Latest Comments

Me: thx inSane, gr8 page ......
inSane: I know this site with Index ratings: http://minpaso.goga.co.jp/search.php...
Me: btw. try visiting tom's hardware guide, there are some Vista charts. btw, Does anyone know any other Vista Performance Index ch...
Me: Hi Lambrecht, can't tell you why your rating is 2.2, but I run the tests periodically and still get 3.0. (running SP1 now) ...
Lambrecht: Nice little "guide" But how do you achieve the 3,0 score in graphics?? I have almost the exact laptop, 1,7Ghz, 2Gb D...
tommy: hi. how to dissasemble all parts? there is one srew or smth near CPU. i couldnt remove it. it holds all case...help me please....
Me: Hi, well, I guess removing the bay should not be that difficult,but I haven't tried it, yet. There are 2 chasis screws hold...
Piter: Do you know how to remove a DVD-drive?...

Tags

.NET dotNet SilverLight WPF/E

Archive

Activity

Activity graph
Average activity per week

ClusterMap

Locations of visitors to this page

Affliliate

None Yet

My Vista Ranks

Component Subscore Base score
Processor 3.4
3.0
  Determined by lowest subscore
Memory (RAM) 3.9
Graphics 4.1
Gaming graphics 3.0
Primary hard disk 3.8
Windows Vista (TM) Business
More about ranks, rank charts and hardware configuration

RSS,Tools,Links

rss feed

About my blog

The main point of all this fuss is to share some of the ideas that I have about .NET or ASP.NET programming, about Microsoft Visual Studio, the ultimate and my most favorite developers tool, embedded system based on Windows platform (for more professional information go to Mike Hall's blog on MSDN) and the latest desktop operating system by Microsoft - the Windows Vista.

Latest blog posts

Eclipse 3.3.2 (PDT), Java 1.6.0 and Ubuntu 8.04 Hardy

Tuesday, 17. June 2008, 20:32:28
I use Eclipse for C++,C,Java,PHP and Embedded Linux development, thus I try to maintain more or less recent version of all plugins. The new plugins required new Eclipse. so I had to remove the one packed with distribution and replace it with my preffered one. This, however, turned out to be quite painful.

Read more

0/10
total reads 31 popularity 0.299373%

CAPTCHA - in user friendly way

Friday, 15. February 2008, 15:08:54
As probabely all of us, even I have to deal with an enormous ammount of spam and other forms of internet abusal. There are many reliable ways that have been invented to prevent computer/robot-based spamming, but most of them are very user unfriendly. In the following lines, I'd like to offer some better solutions.

Read more

0/10
total reads 113 popularity 1.06572%

If I should buy a new PC today, it would be ...

Sunday, 18. November 2007, 21:36:23
For a long time a wanted to keep an up to date list of components I would use in my new hypothetical computer. As ussual, I choose the best price/value-ers, that an average person like me could afford. The overall goal is that the price of the "testacles" should not exceed 1000$.

Read more

0/10
total reads 189 popularity 1.7752%

Windows Mobile 6.0 and ASUS MyPal 696

Sunday, 23. September 2007, 11:21:10
I just bought this latest Asus PDA and tried to make a simple .NET compact framework application.

Read more

0/10
total reads 1196 popularity 11.1723%

Asus A6 - Vista to XP to Ubuntu comparison

Thursday, 13. September 2007, 13:24:39
I just wrote down some mainly hardware points, for anyone trying to decide which OS to install.

Read more

0/10
total reads 595 popularity 5.56437%

PowerShell in Windows Server 2008

Friday, 07. September 2007, 18:13:05
Microsoft finally included a great bash-like console utility, that can be used for both scripting and controlling windows. It's called "PowerShell".

Read more

0/10
total reads 254 popularity 2.37718%

Photogallery snapshots

Code snapshots

PHP (for now) Code Sample

<?php
require 'modules/final.php';
/*
delete_by_query,delete_by_value
insert_by_query,insert_by_array,insert_by_string
table_out,table_out_by_cols,table_out_by_col_names,custom_out_by_array,custom_query_by_tags
mysql_connection,query,get_last_result
set_table,set_database,set_cols
tables,databases,cols*/
function DatetimeToDate ($datetime) {
$year= substr($datetime,0,4);
$month = substr($datetime,5,2);
$day = substr($datetime,8,2);

$hour = substr($datetime,strpos($datetime," 
")+1,strpos($datetime,":")-strpos($datetime," ")-1);
$minute = substr($datetime,strpos($datetime,":")+1,2);
return "$day.$month.$year $hour:$minute";
}
function chradj($ascii){
return chr($ascii+60);
}

$database = new mysql_deletes ('localhost','root','cocacola666','temoscz');
//$database->tables();
$database->set_table('mazoretky');
//var_dump($database->cols());
$fxsTargetCol=array( 'datetime', 'id' );
$fxs =array( 'DatetimeToDate', 'chradj' );
$fxsargs =array( array('%s'), array('%s') );

$newcols=array();
$usecol=array();
echo "ok";
$colnames="id,Datum a cas,misto,popis";
$database->table_out_fx_cols($fxsTargetCol,$fxs,$fxsargs);
//$database->form_out();
 
<?php
require 'modules/final.php';
/*
delete_by_query,delete_by_value
insert_by_query,insert_by_array,insert_by_string
table_out,table_out_by_cols,table_out_by_col_names,custom_out_by_array,custom_query_by_tags
mysql_connection,query,get_last_result
set_table,set_database,set_cols
tables,databases,cols*/
function DatetimeToDate ($datetime) {
$year= substr($datetime,0,4);
$month = substr($datetime,5,2);
$day = substr($datetime,8,2);

$hour = substr($datetime,strpos($datetime," 
")+1,strpos($datetime,":")-strpos($datetime," ")-1);
$minute = substr($datetime,strpos($datetime,":")+1,2);
return "$day.$month.$year $hour:$minute";
}
function chradj($ascii){
return chr($ascii+60);
}

$database = new mysql_deletes ('localhost','root','cocacola666','temoscz');
//$database->tables();
$database->set_table('mazoretky');
//var_dump($database->cols());
$fxsTargetCol=array( 'datetime', 'id' );
$fxs =array( 'DatetimeToDate', 'chradj' );
$fxsargs =array( array('%s'), array('%s') );

$newcols=array();
$usecol=array();
echo "ok";
$colnames="id,Datum a cas,misto,popis";
$database->table_out_fx_cols($fxsTargetCol,$fxs,$fxsargs);
//$database->form_out();
 
µ2 | MicroToo © 2007, admin@microtoo.orgNot affiliated with the Microsoft company. Vista, .NET and SilverLight are trademarks of the Microsoft company.