Skip to content

Instantly share code, notes, and snippets.

View 0xA5DF's full-sized avatar

0xA5DF

View GitHub Profile
@cecilemuller
cecilemuller / launch.json
Last active January 29, 2025 15:35
Run ts-node in VSCode Debugger
{
"version": "0.2.0",
"configurations": [
{
"name": "Example",
"type": "node",
"request": "launch",
"runtimeExecutable": "node",
"runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"],
@olih
olih / jq-cheetsheet.md
Last active March 12, 2025 00:35
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq