" No one can make you feel inferior without your consent "  —  Eleanor Roosevelt

Folders  ›  Experimental

 

TicTacToe for Android

more...

Google AndroidAlpha release of TicTacToe for Android was released.  This is my first published application for Google Android.

Tic-tac-toe, also spelled tick tack toe, or noughts and crosses as it is known in the UK, Australia, New Zealand, is a pencil-and-paper game for two players, O and X, who take turns marking the spaces in a 3×3 grid, usually X going first. The player who succeeds in placing three respective marks in a horizontal, vertical, or diagonal row wins the game. (wikipedia)

Download the game and it’s source code here.

 

Tutorial: MySQL Multiple Update Using Single SQL Query

more...

Ever wanted to do some update on multiple row with different value or on different condition in a single SQL query? With MySQL sure you can do it.

more...

 

Tutorial: Easy “Spoiler” Show/Hide Element using Javascript

more...

Sometimes we want to hide some content at first page load to reduce bandwidth transferred to the user. Usually when we just want to show the thumbnails of the image and then the original (big) sized image hidden next to it.

more...

 

Remove Uneeded Windows Explorer Context Menu Item

more...
Windows Logo

Windows Logo

Do you recently installing/uninstalling a new program and noticed that the program add some link/shortcut on Explorer context menu that you don’t like? If the program doesn’t have a preferences option to remove the context menu, you can remove it manually using Windows registry editor (regedit.exe).

more...

 

Greedy and Non-Greedy Matching using Perl Regular Expression

more...

In this article I will show the difference between the default greedy (.+ and .*) and non-greedy matching using Perl-compatible regular expression.

more...

 

Binary String Conversion to Decimal and Hex Using C#

more...

microsoftnet-logoIf you need to convert Binary String to Decimal (Integer) and Hexadecimal, .NET Framework has conversion methods in Convert class to make numeric conversion easier. This class is located in Microsoft.VisualBasic library.

more...

 

Change IP Address Using netsh from Command Prompt

more...

Network interface can be changed manually by using netsh command (netsh.exe) from Command Prompt. To change the IP to static IP, use the following command format:

netsh interface ip set address [Connection Name] [Source] [IP] [Netmask] [Gateway] [Metric]
 more...