Skip to content

Instantly share code, notes, and snippets.

@joaolsilva
joaolsilva / http-mime.go
Last active June 22, 2018 13:49
malformed MIME header line: Content-Disposition = attachment; filename=file.asc
package main
import (
"io/ioutil"
"log"
"net/http"
"time"
)
const url = "http://ruby.streamguys.com:8120/status2.xsl?mount=/live"
@joaolsilva
joaolsilva / curl-crash.go
Created August 3, 2017 10:06
Crash demonstration for go-curl
package main
import (
"github.com/andelf/go-curl"
"log"
"sync"
"time"
)
const maxRequests = 100