Skip to content

Instantly share code, notes, and snippets.

View klinkby's full-sized avatar

Mads Breusch Klinkby klinkby

View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active June 12, 2024 21:25
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@klinkby
klinkby / ManagedWebBrowser.cs
Last active March 14, 2021 13:45
Wraps IE to support lifetime
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
using System.Threading;
using SHDocVw;
namespace Capto
{
/// <summary>