This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * css 3d animation, how? (SO) | |
| * http://stackoverflow.com/q/9812196/1397351 | |
| */ | |
| body { perspective: 50em; } | |
| .cube { | |
| position: relative; | |
| margin: 8em auto 0; /* centering */ | |
| padding: 0; /* reset unordered list default */ | |
| width: 16em; height: 16em; /* change block element default */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Matrix 3d transform for obtaining trapezoid? (SO) | |
| * http://stackoverflow.com/q/14480341/1397351 | |
| */ | |
| .doors { | |
| margin: 7em auto; | |
| width: 16em; height: 16em; | |
| perspective: 35em; | |
| } | |
| .door { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <div class="wrapper"> | |
| <ul> | |
| <li>Menu </li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Write a small function that returns the values of an array that are not odd. | |
| # All values in the array will be integers. Return the good values in the order they are given. | |
| def no_odds( values ) | |
| values.select &:even? | |
| end | |
| def no_odds( values ) | |
| values.find_all { |item| item % 2 == 0 } | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Image slider with pure CSS | |
| * Original version in http://demosthenes.info/blog/css | |
| */ | |
| .image-slider { | |
| position:relative; | |
| display: inline-block; | |
| line-height: 0; | |
| } |
###SSH into a remote machine###
ssh user@mydomain.com
#or by ip address
ssh user@192.168.1.1
exit: exit
###Install Something###
#If it's a new server, update apt-get first thing
Forked from Paul Fleury's Pen Slick carousel - test.
Simple site map web app. Started as a jQuery exercise I gave myself.
Forked from ianchouinard's Pen Site Mapper.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ּ_בּ | |
| בּ_בּ | |
| טּ_טּ | |
| כּ‗כּ | |
| לּ_לּ | |
| מּ_מּ | |
| סּ_סּ | |
| תּ_תּ | |
| ٩(×̯×)۶ | |
| ٩(̾●̮̮̃̾•̃̾)۶ |
OlderNewer