Skip to content

Instantly share code, notes, and snippets.

View kemmis's full-sized avatar

Rafe Kemmis kemmis

View GitHub Profile
@kemmis
kemmis / macos-configuration.md
Last active November 9, 2018 11:58
iOS Tweak Dev Setup

mac os configuration

tools installed

brew

to install (from here):

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

exa - better ls command

@kemmis
kemmis / Mojave on Windows 10.md
Last active November 12, 2019 04:47
setup iphone tweak dev environment on Windows 10 with Linux Subsystem
@kemmis
kemmis / MutexAttribute.cs
Created July 24, 2018 10:01 — forked from odinserj/MutexAttribute.cs
MutexAttribute.cs
using System;
using System.Collections.Generic;
using System.Linq;
using Hangfire.Common;
using Hangfire.States;
using Hangfire.Storage;
namespace Hangfire.Pro
{
/// <summary>
public class MyType : Enumeration
{
//don't allow type to be constructed
private MyType(int value, string displayName) : base(value, displayName) { }
public static readonly MyType Type1 = new MyType(1, "Type One");
public static readonly MyType Type2 = new MyType(2, "Type Two");
public static readonly MyType DerivedType3 = new DerivedMyType(3, "Type Three");
public virtual int GetSomethingAboutThisType()