Skip to content

Instantly share code, notes, and snippets.

View mmuell's full-sized avatar

Michael Mueller mmuell

View GitHub Profile
@mmuell
mmuell / family-plan.json
Last active January 28, 2026 15:02
Family Daily Plan
{
"announcement_archive": "AFC / NFC!",
"family": [
{ "name": "Miles", "events": [ "1/2 Day", "Practice" ] },
{ "name": "Luke", "events": [ "1/2 Day", "Practice", "ACT" ] },
{ "name": "Tracy", "events": [ "Work", "BBall" ] },
{ "name": "Mike", "events": [ "Work" ] }
],
"week": [
{ "name": "Thursday", "events": [ "TP Chamber" ] },
@mmuell
mmuell / dosbatch.sublime-build
Created May 9, 2012 15:16
Batch File Running for Sublime Text 2
{
"cmd": ["$file"],
"working_dir": "$file_path",
"selector": "source.dosbatch"
}
@mmuell
mmuell / AccentUtility.cs
Created April 28, 2012 15:26
Turns out AutoCad doesn't allow characters with accents within Layer Names. I created the following static class to remove the accents on a provided string.
using System.Collections.Generic;
namespace MCS.DXF.Utility
{
public static class AccentUtility
{
private static class ReplacementHolder
{
private static Dictionary<char, char> _replacements;