Skip to content

Instantly share code, notes, and snippets.

@Enichan
Enichan / P8Writer.cs
Last active January 21, 2020 10:53
Takes a byte[] array with binary data, and outputs that to the .p8 pico 8 cartridge format
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
public class P8Writer {
public const int RomSize = 0x4300;
@olih
olih / jq-cheetsheet.md
Last active September 26, 2024 07:11
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