Skip to content

Instantly share code, notes, and snippets.

@PaulLaux
PaulLaux / eth-hot-wallet-Saga.js
Last active April 29, 2019 17:48
eth-hot-wallet Saga.js usage example
/**
* Saga.js usage example
* The mental model is that a saga is like a separate thread in your application
* that's solely responsible for side effects. redux-saga is a redux middleware,
* which means this thread can be started, paused and cancelled from the main
* application with normal redux actions, it has access to the full redux application
* state and it can dispatch redux actions as well.
*/
export function* checkFaucetApi() {
const requestURL = checkFaucetAddress;

Keybase proof

I hereby claim:

  • I am paullaux on github.
  • I am paullaux (https://keybase.io/paullaux) on keybase.
  • I have a public key ASAHyAhakY5YMJLfVmp_MS443UO7RTnHkIDDcYIQiVqjxgo

To claim this, I am signing this object:

@PaulLaux
PaulLaux / .zshrc
Created December 31, 2022 12:52
zsh minimal config
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/home/px1/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes