Sunday, December 21, 2008

Just taken from my phone cam while waiting for lights to change.
In Hebrew it says something like "All heart service" and then to go with that, there is a nice sticker to the left.

Thursday, October 30, 2008

Diapers Sale

There was a sell...
Buy 2 get 3rd for free!

The Evolution of Love

I just wonder what was the evolution process that lead to the creation of love and the survival of love.
Assuming it is a *feature* of evolution and not a bug or a side affect. (which it just might be)
Is there something about love that improve on it subjects to more successfully pass the natural selection?
All this assuming that there is no connection between love and sex. ( some girls might disagree (-: )

I tried a quick google on the subject but came out with nothing...
any theories? anybody?

Saturday, October 25, 2008

Changed the top banner to show a panoramic image of my living room.

AdSense

I just added advertisement to this blog.
It was unbeleivably easy.
...not that I will get any revenue from it, nobody comes even close to this blog.
actually I just gave my self an idea - I should change the name of the blog to:
My secret blog.
That is a good name.

It very good that nobody reads this stuff - this blog is an embarrassment.

Anyway... The advertisement are provided by google adSense so google does all the work of providing the advertisement.
Also blogger gets 0% of my ads revenue which is cool too.

What a briliant buisness model...

Sunday, October 19, 2008



This is far better than Paris's Eiffel tower or N.Y's statue of liberty - Beer Sheva now has a Tank.
How cool is that.

Friday, October 17, 2008

C#

A friend of mine needed help in writing a C# program since I have time I agreed to help him write it.
also I am wanted to learn C# cause it might help me on my job hunt.
Starting was a breeze and the few question I had were easily answered by reading the documentation (MSDN is the best) and a few post to the CProgramming Forum.

The features I was most impressed with so far is the ease of XML serialization and Controls Binding to data.

For example a task of defining a configuration file, binding it to a class and then loading and saving from/to the file would take a couple of hours using C++ but will take a few minutes in C#.

As an example for binding data to a control you could have a listbox binded to a list which means that when you change the list the listbox automatically change.
On top of that you can add another layer between for filtering or sorting the data.

Maybe I am only impressed with that because I have not used a GUI toolkit that have MVC, but that is cool stuff.

I wonder how QT4 is doning this.

Yesterday I needed a set for my program, you know a simple data structure that holds only unique values, I looked at the MSDN and It turns out there is no set in C# you need to write you own.
that is just silly.
and on top of that the MSDN also slunder C++ and other languages saying that they too don't have sets. well that is just B.S. STL has set since for ever and is part of the C++ standard also since for ever!