Skip to content

Instantly share code, notes, and snippets.

View thiagorb's full-sized avatar
👋

Thiago Romão Barcala thiagorb

👋
  • Düsseldorf, Germany
View GitHub Profile
#!/usr/bin/env python3
# Simple TCP proxy server
#
# This script can be used to route traffic from one host to another.
#
# Example:
# proxy.py 127.0.0.1 8080 example.org 80
#
# Running the command above will start a TCP server listening on 127.0.0.1:8080.
@youhide
youhide / build.yml
Created October 25, 2019 18:45
GitHub Actions - Build for Windows, MacOS, Linux and release on tag.
name: Node CI
on:
push:
tags:
- 'v*'
jobs:
upload-release: