Skip to content

Instantly share code, notes, and snippets.

View gianlucamazza's full-sized avatar
🏠
Working from space

Gianluca Mazza gianlucamazza

🏠
Working from space
View GitHub Profile
@gianlucamazza
gianlucamazza / notes.md
Created November 21, 2020 00:37 — forked from miguelmota/notes.md
BIP32 vs BIP39 vs BIP44
  • BIP32 - is a method for generating a tree of private keys from a master private key.
  • BIP39 - method for encoding 128-256 bits of random data into 12-24 word phrases from a list of interchangable 2018 words, and then turn those phrases into a 64 byte hash.
  • BIP44 - is a method for structuring a private key tree in a specific way that will facilate usage/restoration/discovery of multiple accounts for multiple purposes.
@gianlucamazza
gianlucamazza / android_instructions.md
Created May 19, 2020 11:05 — forked from patrickhammond/android_instructions.md
Easily setup an Android development environment on a Mac

Here is a high level overview for what you need to do to get most of an Android environment setup and maintained.

Prerequisites (for Homebrew at a minimum, lots of other tools need these too):

  • XCode is installed (via the App Store)
  • XCode command line tools are installed (xcode-select --install will prompt up a dialog)
  • Java

Install Homebrew:

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"