Skip to content

Instantly share code, notes, and snippets.

View psatler's full-sized avatar
🇧🇷
Focusing! 🎯

Pablo Satler psatler

🇧🇷
Focusing! 🎯
View GitHub Profile

Chapter 1

Bitcoin consists of:

  • A decentralized peer-to-peer network (the bitcoin protocol)
  • A public transaction ledger (the blockchain)
  • A set of rules for independent transaction validation and currency issuance (consensus rules)
  • A mechanism for reaching global decentralized consensus on the valid blockchain (Proof-of-Work algorithm)

Bitcoin addresses start with a 1 or 3. Like email addresses, they can be shared with other bitcoin users who can use them to send bitcoin directly to your wallet. There is nothing sensitive, from a security perspective, about the bitcoin address. It can be posted anywhere without risking the security of the account. Unlike email addresses, you can create new addresses as often as you like, all of which will direct funds to your wallet

Chapter 2

@psatler
psatler / DesigningAGraphQL_API_tutorial.md
Last active August 13, 2018 17:47 — forked from swalkinshaw/tutorial.md
Designing a GraphQL API

Tutorial: Designing a GraphQL API

This tutorial was created by Shopify for internal purposes. We've created a public version of it since we think it's useful to anyone creating a GraphQL API.

It's based on lessons learned from creating and evolving production schemas at Shopify over almost 3 years. The tutorial has evolved and will continue to change in the future so nothing is set in stone.

@psatler
psatler / README-Template.md
Created August 13, 2018 17:48 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

React

  • This is the code for the recipe project, including css code for the nav bar. It can be found here.

setState gotchas!

As shown here:

  • RULE: When a setState depends on previous state, use a function parameter
this.setState((prevState, props) => {
@psatler
psatler / PyTorch.md
Last active November 12, 2018 19:04

PyTorch Challenge

# single layer NN
import torch

def activation(x):
    """ Sigmoid activation function 
    
        Arguments
@psatler
psatler / Instructions.js
Created December 29, 2018 23:47 — forked from rowlandekemezie/Instructions.js
Update and Delete request with redux-saga
/*
1) Depending on your experience, this is all you might need to do to hook up your workflow
2) Remember, not to copy and paste. My idea is to show you how things fit it to you can tailor it to your application
GRACIAS 💪
*/