I hereby claim:
- I am igor-arkhipov on github.
- I am igor_arkhipov (https://keybase.io/igor_arkhipov) on keybase.
- I have a public key whose fingerprint is 68F1 75B2 A2A7 A8EF F51F E747 501A 2126 95F9 51B9
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
// web_check.go | |
package main | |
import ( | |
"fmt" | |
"net/http" | |
"time" | |
) | |
const url = "https://golang.org/" |
/** | |
* Marching ants border | |
*/ | |
@keyframes ants { to { background-position: 100% 100% } } | |
div { | |
padding: 1em; | |
border: 1px solid transparent; | |
background: linear-gradient(white, white) padding-box, |
/** | |
* Typing animation | |
*/ | |
@keyframes typing { | |
from { width: 0 } | |
} | |
@keyframes caret { | |
50% { border-right-color: transparent; } |
<?php | |
$ghost_data = json_decode(file_get_contents("./GhostData.json"),true) ; | |
foreach ($ghost_data['data']['posts'] as $key => $value) { | |
$created_at = date("c",$value["created_at"]/1000); | |
$title = str_replace('\\','\\\\',$value["title"]) ; | |
$title = str_replace('"','\"',$title) ; |