Skip to content

Instantly share code, notes, and snippets.

View hilkeheremans's full-sized avatar

Hilke Heremans hilkeheremans

  • Belgium
  • 11:34 (UTC +02:00)
View GitHub Profile
@0xjac
0xjac / private_fork.md
Last active July 18, 2024 23:09
Create a private fork of a public repository

The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private frok by duplicating the repo is documented here.

For this assignment the commands are:

  1. Create a bare clone of the repository. (This is temporary and will be removed so just do it wherever.)

git clone --bare git@github.com:usi-systems/easytrace.git

@you21979
you21979 / hdnode.md
Last active June 25, 2018 04:36
bitcoinjs-lib hdnode snipet

mnemonic generate

12 word

const mnemonic = bip39.generateMnemonic();

24 word

/*
ensure :: { String: Any } => void, throws Error
Checks to see if you are failing to pass in any arguments.
Example:
function doSomethingToUser(userName, userEmail) {
ensure({ userName, userEmail });
// do stuff...
@trey
trey / happy_git_on_osx.md
Last active February 18, 2024 10:46
Creating a Happy Git Environment on OS X

Creating a Happy Git Environment on OS X

Step 1: Install Git

brew install git bash-completion

Configure things:

git config --global user.name "Your Name"

git config --global user.email "you@example.com"