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
| for i in /*; do echo $i; find $i | wc -l; done |
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
| <div id="sample-uploader-container" class="well"> | |
| <span id="sample-uploader-upload" class="btn"><i class="icon-upload"></i> Select</span> or drop here | |
| </div> | |
| <div id="sample-uploader-fileslist"></div> |
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
| <video poster="images/preview.png" width="1280" height="720" controls="controls" preload="none"> | |
| <source src="media/video.mp4" type="video/mp4"></source> | |
| <source src="media/video.webm" type="video/webm"></source> | |
| <source src="media/video.ogg" type="video/ogg"></source> | |
| </video> | |
| <audio controls="controls" preload="none"> | |
| <source src="music.ogg" type="audio/ogg"> | |
| <source src="music.mp3" type="audio/mpeg"> | |
| </audio> |
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
| <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <meta name="HandheldFriendly" content="true"> |
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
| @font-face { | |
| font-family: 'MyFont'; | |
| src: url('myfont.eot'); | |
| src: url('myfont.eot?#iefix') format('embedded-opentype'), | |
| url('myfont.woff') format('woff'), | |
| url('myfont.ttf') format('truetype'), | |
| url('myfont.svg#webfont') format('svg'); | |
| } | |
| h1 { |
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
| .el { | |
| background-color: #000; | |
| filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bbb', endColorstr='#000'); | |
| background-image: -webkit-gradient(linear, left top, left bottom, from(#bbb), to(#000)); | |
| background-image: -webkit-linear-gradient(top, #bbb, #000); | |
| background-image: -moz-linear-gradient(top, #bbb, #000); | |
| background-image: -ms-linear-gradient(top, #bbb, #000); | |
| background-image: -o-linear-gradient(top, #bbb, #000); | |
| background-image: linear-gradient(top, #bbb, #000); | |
| } |
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-US"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <title>Default Page Title</title> | |
| <link rel="shortcut icon" href="favicon.ico"> | |
| <link rel="icon" href="favicon.ico"> | |
| <link rel="stylesheet" type="text/css" href="styles.css"> | |
| <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> | |
| <!--[if lt IE 9]> |
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
| /** | |
| * jquery.plugin.js v1.0.0 | |
| * http://github.com/someone/someplugin | |
| */ | |
| ;( function( $, window, undefined ) { | |
| 'use strict'; | |
| var pluginName = 'pluginName', | |
| Plugin = function( options, element ) { | |
| this.$el = $( element ); |
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
| @reboot ~/node-app-starter.sh >> cron.log 2>&1 |
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
| $("img").one('load', function() { | |
| // do stuff | |
| }).each(function() { | |
| if(this.complete) $(this).load(); | |
| }); |