Quite fun captcha

by aristosamar 3. October 2008 21:02

That's the captcha I have been asked today uploading photos to Facebook:

 

Scary stuff :-)

APasswordSafe released.

by aristosamar 10. September 2008 09:55

The desktop version as well as mobile one has been released.

Both are ready to be downloaded from http://www.aristo-samar.com/pc.en.aspx

Any comments are appreciated :-)

APasswordSafe private Beta

by aristosamar 5. August 2008 15:36

I was busy developing a commercial project called AroraTool for my company for last six months.

I decided to take few days breake and develop something else.

Freeware apps that I can share with others for free is what always turns me on. I have spent few days writing:

The APasswordSafe is a C#.NET (Microsoft .Net Framework 2.0 required) application which purpose is to store highly confidential information like web-site passwords, bank details, pins etc. in one safe place.

To encrypt this all information The APasswordSafe uses TripleDES algorithm with (forced by application) strong master-password as an encryption key.

I have heard an IT-Conversations presentation about the DES algorithm. A few facts which I found worth to mention are:

1. People often use short one-word passwords.

2. English disctionary consists about 411 000 words

3. To breake one-word-english password encrypted by DES using brut-force takes about 20min for average laptop.

4. Long and strong password with embeded digits and capital letters is... practicaly unbreakable by brut-force techniques.

I decided to use TripleDES algorithm and force a bit an user to use min 12 characters master-password with one digit and one capital letter.

It gives strong security and sure that an user data is safe...

 

In few days from now, when we will finish beta testing of this app I will publish a bit more about it here.

The Best Software Writing I: Selected and Introduced by Joel Spolsky

by aristosamar 28. February 2008 18:30

I have just purchased "The Best Software Writing I" by Joel Spolsky.
I have to tell you I cannot wait to start read it.It is not in my native language which I usualy prefer to read in, but I don't mind.
Why? Because I have read a few reviews about this book.If you, by some reason didn't read it yet check here and
here.


[update]
It is great book indeed.I haven'r read such a good position for long time.
Worth to buy? Definitely :-)

LINQ - Passing query results

by aristosamar 22. December 2007 06:11

There is something in C# I am crazy about last time. There really is.

It is the LINQ, which stands for Language INtegrated Query.LINQ came up along with C# 3.0 and .Net Framework 3.5.I really enjoy it...

but...

Have a look at this code:

 

It works ok unless we want to pass the result out from the Fo method by some way.

Using var query this trick is not possible, because of an unknown type (maybe rather dynamic type) the var will converted into on the compile time.

It is not possible to pass var query into a method too because of the same reason.It looks to me like the biggest disadvantage of LINQ.The fact that we are unable to pass var into and pass it out of the method means that everything we want to do with the query result has to be done within the Fo() method.

It is not very convenient I would say.
I would rather think about something like this:

 

This would be nice but it wont work. The type of var query is dynamically created by compiler which takes a look at the syntax on the right side of = sign.
Trying to declare var query as we have done in the last example, will give no chance for compiler to figure out the type of the var.

I was looking for the solution and I have found it somewhere on the net.So, to be able to pass the result whether out or into the method, or even declare our variable outside the method and use it within it we can use IEnumerable , which is in System.Collections.Generic namespace.

Lets try something like that:

 

Right now your result is accessible from any part of your class.
It can be also passed into and out of the method.

It made me happy about LINQ again...

Tags:

C#

DDD6 - UK Developer Community Event

by aristosamar 26. November 2007 05:59
I had a pleasure to attend DDD6 in Reading last Saturday.

The day started for me about 3am. I have driven over 200 miles one way from Chadderton to be there and enjoy the event together with rest of UK Developer Community.
Great people, presentations, place... No more to add...
If, for some reason you're not familiar with this event, feel free to visit the website and join us at DD7 then :-)

Tags:

Events

And it came to past...

by aristosamar 25. November 2007 12:00
... that I've got my own blog as well.

I have been thinking about my blog since some time, and finally... here it is.The first idea was to create ( I mean code ) my blog myself, but I found myself whether too lazy or too busy to do it. So far the Blogger.com satisfies my expectations. I am gonna leave it like that till... I'll change my mind.

What will be this blog about? Definitely about computers... maybe not exactly, but for sure about programming, what is my bread and butter every day.

Taking example of Rory's blog (which I like to visit sometimes to separate my mind from binary-way thinking) I will try to blog about everything, not only about tech stuff.

Who am I?
My name is Mariusz.I live in North West UK, study Computer Science - Bsc (Hons) in Computing at The Open University in Milton Keynes and try to become heavily addicted software developer... as my partner used to say :-) [edit - She said that it happend long time ago already]

Some of my fun... but not only... stuff you may find on my website. If you have visited my website, you already know that I live with my partner Aneta and 19 (at the moment) month old daughter Michelle.I try to post as much pictures of her as possible. I'm actually freaking about it. Feel free to see them all.

Apart from that I work (almost full time) on Express Solution project. The ES is a Hotel Management System helping to manage full life-cycle of whether a hotel or a network of hotels. There is not too much about this project on my website. Just a few screenshots so far... simply, because I prefer to work on it, than to write about it. Btw, I always heated to write manuals or documentation for my projects. I prefer to leave it for others (freaks :-) and focus myself on what I like doing best.

That's all this time.
Keep cool folks!

Tags:

Private

Powered by BlogEngine.NET 1.4.0.0
Theme by Mads Kristensen

About the author

I give up things... to be able to code... and create perfect virtual worlds... because I have a passion... I don't want to get rid of... and I am greateful for it...

Recent comments

Comment RSS

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's or anyone view in  anyway.

© Copyright (C) 2008 Mariusz Zaleski