Skip to content

Instantly share code, notes, and snippets.

@HtwoO
HtwoO / elf_format_cheatsheet.md
Created September 30, 2023 04:14 — forked from x0nu11byt3/elf_format_cheatsheet.md
ELF Format Cheatsheet

ELF Format Cheatsheet

Introduction

Executable and Linkable Format (ELF), is the default binary format on Linux-based systems.

ELF

Compilation

@HtwoO
HtwoO / jq-cheetsheet.md
Created September 13, 2023 13:42 — forked from olih/jq-cheetsheet.md
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

@HtwoO
HtwoO / Google-Sheet-Functions.md
Created April 23, 2023 10:01 — forked from rueycheng/Google-Sheet-Functions.md
Google Sheet functions cheatsheet

Google Sheet Functions - Cheatsheet

Based on https://support.google.com/docs/table/25273?hl=en

Array

Name Syntax Description
ARRAY_CONSTRAIN ARRAY_CONSTRAIN(input_range, num_rows, num_cols) Constrains an array result to a specified size.
BYCOL BYCOL(array_or_range, LAMBDA) Groups an array by columns by application of a LAMBDA function to each column.
@HtwoO
HtwoO / GNU-Make.md
Created April 23, 2023 09:51 — forked from rueycheng/GNU-Make.md
GNU Make cheatsheet