Skip to content
View imthaghost's full-sized avatar
🐿️
Spawning gophers
🐿️
Spawning gophers

Highlights

  • Pro

Organizations

@robinhoodmarkets

Block or report imthaghost

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
imthaghost/README.md

Boo!

Just your friendly neighborhood Go dabbler who loves network programming, and contributing to open-source projects!

pgp views Static Badge Static Badge


About Me

I'm a software engineer with 3 years of experience in a variety of domains. For the past few years, I've focused on web application performance/scalability, microservice orchestration, and platform development - tinkering with machine learning, and all things Cloud Native.

~ imthaghost

Pinned Loading

  1. hashicorp/vault hashicorp/vault Public

    A tool for secrets management, encryption as a service, and privileged access management

    Go 33.6k 4.5k

  2. gocolly/colly gocolly/colly Public

    Elegant Scraper and Crawler Framework for Golang

    Go 24.9k 1.8k

  3. goclone-dev/goclone goclone-dev/goclone Public

    Website Cloner - Utilizes powerful Go routines to clone websites to your computer within seconds.

    Go 1.9k 362

  4. scdl scdl Public

    SoundCloud music downloader 🎶

    Go 75 15

  5. Tor proxy Tor proxy
    1
    // TorProxy initializes and returns a TOR SOCKS proxy function for use in a Transport
    2
    func TorProxy() func(*http.Request) (*url.URL, error) {
    3
    // A source of uniformly-distributed pseudo-random
    4
    rand.Seed(time.Now().UnixNano())
    5
     
  6. Represents an HTTP Client over the T... Represents an HTTP Client over the Tor network
    1
    // Tor represents an HTTP Client over the Tor network
    2
    type Tor struct {
    3
    MaxTimeout time.Duration // Max Timeout
    4
    MaxIdleConnections int // Max Idle Connections
    5
    Transport *http.Transport // Custom Transport