I hereby claim:
- I am palozano on github.
- I am palozano (https://keybase.io/palozano) on keybase.
- I have a public key ASDHmB1HKOPVNXcceiJQR2hzGm7KKITFO1npIgWr2iMnRgo
To claim this, I am signing this object:
pub fn request_signature( | |
&self, | |
to_address: String, | |
value: u128, | |
data: Base64VecU8, | |
nonce: u64, | |
) -> Promise { | |
let (omni_evm_tx, _, signature_request) = | |
self.create_tx_signature_request(to_address, value, data.into(), nonce); |
<head> | |
<meta http-equiv="refresh" content="3"> | |
</head> |
from html.parser import HTMLParser | |
import os | |
import sys | |
import base64 | |
gHelp = """ | |
Merge JS/CSS/images/HTML into one single file | |
Version: 1.0 |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
import re, sys, os | |
sys.tracebacklimit = 0 | |
FAIL_MESSAGE = """ | |
Conventional Commit validation failed. | |
A commit message must be as follows: |
# Useful commands | |
Here you can find things I find useful and may reuse yourself. | |
Not good stuff imo, but hey | |
## Find alias in ZSH, when you are using .oh-my-zsh and some plugins: | |
zsh -ixc : 2>&1 | grep <alias-to-find> |
set nocompatible | |
syntax enable | |
filetype plugin on | |
set path+=** | |
set wildmenu | |
set encoding=utf-8 | |
set listchars=trail:.,tab:>\ ,eol:$ | |
set lazyredraw | |
set laststatus=2 |
First, install it, using apt, yum, pacman, etc.
Imagine we want to back up files from Directory1 to Directory2, and both are on the same hard drive (this would work the same if the directories are on two different drives). There are several different ways to do this, depending on what kind of backups (i.e., options you want to give rsync) you want to configure. The most general, will be this:
$ rsync -av --delete /Directory1/ /Directory2/