Skip to content

Instantly share code, notes, and snippets.

View sleepdefic1t's full-sized avatar

₴Ⱡ33₱ sleepdefic1t

View GitHub Profile
@sleepdefic1t
sleepdefic1t / shelley-addresses-test-vectors.yaml
Created January 22, 2021 22:52
Test vectors for Cardano Shelley addresses
---
# Key Derivation & Address Test Vectors for Cardano Shelley Addresses
# ===================================================================
#
# Shelley CDDL Specification (draft):
#
# https://github.com/input-output-hk/cardano-ledger-specs/blob/bf4b79f3e937ac3a584161101f2230d2406ff0ae/shelley/chain-and-ledger/executable-spec/cddl-files/shelley.cddl
#
# Shelley HD Wallets Specification:
@sleepdefic1t
sleepdefic1t / git-squash-merge-apply.md
Created March 29, 2023 18:35 — forked from izumskee/git-squash-merge-apply.md
GIT: Squash, merge and apply patch

Squash and create patch

If your commits are in the "newlines" branch and you have switched back to your "master" branch already, this should do the trick:

git checkout -b tmpsquash
git merge --squash newlines
git commit -a -m "My squashed commits"
git format-patch master