Skip to content

Instantly share code, notes, and snippets.

View TheMasquerader's full-sized avatar

Ana Morgan TheMasquerader

View GitHub Profile
@DanPuzey
DanPuzey / Log.cs
Last active October 24, 2018 10:28
Unity logging wrapper, for better performance and usage.
using UnityEngine;
namespace Assets.Phunk.Core
{
public static class Log
{
#region Error
public static void ErrorFormat(UnityEngine.Object context, string template, params object[] args)
{
var message = string.Format(template, args);
@trey
trey / happy_git_on_osx.md
Last active February 18, 2024 10:46
Creating a Happy Git Environment on OS X

Creating a Happy Git Environment on OS X

Step 1: Install Git

brew install git bash-completion

Configure things:

git config --global user.name "Your Name"

git config --global user.email "you@example.com"