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
| /dev/sda \ # The device to monitor | |
| -a \ # Implies all standard testing and reporting. | |
| -n standby,10,q \ # Don't spin up disk if it is currently spun down | |
| \ # unless it is 10th attempt in a row. | |
| \ # Don't report unsuccessful attempts anyway. | |
| -o on \ # Automatic offline tests (usually every 4 hours). | |
| -S on \ # Attribute autosave (I don't really understand | |
| \ # what it is for. If you can explain it to me | |
| \ # please drop me a line. | |
| -R 194 \ # Show real temperature in the logs. |
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
| // ========================================================= // | |
| // = Boilerplate Less CSS Styles = // | |
| // = by Michael P. Geraci, 2011 - www.michaelgeraci.com = // | |
| // = tell me what's missing: mgeraci@gmail.com | @mgeraci = // | |
| // = free for all to use and modify (MIT License) = // | |
| // ========================================================= // | |
| // ============= // | |
| // = CSS Reset = // |
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
| body#-webkit-web-inspector #main { | |
| background-color: #fdf6e3 !important; } | |
| body#-webkit-web-inspector #main .panel.network, body#-webkit-web-inspector #main .panel.timeline, body#-webkit-web-inspector #main .panel.profiles, body#-webkit-web-inspector #main .panel.audits, body#-webkit-web-inspector #main .panel.extension { | |
| background-color: #ffffff !important; } | |
| /** | |
| * Console | |
| */ | |
| /** | |
| * Messages |
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, object, iframe, | |
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
| abbr, address, cite, code, | |
| del, dfn, em, img, ins, kbd, q, samp, | |
| small, strong, sub, sup, var, | |
| b, i, | |
| dl, dt, dd, ol, ul, li, | |
| fieldset, form, label, legend, | |
| table, caption, tbody, tfoot, thead, tr, th, td, | |
| article, aside, canvas, details, figcaption, figure, |
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
| body { | |
| background: url('back.jpg') no-repeat center center fixed; | |
| -moz-background-size: cover; | |
| -webkit-background-size: cover; | |
| -o-background-size: cover; | |
| background-size: cover; | |
| } |
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> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>HTML 5 complete</title> | |
| <!--[if IE]> | |
| <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]--> | |
| <style> | |
| article, aside, details, figcaption, figure, footer, header, |
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
| git init | |
| git remote add laravel https://github.com/laravel/laravel.git | |
| git fetch laravel | |
| git merge laravel/master |