Skip to content

Instantly share code, notes, and snippets.

@tomyhero
tomyhero / test.html
Created February 29, 2016 02:56
check image load timing
<html>
<head>
<title>test</title>
</head>
<body>
<img src="http://blog-imgs-19.fc2.com/r/i/s/risuco/20090509_003.jpg" onload="console.log('loaded 1')">
<img src="https://upload.wikimedia.org/wikipedia/ja/archive/4/4b/20100914121956!Wiki-ezorisu3.jpg" onload="console.log('loaded 2')">
<img src="http://inuneko-sp.gsj.bz/images/special/risubon/02_004_MG_3434.jpg" onload="console.log('loaded 3')">
<img src="http://www.pref-nagano-hosp.jp/kiso/wp-content/uploads/d7d3388f23579594a4d7ef7aaf0a69e8.jpg" onload="console.log('loaded 4')">
@tomyhero
tomyhero / fbbot.go
Created April 14, 2016 09:25
facebook messenger platform sample
package main
import (
"bytes"
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
"io/ioutil"
"net/http"
)