Skip to content

Instantly share code, notes, and snippets.

View MrYakobo's full-sized avatar
Not AI

Jakob Lindskog MrYakobo

Not AI
View GitHub Profile
@gooderist
gooderist / Pro6 File Spec.md
Last active January 15, 2022 22:32
Pro6 File Spec

(Unofficial) Pro6 File Specification

This is a reverse-engineered description of the Pro6 file format used in ProPresenter6. This work is in no way affiliated with or authorized by RenewedVision(c) with the exception that we all serve the same Lord, Jesus Christ.

last updated 2019/10/14

General

The file is an xml file with base64 encoded strings. Slide text is mainly expressed as RTF strings. More details below under section [todo: NSString] The file begins with tag <?xml version="1.0" encoding="utf-8"?>

@egmontkob
egmontkob / Hyperlinks_in_Terminal_Emulators.md
Last active July 20, 2024 23:50
Hyperlinks in Terminal Emulators
@xero
xero / taco
Last active March 1, 2024 05:26
#termfood open your terminal and run `curl -L git.io/taco`

▄▄▄▄ ▄▄ ▄▄▄▄▄▄
▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄▄ 
▄▄▄▄ ▄ ▄▄▄▄▄ ▄ ▄ ▄  ▄▄▄
▄▄▄▄▄ ▄▄▄▄▄ ▄ ▄ ▄ ▄▄▄
▀▄▄▄▄▄
@CristinaSolana
CristinaSolana / gist:1885435
Created February 22, 2012 14:56
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream