Skip to content

Instantly share code, notes, and snippets.

View WitkowskiMichau's full-sized avatar

Michal Witkowski WitkowskiMichau

View GitHub Profile
var users = [
{
"age": 99.0,
"name": "Saly"
}, {
"age": 121,
"name": "Rob"
}, {
"age": 0.3,
"name": "Tomek"
var a = 15;
console.log(this.a);
// => 15
console.log(window.a);
// => 15
@WitkowskiMichau
WitkowskiMichau / abc.html
Created March 7, 2018 18:33
Condition loading css
<link href="other.css" rel="stylesheet" media="(min-width: 40em)">
<link href="print.css" rel="stylesheet" media="print">
<img src="ing.jpg" srcset="img.jpg, img2x.jpg 2x" alt="img">
<img src="img.jpg" srcset="img1024.jpg 1024w, img2048.jpg 2048w" alt="img">
@WitkowskiMichau
WitkowskiMichau / media-query.less
Created March 9, 2018 13:59
media-query.less
@desktop: ~"only screen and (min-width: 960px) and (max-width: 1199px)";
@tablet: ~"only screen and (min-width: 720px) and (max-width: 959px)";
@media @desktop {
footer {
width: 940px;
}
}
@media @tablet {
@WitkowskiMichau
WitkowskiMichau / head.html
Created May 25, 2018 08:36
Slow page head
<!doctype html>
<html lang="en">
<head>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,user-scalable=yes"/>
<title>Very slow website</title>
@WitkowskiMichau
WitkowskiMichau / head.html
Created June 1, 2018 08:00
Header in correct order
<!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=yes"/>
<title>Very slow website</title>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="styles.css"/>
<link rel="dns-prefetch" href="\fonts.googleapis.com">
<link rel="dns-prefetch" href="\code.jquery.com">
<link rel="preconnect" href="https://very-slow-page.herokuapp.com/">