gpg --default-new-key-algo "ed25519/cert,sign+cv25519/encr" --quick-generate-key "[email protected]"
gpg --gen-key
- Set realname: Name Surname
- Set eamil: [email protected]
- Set strong password
[ | |
{ | |
"inputs": [ | |
{ | |
"internalType": "contract ICoWSwapSettlement", | |
"name": "_cowSwapSettlement", | |
"type": "address" | |
}, | |
{ | |
"internalType": "contract IWrappedNativeToken", |
gpg --default-new-key-algo "ed25519/cert,sign+cv25519/encr" --quick-generate-key "[email protected]"
gpg --gen-key
git clean -xfd | |
git submodule foreach --recursive git clean -xfd | |
git reset --hard | |
git submodule foreach --recursive git reset --hard | |
git submodule update --init --recursive |
#!/usr/bin/env bash | |
# install | |
update-alternatives --install /usr/bin/python python /usr/bin/python3 1 | |
update-alternatives --install /usr/bin/python python /usr/bin/python2.7 2 | |
# list | |
update-alternatives --list python | |
# change | |
update-alternatives --config python |
#include <iostream> | |
#include <sstream> | |
#include <string> | |
#include <vector> | |
#include <memory> | |
#include <stdexcept> | |
#include <cstring> | |
#include <openssl/aes.h> | |
#include <openssl/err.h> |
function (conan_fallback) | |
set(options) | |
set(single NAME LOCAL_INCLUDE_DIR SUBDIR SYSTEM_INCLUDE_DIR TARGET_NAME LOCAL_LIBS_PREFIX) | |
set(multi PROPERTIES) | |
cmake_parse_arguments("FF" "${options}" "${single}" "${multi}" ${ARGN}) | |
if (TARGET CONAN_PKG::${FF_NAME}) | |
return() | |
endif () |
You need *.aar one.
#!/usr/bin/env bash | |
set -o xtrace | |
# https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.tar.gz | |
BOOST_MAJOR_VER="1" | |
BOOST_MINOR_VER="68" | |
BOOST_PATCH_VER="0" | |
BOOST_VER="${BOOST_MAJOR_VER}.${BOOST_MINOR_VER}.${BOOST_PATCH_VER}" | |
BOOST_VER_US="${BOOST_MAJOR_VER}_${BOOST_MINOR_VER}_${BOOST_PATCH_VER}" |
sudo apt-get install devscripts build-essential lintian
myproj_1.0.0.orig/usr/bin
, libraries in usr/lib
or usr/lib64
et cetera..tar -zcvf myproj_1.0.0.orig.tar.gz myproj_1.0.0.orig
cd myproj_1.0.0.orig
mkdir debian
dch --create -v 1.0.0-1 --package myproj
- this command may ask you about preferred editor, select onepublic class FFMpegProgress { | |
// raw | |
// frame=\s*(?<nframe>[0-9]+)\s+fps=\s*(?<nfps>[0-9\.]+)\s+q=(?<nq>[0-9\.-]+)\s+(L?)\s*size=\s*(?<nsize>[0-9]+)(?<ssize>kB|mB|b)?\s*time=\s*(?<sduration>[0-9\:\.]+)\s*bitrate=\s*(?<nbitrate>[0-9\.]+)(?<sbitrate>bits\/s|mbits\/s|kbits\/s)?.*(dup=(?<ndup>\d+)\s*)?(drop=(?<ndrop>\d+)\s*)?speed=\s*(?<nspeed>[0-9\.]+)x | |
private final static Pattern PATTERN_S = Pattern.compile("" + | |
"frame=\\s*(?<nframe>[0-9]+)\\s+" + | |
"fps=\\s*(?<nfps>[0-9\\.]+)\\s+" + | |
"q=(?<nq>[0-9\\.-]+)\\s+(L?)\\s*" + | |
"size=\\s*(?<nsize>[0-9]+)(?<ssize>kB|mB|b)?\\s*" + | |
"time=\\s*(?<sduration>[0-9\\:\\.]+)\\s*" + | |
"bitrate=\\s*(?<nbitrate>[0-9\\.]+)(?<sbitrate>bits\\/s|mbits\\/s|kbits\\/s)?.*" + |