Skip to content

Instantly share code, notes, and snippets.

View Kizuna-Meraki's full-sized avatar
🌴
On vacation

kizuna Kizuna-Meraki

🌴
On vacation
  • Hamburg, Germany
  • 13:42 (UTC +02:00)
View GitHub Profile
@JoeyBurzynski
JoeyBurzynski / Homebrew_How-to-Backup-and-Restore-Homebrew-Packages-2022.md
Last active March 13, 2026 23:47
Homebrew: How to Backup & Restore Homebrew Packages [2022, MacOS]

Homebrew: How to Backup & Restore Homebrew Packages

Homebrew makes it easy to install and keep installed software up to date on your Mac - as part of my backup routine for my Mac I want to be able to run a single command to reinstall all packages.

If you're searching on how to backup & restore Homebrew, then I assume you're here for the commands.

Brewfiles

Brewfiles are files generated with definitions that Homebrew reads and processes, a generated

@fay59
fay59 / Quirks of C.md
Last active December 27, 2025 05:41
Quirks of C

Here's a list of mildly interesting things about the C language that I learned mostly by consuming Clang's ASTs. Although surprises are getting sparser, I might continue to update this document over time.

There are many more mildly interesting features of C++, but the language is literally known for being weird, whereas C is usually considered smaller and simpler, so this is (almost) only about C.

1. Combined type and variable/field declaration, inside a struct scope [https://godbolt.org/g/Rh94Go]

struct foo {
   struct bar {
 int x;
@kebman
kebman / gpsConverter.html
Created March 31, 2018 20:48
Converts Google Maps coordinates for use with Adobe Bridge image metadata
<!DOCTYPE html>
<html>
<head>
<title>Google Maps GPS Coordinate to Adobe Bridge - kebman.com</title>
<meta charset="utf-8">
<style type="text/css">
#form {
background-color: MistyRose;
padding: 0.5em;
}
@payload
payload / prettyics.sh
Created May 31, 2013 21:01
pretty print a .ics calendar file
#!/bin/sh
perl -ne'/END:/ && $i--; print "\t" x $i . "$_\n"; /BEGIN:/ && $i++;'