Skip to content

Instantly share code, notes, and snippets.

View aspeckt-112's full-sized avatar

aspeckt112 aspeckt-112

  • 09:11 (UTC +01:00)
View GitHub Profile
@aritchie
aritchie / MyServiceLocator.cs
Last active January 26, 2024 21:45
MAUI Service Locator
using Microsoft.Extensions.Logging;
using System;
namespace YourNamespace;
// IMauiInitializeService will register immediately after MAUI has built its service container, so this class will be ready to go for all of your code
public class MyServiceLocator : Microsoft.Maui.Hosting.IMauiInitializeService
{
public static IServiceProvider Services { get; private set; }
@jnettlet
jnettlet / 99-asus-falchion.hwdb
Last active March 11, 2025 12:01
Stop Asus ROG Falchion mechanical keyboard from sending POWER and SLEEP key presses when the keyboard goes to sleep. Put in /etc/udev/hwdb.d and then run sudo systemd-hwdb update
evdev:input:b*v0B05p193Ee0111*
KEYBOARD_KEY_10081=reserved
KEYBOARD_KEY_10082=reserved
KEYBOARD_KEY_70070=reserved
KEYBOARD_KEY_70071=reserved
KEYBOARD_KEY_70072=reserved
KEYBOARD_KEY_70073=reserved
KEYBOARD_KEY_70074=reserved
KEYBOARD_KEY_70075=reserved
KEYBOARD_KEY_70076=reserved
@davidfowl
davidfowl / dotnetlayout.md
Last active April 2, 2025 20:17
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/
@JamesMGreene
JamesMGreene / gitflow-breakdown.md
Last active March 27, 2025 17:19
`git flow` vs. `git`: A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository