Skip to content

Instantly share code, notes, and snippets.

@shabinesh
shabinesh / rB.go
Created September 14, 2017 11:23
adhoc RequestBin for dev
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
log "github.com/sirupsen/logrus"
@shabinesh
shabinesh / id.c
Created April 17, 2012 03:57
unique id generator
#include<stdio.h>
#include<sys/time.h>
int main()
{
int i;
for(i =0;i < 32; i++)
func(i);
return 0;
}