четверг, 14 июня 2012 г.

Visual Studio Feeds English

Visual Studio Feeds English


How to Get a Developer License for Windows 8 App Development

Posted: 14 Jun 2012 02:24 PM PDT

If you have installed Windows 8 Release Preview and Visual Studio 2012 RC, you might want to develop your first Windows 8 Metro

Windows 8 mail app

Posted: 14 Jun 2012 12:38 PM PDT

My first impressions of the windows 8 mail application Accounts The mail app seemed to work straight away with my @live

Windows 8, actually.

Posted: 14 Jun 2012 12:38 PM PDT

The North American TechEd videos (http://northamerica.msteched.com/) are online now. The keynote from Day 2 is about Windows 8 and is worth watching.

Near-Earth Object Flypast at 00:00 on 15/June!

Posted: 14 Jun 2012 11:22 AM PDT

An unusually large Near-Earth Object, 2012 LZ1 has just been discovered by Rob McNaught and colleagues on 2012 June 10/11 Slooh Space

Spring is over

Posted: 14 Jun 2012 11:22 AM PDT

OK, so maybe I didn't need to tell you that.  Or maybe, you observe that it isn't quite true because summer officially starts

Nightly news, 15 Jun 2012

Posted: 14 Jun 2012 09:35 AM PDT

WPF Elements Fixed an issue with typing small numbers starting with ".0″ in the numeric text box controls Fixed a couple of bugs

Create iPad-style Web Apps using DevExpress ASP.NET with DXperience v12.1

Posted: 14 Jun 2012 09:05 AM PDT

Check out the new "DevExpress Tablet Web Application" file project template and wizard that help you create stunning iPad friendly web projects in

Salt and hash a password in .NET

Posted: 14 Jun 2012 09:05 AM PDT

I endeavoured to follow the CrackStation rules: Salted Password Hashing Doing it Right (http://crackstation.net/hashing-security.htm)    public class SaltedHash     {         public string Hash { get; private set; }         public string Salt { get; private set; }         public SaltedHash(string password)         {             var saltBytes = new byte[32];             new RNGCryptoServiceProvider().GetNonZeroBytes(saltBytes);             Salt = ConvertToBase64String(saltBytes);             var passwordAndSaltBytes = Concat(password, saltBytes);             Hash = ComputeHash(passwordAndSaltBytes);         }         static string ConvertToBase64String(byte[] bytes)         {             return Convert.ToBase64String(bytes);         }         static string ComputeHash(byte[] bytes)         {             return ConvertToBase64String(SHA256.Create().ComputeHash(bytes));         }         static byte[] Concat(string password, byte[] saltBytes)         {             var passwordBytes = Encoding.UTF8.GetBytes(password);             return passwordBytes.Concat(saltBytes).ToArray();         }         public static bool Verify(string salt, string hash, string password)         {             var saltBytes = Convert.FromBase64String(salt);             var passwordAndSaltBytes = Concat(password, saltBytes);             var hashAttempt = ComputeHash(passwordAndSaltBytes);             return hash == hashAttempt;         }     } ...

Warning CS1591: Missing XML comment

Posted: 14 Jun 2012 09:05 AM PDT

When you build your solution (or press CTRL+SHIFT+B) in Visual Studio, the output window shows up. Mine was cluttered with 'warning CS1591: Missing

The canvas element – Basic usage

Posted: 14 Jun 2012 06:33 AM PDT

The HTML5 Canvas element has its contents rendered with JavaScript. The canvas element makes use of the "context" into which you can

Комментариев нет:

Отправить комментарий