Skip to content

Instantly share code, notes, and snippets.

@LanceMcCarthy
LanceMcCarthy / UltimateListIds.md
Last active August 24, 2025 10:23
List of Package Ids
Name Package Id Version Source
7Zip 7zip.7zip 19.0.0 winget
Altap Salamander salamander choco
Alt-Tab Terminator alt-tab-terminator choco
AutoHotkey Lexikos.AutoHotkey 1.1.33.02 winget
AutoHotkey Store Edition HaukeGtze.AutoHotkeypoweredbyweatherlights.com Latest msstore (via winget)
Carnac
@davidfowl
davidfowl / dotnetlayout.md
Last active November 4, 2025 18:07
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/
@symphonicsky
symphonicsky / EventClass.cs
Created September 9, 2011 14:41
Simple events in C#
public class EventClass
{
//This is our "signature" for which all event handlers that want to subscribe to our event must match
public delegate void EventFiredHandler();
//we define our event here, using our "signature" we created above
public event EventFiredHandler EventFired;
//simple method to trigger the event
public void Fire()
{
//here we make sure that we have "subscribers", if we did not check we could generate an exception