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

Highlights

  • Pro

Organizations

@BearishAi @blackhole-rs @goclone-dev

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. goclone-dev/goclone goclone-dev/goclone Public

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

    Go 2.1k 386

  2. hashicorp/vault hashicorp/vault Public

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

    Go 35.6k 4.7k

  3. scdl scdl Public

    SoundCloud music downloader 🎶

    Go 80 16

  4. gocolly/colly gocolly/colly Public

    Elegant Scraper and Crawler Framework for Golang

    Go 25.3k 1.8k

  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