Skip to content

Instantly share code, notes, and snippets.

View 0xdevalias's full-sized avatar
👀
Open to opportunities

Glenn 'devalias' Grant 0xdevalias

👀
Open to opportunities
View GitHub Profile
@0xdevalias
0xdevalias / restoring-macos-multi-touch-gestures-without-reboot.md
Last active October 2, 2025 20:48
A quick guide on how to restore multi-touch gestures on macOS after they stop working, without the need to reboot your system.

Restoring macOS Multi-Touch Gestures Without Reboot

A quick guide on how to restore multi-touch gestures on macOS after they stop working, without the need to reboot your system. Inspired by personal experience and community solutions, this guide focuses on a practical approach that is quick, effective, and minimally disruptive.

Additional Search Terms: multitouch, multi touch

Table of Contents

@0xdevalias
0xdevalias / emit-types.js
Created January 21, 2025 09:28
PoC script playing around with programmatically viewing pretty-printed TypeScript types, for deeply nested/complex types
#!/usr/bin/env node
// Ref: https://ts-morph.com/navigation/example
// https://ts-morph.com/emitting
import { Project } from "ts-morph";
import path from "path";
import fs from "fs";
// Function to parse command-line arguments
@0xdevalias
0xdevalias / reading-github-notifications-from-gh-cli.md
Last active November 9, 2025 17:23
Some notes on how to read GitHub notifications from the gh CLI.
@0xdevalias
0xdevalias / exporting-nexo-pro-data.md
Last active August 11, 2025 08:44
Some notes on exporting Nexo Pro data
@0xdevalias
0xdevalias / 1_poc-pandoc-markdown-lua-filter.md
Last active January 13, 2025 23:32
PoC pandoc --lua-filter for customizing markdown output
@0xdevalias
0xdevalias / curl-jq-pagination-with-slurp.md
Last active November 30, 2024 03:57 — forked from ThomasG77/README.md
Recipe to get JSON using pagination using command line tools e.g curl, jq, bc, cat
@0xdevalias
0xdevalias / prefix-prisma-db-id-by-type.md
Last active January 8, 2025 04:15
Explore methods for prefixing Prisma generated database record IDs by type
@0xdevalias
0xdevalias / cointracking-spreadsheet-formulae.md
Last active August 11, 2025 08:43
Spreadsheet formulae for validating/verifying CoinTracking data
@0xdevalias
0xdevalias / copy-on-write-event-sourcing-for-edit-history.md
Last active January 8, 2025 04:16
Some thoughts RE: Copy on Write + Event Sourcing for edit history