20 Feb 2012
By default, .Net applications offer a prebuilt authentication system that you can use to give some privacy to your website in case its a small one. But, in case you pretend to use your existing DB with its existing users table and your existing conditions you may want to build your own authentication system.
Most of [...]
more
17 Feb 2012
Here it is:
public static String getInMD5(String inputString) {
byte[] input = Encoding.UTF8.GetBytes(inputString);
byte[] output = MD5.Create().ComputeHash(input);
[...]
more
16 Feb 2012
If you have tried to modify your back code in .Net when your application is running and found this annoying message:
Forcing you to stop debugging, edit, start debugging again. Then here’s a solution:
1. Stop running your app.
2. Go to Tools > Options > Debugging > Edit and Continue
3. Disable “Enable Edit and Continue”.
If you find [...]
more
6 Feb 2012
I’ve just dicovered the library impress.js which is an amazing tool for presentations beating those you get with PowerPoint just using CSS3. It only works in the most up to date browsers but, aren’t desktop presentation tools also requiring an specialized software? You need to use Chrome, Safari or Firefox 10 to visualize it but [...]
more