Skip to content

Instantly share code, notes, and snippets.

View rajkumarpb's full-sized avatar
🎯
Focusing

Rajkumar rajkumarpb

🎯
Focusing
View GitHub Profile
@rajkumarpb
rajkumarpb / main.go
Created September 8, 2017 07:17 — forked from alyssaq/main.go
GET and POST golang API
/*
* Sample API with GET and POST endpoint.
* POST data is converted to string and saved in internal memory.
* GET endpoint returns all strings in an array.
*/
package main
import (
"encoding/json"
"flag"
@rajkumarpb
rajkumarpb / auth.go
Created September 8, 2017 07:17 — forked from tristanwietsma/auth.go
Golang web server example
package main
import (
"encoding/base64"
"net/http"
"strings"
)
type handler func(w http.ResponseWriter, r *http.Request)
@rajkumarpb
rajkumarpb / tree.html
Created January 12, 2016 18:42 — forked from mitchellrj/tree.html
HTML & CSS vertical tree layout
<html>
<head>
<title>HTML &amp; CSS tree</title>
<!-- tree -->
<style type="text/css">
ul.tree {
overflow-x: auto;
white-space: nowrap;
}