Created
May 1, 2015 12:46
-
-
Save akatakritos/9b319b3940417b3597d3 to your computer and use it in GitHub Desktop.
LEAKED: Microsofts How Old age detection code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// (c) 2015 Microsoft Inc. | |
// All rights reserved | |
namespace HowOld.Common | |
{ | |
public static class Age | |
{ | |
public static int Calculate(byte[] imageData) | |
{ | |
return new Random().Next(2, 65); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment