Skip to content

Instantly share code, notes, and snippets.

View mmuell's full-sized avatar

Michael Mueller mmuell

View GitHub Profile
@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;