One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
// Refer to https://gist.github.com/remy/350433 | |
try { | |
// Test webstorage existence. | |
if (!window.localStorage || !window.sessionStorage) throw "exception"; | |
// Test webstorage accessibility - Needed for Safari private browsing. | |
localStorage.setItem('storage_test', 1); | |
localStorage.removeItem('storage_test'); | |
} catch(e) { | |
(function () { | |
var Storage = function (type) { |
Table with colors (CMYK
and HEX
) of the Pantone Fashion Color Report Spring 2016.
A Pen by Bram de Haan on CodePen.
!!! 5 | |
%html | |
%head | |
%title Crazy Website | |
%meta{ :charset => "UTF-8" } | |
%meta{ "HTTP-equiv" => "Expires", :content => "0" } | |
%meta{ "HTTP-equiv" => "kiben", :content => "no-cache" } | |
%link{ :href => "css/reset.css", :rel => "stylesheet", :type => "text/css" } | |
%link{ :href => "css/style.css", :rel => "stylesheet", :type => "text/css" } | |
%body |
for i in {0..255} ; do | |
printf "\x1b[38;5;${i}mcolour${i}\n" | |
done |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |