Skip to content

Instantly share code, notes, and snippets.

@suntong
suntong / http.go
Created June 7, 2019 23:37 — forked from AngerM/http.go
High Performance Golang HTTP Client
package utils
import (
"context"
"io"
"io/ioutil"
"net"
"net/http"
"strings"
"time"
@suntong
suntong / Sql.rl
Created August 7, 2021 16:14 — forked from umjasnik/Sql.rl
simple SQL parser using ragel - get all tables that are referenced in a SQL statement
package de.uwefleischer.statemachines;
import java.util.Set;
import java.util.TreeSet;
public class Sql {
private static Set<String> tables;
%%{