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

Highlights

  • Pro

Organizations

@blackhole-rs
Block or Report

Block or report imthaghost

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
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

  1. goclone goclone Public

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

    Go 1.1k 234

  2. hashicorp/vault hashicorp/vault Public

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

    Go 29.6k 4k

  3. gocolly/colly gocolly/colly Public

    Elegant Scraper and Crawler Framework for Golang

    Go 22.1k 1.7k

  4. scdl scdl Public

    SoundCloud music downloader 🎶

    Go 56 9

  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