alias zed="/Applications/Zed.app/Contents/MacOS/cli"
// ==UserScript== | |
// @name Recaptcha Solver (Automatically solves Recaptcha in browser) | |
// @namespace Recaptcha Solver | |
// @version 2.1 | |
// @description Recaptcha Solver in Browser | Automatically solves Recaptcha in browser | |
// @author engageub | |
// @match *://*/recaptcha/* | |
// @connect engageub.pythonanywhere.com | |
// @connect engageub1.pythonanywhere.com | |
// @grant GM_xmlhttpRequest |
-
https://github.com/MyCryptoHQ/MyCrypto/releases/tag/1.7.17
-
download to ~/Downloads
-
mac_1.7.17_MyCrypto.dmg
-
checksums.txt.gpg
-
checksums.txt
-
view checksum of binary
cd ~/Downloads
shasum -a 256 mac_1.7.17_MyCrypto.dmg
docker exec -w /multix/squid --user=root -it multix-ui-dev /bin/sh
apk add --update tmux
# new Tmux session and window
# references:
# * https://gist.github.com/michaellihs/b6d46fa460fa5e429ea7ee5ff8794b96
# * https://dev.to/iggredible/useful-tmux-configuration-examples-k3g
# commands
find . -size +200M -exec du -hs {} ;
- websockets
- example - https://github.com/chimurai/http-proxy-middleware/blob/master/examples/websocket/index.js
- https://stackoverflow.com/questions/73662397/websockets-not-working-with-http-proxy-middleware
- https://serverfault.com/questions/351559/nginx-without-server-name-and-using-only-static-ip-address
- https://socket.io/docs/v4/client-options/#nodejs-specific-options
- https://socket.io/docs/v4/server-api/
- https://nodejs.org/dist/latest/docs/api/tls.html#tls_tls_createsecurecontext_options
- https://nodejs.org/dist/latest/docs/api/tls.html#tls_tls_connect_options_callback
- https://github.com/socketio/socket.io-protocol
I am using an Apple macOS with M1 processor when following the steps here https://docs.substrate.io/tutorials/v3/cumulus/start-relay/ I am using the versions specified here https://docs.substrate.io/tutorials/v3/cumulus/start-relay/#software-versioning (i.e. polkadot v0.9.16, substrate-parachain-template polkadot-v0.9.16 and Polkadot-JS Apps v0.103.2-8 from https://github.com/polkadot-js/apps/commit/0b6e52733181392e823f7c37e833f4f5fd6b16ef)
First I installed Substrate and Rust:
curl https://getsubstrate.io -sSf | bash -s -- --fast
wget -O - https://sh.rustup.rs | sh -s -- -y
PATH=$PATH:/root/.cargo/bin
I am using an Apple macOS with M1 processor when following the steps here https://docs.substrate.io/tutorials/v3/cumulus/start-relay/ I am using the versions specified here https://docs.substrate.io/tutorials/v3/cumulus/start-relay/#software-versioning (i.e. polkadot v0.9.16, substrate-parachain-template polkadot-v0.9.16)
First I installed Substrate and Rust:
curl https://getsubstrate.io -sSf | bash -s -- --fast
wget -O - https://sh.rustup.rs | sh -s -- -y
PATH=$PATH:/root/.cargo/bin
rustup update stable
{ | |
"name": "DataHighway Westlake Mainnet", | |
"id": "westlake", | |
"chainType": "Live", | |
"bootNodes": [ | |
"/ip4/3.127.123.230/tcp/30333/p2p/12D3KooWPSVWEpuNPKE6EJBAMQQRCrKG4RTfyyabFRjT4xqMkuH5", | |
"/ip4/3.65.196.4/tcp/30333/p2p/12D3KooWPZqAuWSez5uomot7GZvpuRQK198zqLYrLLZt5W7bvqPb", | |
"/ip4/3.123.21.153/tcp/30333/p2p/12D3KooWAjdURBpSsRVWbvnGRbsqykvueM6Vuoe4x7MhV6cxTtje", | |
"/ip4/18.184.76.132/tcp/30333/p2p/12D3KooWCWZc5L6ypCFcvDdGeGwsw9Mo4nniCwiVuU5MB6ApA4ZT", | |
"/ip4/3.124.189.68/tcp/30333/p2p/12D3KooWJ1F4BsNgeaVkZVPw2kRhHxAtJuUqeEik2R7dv9ttgPcv", |
use std::str; | |
fn main() { | |
// -- FROM: vec of chars -- | |
let src1: Vec<char> = vec!['j','{','"','i','m','m','y','"','}']; | |
// to String | |
let string1: String = src1.iter().collect::<String>(); | |
// to str | |
let str1: &str = &src1.iter().collect::<String>(); | |
// to vec of byte |