Skip to content

Instantly share code, notes, and snippets.

@edwjusti
edwjusti / flex.html
Last active October 11, 2016 08:26
It is just a demo of flexbox.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=0">
<meta name="description" content="An almost responsive website">
<title>Shop</title>
<style>
body {
background-color: rgb(235,235,235);
@edwjusti
edwjusti / settimeout.php
Created April 27, 2017 17:28
setTimeout for php
<?php
class TimeoutClass extends Thread {
public function __construct(callable $cb, int $time, $args){
$this->callback = $cb;
$this->args = $args;
$this->time = $time * 1000;
}
public function run(){
usleep($this->time);