Bitcoin Script

Bitcoin Script Philosophy Stack-based. Non-Turing completeness: Mitigates malicious scripts on the network. Generically, the expression that must be satisfied in Bitcoin in order to spend a coin is known as an “encumbrance”. Condition for validity No failure in executing scripts. Top element of stack is true. The Execution Stack Holds byte vectors in little-endian format. Max size: 520 bytes. Opcodes taking integers and returning bool: Max size 4 bytes....

July 18, 2021 · 2 min · Aman Rojjha

Git

Getting Started For Github-CLI, refer to it’s beautiful documentation. Setting up the Git environment Git Configuration git config <options> <values> --system: [/etc/gitconfig] Contains values applied to every user on the system and all their repos. --global: [~/.gitconfig /~/.config/git/config ] Values specific to the user. --local: [<path-to-repo>/.git/config] Values specific to the repo. NOTE: Use the following to view the settings and where they come from....

June 29, 2021 · 6 min · Aman Rojjha