Dockerized: V2ray + WebSocket + TLS + Web
also see: https://toutyrater.github.io/advanced/wss_and_web.html
Server side sontents:
- Caddyfile
- config.json
- docker-compose.yml
Client side contents:
Dockerized: V2ray + WebSocket + TLS + Web
also see: https://toutyrater.github.io/advanced/wss_and_web.html
Server side sontents:
Client side contents:
package main | |
import ( | |
"encoding/hex" | |
"fmt" | |
"log" | |
"github.com/btcsuite/btcd/chaincfg" | |
"github.com/btcsuite/btcutil" | |
"github.com/btcsuite/btcutil/hdkeychain" |
// Note that this is not the production code | |
pragma solidity 0.5.6; | |
import "./IERC20.sol"; | |
contract Wallet { | |
address internal token = 0x123...<hot_wallet_addr>; | |
address internal hotWallet = 0x321...<hot_wallet_addr>; | |
constructor() public { |
Designing Data-Intensive Applications | |
Streaming System | |
least expressiveness principle | |
Multi-Paradigm Programming | |
Domain Driven Design |
NB;
192.168.3.XX
doesn't have to be an IP you own.{ | |
"meta": { | |
"theme": "elegant" | |
}, | |
"basics": { | |
"name": "Chris Swanda", | |
"label": "DevOps Engineer at SelectQuote Insurance Services", | |
"picture": "", | |
"email": "[email protected]", | |
"summary": "A consummate, battle-tested technical professional with over 20 years of industry experience, ranging across multiple diverse disciplines - from the laboratory, to the board room. I have the innate ability discover and realize new opportunities for revenue, cost reduction and invention for internal and external stakeholders; by using uncommon knowledge, to bring forth uncommon results.", |
import ( | |
"bytes" | |
"crypto/hmac" | |
"crypto/sha256" | |
"encoding/base64" | |
"io/ioutil" | |
"net/http" | |
"strings" | |
"time" | |
) |