Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am FabianFrank on github.
  • I am fabian (https://keybase.io/fabian) on keybase.
  • I have a public key whose fingerprint is 8151 8F2B 74FE FD1E 5DE3 F5A6 EFB2 146F 9E39 C909

To claim this, I am signing this object:

#include <stdio.h>
#include <curl/curl.h>
int main (char** argv, int argc) {
CURL *curl;
CURLcode res;
char* url = NULL;
double filesize;
curl = curl_easy_init();
@FabianFrank
FabianFrank / abort-crash.js
Created July 19, 2012 20:32
node 0.6 .abort() crash
var http = require('http');
var options = {
host: 'www.google.com',
port: 80,
path: '/upload',
method: 'POST'
};
var req = http.request(options, function(res) {