Skip to content

Instantly share code, notes, and snippets.

View d4hines's full-sized avatar

Daniel Hines d4hines

View GitHub Profile

Protocol 009 Changelog

Getting the Source Code of the Proposal

The source code can be found on the master branch of the Tezos repository on Gitlab, in the src/proto_009_PsFLorBA directory, or the or the src/proto_009_PsFlorena for the release without baking

@d4hines
d4hines / keybase.md
Created April 14, 2021 00:59
keybase.md

Keybase proof

I hereby claim:

  • I am d4hines on github.
  • I am d4hines (https://keybase.io/d4hines) on keybase.
  • I have a public key whose fingerprint is B826 EE71 FECE 8093 5298 BEC3 66CB F0C1 8FD7 3CE0

To claim this, I am signing this object:

@d4hines
d4hines / arch-tutorial.md
Created August 7, 2021 18:59 — forked from EduardoRFS/arch-tutorial.md
Adicionado set-locale

Resumo

  • criar partições
  • montar partições
  • instalar sistema
  • configurar hora
  • configurar rede
  • configurar localização
  • configurar usuario e sudo
  • configurar grub
@d4hines
d4hines / SketchSystems.spec
Last active September 6, 2021 17:17
Stable*
Stable*
Idle*
# Activated by an HTTP request to the node
mine block -> Mining Block
# Activated by an HTTP request to the node
add peer -> Adding Peer
recieve error from peer -> Disconnect from Peer
@d4hines
d4hines / SketchSystems.spec
Last active September 6, 2021 20:31
Stable*
Stable*
Idle*
# Activated by an HTTP request to the node
mine block -> Mining Block
# Activated by an HTTP request to the node
add peer -> Adding Peer
recieve error from peer -> Disconnect from Peer
receive P2P message -> Processing P2P Message
Mining Block
Stable*
Idle*
# Activated by an HTTP request to the node
mine block -> Mining Block
# Activated by an HTTP request to the node
add peer -> Adding Peer
recieve error from peer -> Disconnect from Peer
receive P2P message -> Processing P2P Message
Mining Block
@d4hines
d4hines / granadanet.sh
Created October 20, 2021 12:42
Patched version of tezos-docker-manager.sh and script for setting up a node
#! /usr/bin/env bash
set -e
if ! which docker > /dev/null 2>&1 ; then
echo "Docker does not seem to be installed."
exit 1
fi
if ! which docker-compose > /dev/null 2>&1 ; then
@d4hines
d4hines / iterate_commit.sh
Created January 3, 2022 16:33
iterate commits one by one
#!/usr/bin/env bash
# Used to go through each commit in a repo one by one
# for exploratory purposes.
git reset --hard HEAD
git clean -xfd
INDEX=$(cat /tmp/index)
INDEX=$(($INDEX + 1))
echo $INDEX > /tmp/index
@d4hines
d4hines / kinesis_edge_layout.txt
Created January 3, 2022 16:34
Kinesis Edge keyboard layout
[caps]>[esc]
[hk9]>[fntog]
[hk10]>[caps]
[rspc]>[fnshf]
fn [caps]>[esc]
fn [h]>[lft]
fn [k]>[up]
fn [j]>[dwn]
fn [l]>[rght]
fn [hk9]>[fntog]
@d4hines
d4hines / colors.scss
Created January 31, 2022 15:53
My Linux Desktop color scheme
// Based on https://github.com/azemoh/vscode-one-monokai
// Default
$plain: #abb2bf;
// Background
$background: #282c34;
// Caret
$caret: #528bff;