Skip to content

Instantly share code, notes, and snippets.

View mcpar-land's full-sized avatar
🤠

John mcpar-land

🤠
View GitHub Profile
@cbuckowitz
cbuckowitz / README.md
Last active February 23, 2025 18:42
Change Storage Location for Docker Desktop with WSL2 #DockerDesktop #WSL2

Change the Storage Location for Docker Desktop with WSL2

Docker Desktop stores docker data in 2 distros

  • docker-desktop
  • docker-desktop-data

These distros are installed on the system drive by default.

To move them to another drive, these distros can be exported, deleted and imported from the new location.

@gmolveau
gmolveau / recutils_tutorial_example.md
Last active December 3, 2025 16:28
A quick tutorial / example / cheatsheet of recutils https://www.gnu.org/software/recutils

recutils tutorial example

https://www.gnu.org/software/recutils/

GNU Recutils is a set of tools and libraries to access human-editable, plain text databases called recfiles.

TO install on mac : brew install recutils

add this to a new file named books.rec

@ProGM
ProGM / DraggablePoint.cs
Last active September 8, 2025 14:27
A Unity Editor extension to generate draggable points for vector3 serialized attributes.
using System;
using UnityEngine;
#if UNITY_EDITOR
using UnityEditor;
#endif
public class DraggablePoint : PropertyAttribute {}
#if UNITY_EDITOR