I hereby claim:
- I am jshawl on github.
- I am jshawl (https://keybase.io/jshawl) on keybase.
- I have a public key whose fingerprint is 3758 9426 D58C 9735 5D1C 6FB4 CC42 B149 A905 154C
To claim this, I am signing this object:
| html, body{ | |
| height:100%; | |
| background:#222; | |
| } | |
| body{ | |
| display:flex; | |
| align-items:center; | |
| justify-content:center; | |
| } |
| #!/usr/bin/env ruby | |
| require 'open-uri' | |
| require 'socket' | |
| require 'net/http' | |
| require 'net/https' | |
| p Time.now.strftime("%d/%m/%Y %H:%M") | |
| domain = '...' | |
| current_ip = open('http://whatismyip.akamai.com').read |
| $track-icons: 'hairtechnique', 'hairtexture', 'barber', 'makeup', 'nail', 'business', 'genericplaceholder'; | |
| div{ | |
| @for $i from 1 through length($track-icons){ | |
| &.#{nth( $track-icons , $i )}{ | |
| position:relative; | |
| &:after{ | |
| content:''; | |
| display:block; | |
| position:absolute; | |
| height:70px; |
| <-- link locally --> | |
| <script src="js/jquery-1.8.3.min.js"></script> | |
| <-- use CDN --> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> |
| <!DOCTYPE html> | |
| <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <title></title> | |
| <meta name="description" content=""> | |
| <meta name="viewport" content="width=device-width"> | |
| </head> | |
| <body> |
| <!DOCTYPE html> | |
| <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <title></title> | |
| <meta name="description" content=""> | |
| <meta name="viewport" content="width=device-width"> | |
| </head> | |
| <body> |
I hereby claim:
To claim this, I am signing this object:
| $blockSize:25px; | |
| $color: #000; | |
| body{ | |
| padding:$blockSize; | |
| } | |
| .invader{ | |
| height:7 * ($blockSize +1); | |
| width:11 * ($blockSize +1); |
| @for $i from 1 to 5{ | |
| a{ | |
| top:$i; | |
| } | |
| } |
| @base: #f938ab; | |
| .box-shadow(@style, @c) when (iscolor(@c)) { | |
| -webkit-box-shadow: @style @c; | |
| box-shadow: @style @c; | |
| } | |
| .box { | |
| color: saturate(@base, 5%); | |
| border-color: lighten(@base, 30%); |