Skip to content

Instantly share code, notes, and snippets.

@drlior
drlior / TcpProxy.cs
Created September 22, 2018 11:24 — forked from Mordo95/TcpProxy.cs
Asynchronous TCP proxy in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace HolePunchTest
{
public class TcpProxy
@drlior
drlior / excel2csv.py
Created March 13, 2018 09:08 — forked from julianthome/excel2csv.py
Python script to export excel sheets to CSV from a workbook in UTF-8
#!/usr/bin/env python
# export data sheets from xlsx to csv
from openpyxl import load_workbook
import csv
from os import sys
def get_all_sheets(excel_file):
sheets = []