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
| -webkit-animation-name: 'glow'; | |
| -webkit-animation-duration: .7s; | |
| -webkit-animation-iteration-count: infinite; | |
| -webkit-animation-direction: alternate; | |
| -webkit-animation-timing-function: ease-in-out; |
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
| html, body, div, span, applet, object, iframe, | |
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
| a, abbr, acronym, address, big, cite, code, | |
| del, dfn, em, img, ins, kbd, q, s, samp, | |
| small, strike, strong, sub, sup, tt, var, | |
| b, u, i, center, | |
| dl, dt, dd, ol, ul, li, | |
| fieldset, form, label, legend, | |
| table, caption, tbody, tfoot, thead, tr, th, td, | |
| article, aside, canvas, details, embed, |
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
| define(['angular', | |
| 'angularResource', | |
| 'controllers/controllers', | |
| 'services/services', | |
| 'filters/filters', | |
| 'directives/directives'], | |
| function (angular) { | |
| return angular.module('myapp', ['ngResource', | |
| 'myapp.controllers', | |
| 'myapp.services', |
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
| sudo passwd root | |
| sudo -s | |
| sudo tcsh |
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
| /** | |
| * Oh, wow, vertical writing mode! Webkit only. | |
| */ | |
| html { | |
| -webkit-writing-mode: vertical-rl; | |
| -moz-writing-mode: vertical-rl; | |
| -ms-writing-mode: vertical-rl; | |
| -o-writing-mode: vertical-rl; | |
| writing-mode: vertical-rl; |