Skip to content

Instantly share code, notes, and snippets.

View kresnasatya's full-sized avatar
🤫
Shh!

Kresna Satya kresnasatya

🤫
Shh!
View GitHub Profile
@kresnasatya
kresnasatya / measure.php
Created April 29, 2019 22:12
Sample measure speed of code in PHP
<?php
$start = microtime(true);
$numbers = array(1, 2, 3, 4, 5);
$new_numbers = array_map(function ($num) {
return $num * $num;
}, $numbers);
print_r($new_numbers);
@kresnasatya
kresnasatya / address.html
Created March 22, 2019 04:37
Address tag
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Address - Web Semantics</title>
</head>
<body>
<footer>
@kresnasatya
kresnasatya / time.html
Created March 22, 2019 04:36
Time tag
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Time - Web Semantics</title>
</head>
<body>
<article>
@kresnasatya
kresnasatya / footer.html
Created March 22, 2019 04:36
Footer tag
@kresnasatya
kresnasatya / figure-figcaption.html
Created March 22, 2019 04:35
Figure and Figcaption tags
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Figure-figcaption - Web Semantics</title>
</head>
<body>
<h2>Places to Visit</h2>
@kresnasatya
kresnasatya / details-summary.html
Last active March 22, 2019 04:35
Details and Summary tags
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Details and summary - Web Semantic</title>
</head>
<body>
@kresnasatya
kresnasatya / aside.html
Created March 22, 2019 04:33
Aside tag
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Aside - Web Semantics</title>
</head>
<body>
<p>My family and I visited The Epcot center this summer.</p>
@kresnasatya
kresnasatya / nav.html
Created March 22, 2019 04:24
Navigation tag
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Navigation - Web Semantic</title>
</head>
<body>
<!-- Voice over will read "nav" tag as navigation on Chrome and Safari -->
@kresnasatya
kresnasatya / header.html
Created March 22, 2019 04:18
Header tag
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Header - Web Semantics</title>
</head>
<body>
<!-- Voice over will read "header" as a "banner" on Chrome and Safari -->
@kresnasatya
kresnasatya / address.html
Last active March 10, 2019 12:24
HTML Semantics
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Address - Web Semantics</title>
</head>
<body>
<footer>