As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
I hereby claim:
To claim this, I am signing this object:
#### Create EOS wallet | |
`cleos.sh wallet create -n walletname` | |
Record the password and keep secure. | |
#### Unlock EOS Wallet | |
`cleos.sh wallet unlock` | |
Paste your wallet password | |
#### Load Generated EOS Account Private Key Into Your Wallet | |
`cleos.sh wallet import <privkey>` | |
#### Create New Account From Your Generated Account |
#!/bin/bash | |
trap "echo 'Terminating all processes...'; pkill -P $$; exit 1" SIGINT SIGTERM | |
# Check for input argument | |
if [[ -z "$1" ]]; then | |
echo "Search for vanity keys - Usage: ./vanity.sh STRING [NUM_PROCESSES]" | |
exit 1 | |
fi |
pragma solidity ^0.4.20; | |
contract RegisterEos { | |
mapping (address => string) public keys; | |
event LogRegister (address user, string key); | |
#!/usr/bin/env bash | |
# get and unpack golang | |
curl -O https://storage.googleapis.com/golang/go1.10.linux-amd64.tar.gz | |
sudo tar -C /usr/local -xzf go1.10.linux-amd64.tar.gz | |
## create the goApps directory, set GOPATH, and put it on PATH | |
echo "export PATH=\$PATH:/usr/local/go/bin" >> ~/.bash_profile | |
echo "export GOPATH=$HOME/go" >> ~/.bash_profile |
import React, { useState } from 'react'; | |
import { Navbar, NavbarBrand, Nav, NavbarToggler, Collapse, NavItem, Jumbotron, | |
Button, Modal, ModalHeader, ModalBody, | |
Form, FormGroup, Input, Label } from 'reactstrap'; | |
import { NavLink } from 'react-router-dom'; | |
const Header = (props) => { | |
//Hooks | |
const [modal, setModal] = useState(false); | |
const [nav, setNav] = useState(true); |
import React, { useState } from 'react'; | |
import { Navbar, NavbarBrand, Nav, NavbarToggler, Collapse, NavItem, Jumbotron, | |
Button, Modal, ModalHeader, ModalBody, | |
Form, FormGroup, Input, Label } from 'reactstrap'; | |
import { NavLink } from 'react-router-dom'; | |
const Header = (props) => { | |
//Hooks | |
const [modal, setModal] = useState(false); | |
const [nav, setNav] = useState(true); |