Skip to content

Instantly share code, notes, and snippets.

View mmuell's full-sized avatar

Michael Mueller mmuell

View GitHub Profile
@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;
@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 / family-plan.json
Last active July 8, 2025 10:16
Family Daily Plan
{
"announcement_archive": "",
"family": [
{ "name": "Miles", "events": [ "X Country", "Packing" ] },
{ "name": "Luke", "events": [ "X Country", "Packing" ] },
{ "name": "Tracy", "events": [ "Finish Packing" ] },
{ "name": "Mike", "events": [ "Work", "Downtown" ] }
],
"week": [
{ "name": "Tuesday", "events": [ "Mike Downtown" ] },