Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| import ( | |
| "io" | |
| "net/http" | |
| ) | |
| //With HandlerFunc | |
| func main () { | |
| http.Handle("/", JsonpHandler(http.HandlerFunc(func (w http.ResponseWriter, r *http.Request) { | |
| w.Write("Hello World") | |
| }))) |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| <!doctype html> | |
| <html> | |
| <head> | |
| <title></title> | |
| <style> | |
| button { | |
| display: block; | |
| width: 100px; | |
| height: 100px; | |
| } |