Skip to content

Instantly share code, notes, and snippets.

View smoothfriction's full-sized avatar

Erik van Brakel smoothfriction

View GitHub Profile
@smoothfriction
smoothfriction / .gitignore
Created May 3, 2012 20:41
.gitignore for visual studio
#OS junk files
[Tt]humbs.db
*.DS_Store
#Visual Studio files
*.[Oo]bj
*.user
*.aps
*.pch
*.vspscc
@smoothfriction
smoothfriction / gist:819518
Created February 9, 2011 22:58
output from System.Object.Equals
public static bool Equals(object objA, object objB)
{
if (objA == objB)
{
return true;
}
if (objA)
{
if (!objB)
{