Cool, Medo!
Saturday, July 23, 2016
Thursday, July 21, 2016
Thursday, July 14, 2016
Wednesday, July 13, 2016
File-New-Project/EarTrumpet: Ear Trumpet - Volume Control for Windows
Ahhhhhhh, ear relief. :)
Thank you David Golden, Refael Rivera, and Artjom Kormanfrom !
Thank you David Golden, Refael Rivera, and Artjom Kormanfrom !
Tuesday, July 12, 2016
Sunday, July 10, 2016
How to Remove Quick Access from Windows 10 File Explorer
- Regedit
- HKEY_CLASSES_ROOT\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}\ShellFolder
- Permissions: change owner to you.
- Log out, then back in.
Side effect: lose ability to drag from left pane in Explorer.
Wednesday, July 6, 2016
Monday, July 4, 2016
Friday, July 1, 2016
C# Enum.Description() extension method
/// <summary> /// Returns the text of the [Description("text")] attribute on an enum. Or null if not found. /// </summary> /// <param name="element"></param> /// <returns></returns> [ CanBeNull ] public static String Description( this Enum element ) { var type = element.GetType(); var memberInfo = type.GetMember( element.ToString() ); if ( !memberInfo.Any() ) { return null; } var attributes = memberInfo[ 0 ].GetCustomAttributes( typeof( DescriptionAttribute ), false ); return attributes.Any() ? ( attributes[ 0 ] as DescriptionAttribute )?.Description : null; }
Subscribe to:
Posts
(
Atom
)