Skip to content

Instantly share code, notes, and snippets.

@akatakritos
Created May 1, 2015 12:46
Show Gist options
  • Save akatakritos/9b319b3940417b3597d3 to your computer and use it in GitHub Desktop.
Save akatakritos/9b319b3940417b3597d3 to your computer and use it in GitHub Desktop.
LEAKED: Microsofts How Old age detection code
// (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