Xhinker - xhinker.com - Xhinker
General Information:
Latest News:
Increase VirtualBox hard drive size 3 Aug 2012 | 10:25 am
I installed Windows 8 RC in VirtualBox with 25G virtual disk size, which squeezed with Office 2013 and Visual Studio 2012. Then, only 2G disk space is available. Now, I have two options, 1. Reinstall ...
[Web]My Javascript function snippets 11 Jul 2012 | 09:28 am
1. Get host URL 2.Timer function 3. 4.
[DotNet]Sql Server connection string format 5 Jul 2012 | 03:18 pm
I found myself always forget the connection string format. this is a memo for it. 1. User Id and password style Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myP...
[Windows Phone]Live SDK Development links 7 May 2012 | 07:01 pm
1. Live Connect Developer Center http://msdn.microsoft.com/en-us/live/ 2.SignIn Scopes and permissions(wl.xxx) http://msdn.microsoft.com/en-us/library/live/hh243646 3.Sigining Users in(c#) http:/...
[.NET]Word Frequency Calculation 3 May 2012 | 02:48 pm
As the title indicates, the following code can calcuate words appearance frequence in a text file. to use this code, 1. run it and input a file name, 2. Press Enter, few seconds later, a result file...
[Windows Phone]Application Bar 27 Apr 2012 | 06:59 pm
1. Xaml Code inside root Grid element 2. Backend c# code: 3.To get App bar button object
[WPF][Update]Use Dispatcher 27 Apr 2012 | 11:16 am
1. When do we use Dispatcher? For example, if we create a new thread that will deal some time cost stuff. After the thread finish its work, we want to update the WPF UI. Then, it is time to use Dispa...
[.NET]Read RSS by C# 17 Apr 2012 | 12:44 am
I searched around the net for a C# rss reader, but samples are either too complicated or errors prone. DataSet.ReadXml() gets a bug...So, finnaly I realized that write one of my own rss reader would b...
[WIndows Phone7]List pictures in ListBox 16 Apr 2012 | 03:43 pm
1. Add reference to Microsoft.Xna.Framework dll . 2. Replace Grid xaml code with the following code: 3. C# code in MainPage.xaml.cs file: 4. Last but not the least:
[Windows Phone]A implement of Multi-Touch drawing in Windows Phone7 6 Apr 2012 | 08:04 pm
InkPresenter only allow on point drawing, To achieve multi-touch draw, in other words, draw with more than one finger. we'd implement the Touch.FrameReported event. here is what I have done: Every to...