Password Management

November 5, 2019

To store my passwords I use a hybrid approach with Lastpass used as a password entropy storage. For important services, like Github, I only store half of the password in LastPass. Then I add a short random string and a generic short password. The final password is 12-16 random characters from LastPass + 3 chars that I generate from the service name (in my head) and a short 5 characters password.

Read More

Drawin cool simple text in XNA

March 13, 2012

I was wondering how to use some cool font in my XNA game. I came up with an idea to draw white and black text with an offset to give it “3d” look.

Read More

Usefull helper

December 7, 2011

The default parsing method for C# using current culture, which sucks really badly. ( I wrote about it on SO)

Read More

How to get MAC adress on Windows Phone 7 device.

April 9, 2011

There had been an issue with MAC adress on WP7 - the MAC wasn’t exposed. As a result, there phone can’t be connected to MAC-secure WIFI. After March update, the MAC is in About page. Go Setting -> About -> More info.

Read More

The Vanilla Ice Cream Problem

March 16, 2011

For the engineers among us who understand that the obvious is not always the solution, and that the facts, no matter how implausible, are still the facts …

Read More

How to play music across pages.

January 6, 2011

Silverlight for Windows Phone 7 is based on the page navigation system. Key point is the lifetime of pages - each page is deleted while you navigate to another. To have an object(singleton f.e.) during the whole application life it could be placed in App class (App.xaml.cs file). MediaElement is definitely an object that should be one (there must be only one music player). The best and simple solution is place the MediaElement in XAML(it needs to be a part of visual tree), I have used application resources:

Read More

Weather blog/website

December 31, 2010

Wonder if there is the API that simulates weather condition (insired by wordpress' snow). User could see weather conditions of place that she/he want to visit.

0.02$

Read More

Simple center zoom

December 26, 2010

To add simple pinch zoom (that I used in my Spirit Level) use the Silverlight Toolkit for WP7 and add the pinch GetureListener to a grid

Read More

WP7 constants

December 11, 2010

I have tried to gather some important ones. I will update this post when I spot something new :)

Read More

WP7 Reviews Reader

November 9, 2010

Since Microsoft will not provide any reports till January Tom Verhoeff on his blog shows the solution how to get some info about your app. The silverlight app gets the atom read from marketplace by ID and shows all the reviews from all marketplaces.

Read More