This file contains 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
$ ./ffmpeg -i video.mkv -vf subtitles=rus.srt out.mkv |
This file contains 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
@-moz-document url-prefix() {} |
This file contains 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
<ul class="tab-nav"> | |
<li><a href="#tab1">tab 1</a></li> | |
<li><a href="#tab2">tab 2</a></li> | |
<li><a href="#tab3">tab 3</a></li> | |
</ul> | |
<div class="tab-content"> | |
<div class="panel" id="tab1">panel 1</div> | |
<div class="panel" id="tab2">panel 2</div> | |
<div class="panel" id="tab3">panel 3</div> |
This file contains 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
// Format number in input | |
function formatNumber(num) { | |
return ("" + num).replace(/(\d)(?=(\d\d\d)+(?!\d))/g, function($1) { return $1 + " " }); | |
} | |
$('.format-num').on('keyup', function () { | |
$(this).val( formatNumber(this.value.replace(/\s/g, '')) ); | |
}); |
This file contains 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
@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) { | |
.logo { | |
background: url('[email protected]') 0 0 no-repeat; | |
background-size: cover; | |
} | |
} |
This file contains 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> | |
<script> | |
//This plays a file, and call a callback once it completed (if a callback is set) | |
function play(audio, callback) { | |
audio.play(); | |
if (callback) { |
This file contains 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
.grayscale { | |
-webkit-filter: grayscale(1); | |
filter: grayscale(1); | |
} |
This file contains 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
<!-- Facebook --> | |
<meta property="og:title" content="Title of your content" /> | |
<meta property="og:description" content="Description Here" /> | |
<meta property="og:url" content="http://www.example.com" /> | |
<meta property="og:site_name" content="Your Site Name" /> | |
<meta property="og:image" content="http://example.com/ogp.jpg" /> | |
<meta property="og:image:secure_url" content="https://secure.example.com/ogp.jpg" /> | |
<meta property="og:image:type" content="image/jpeg" /> | |
<meta property="og:image:width" content="500" /> | |
<meta property="og:image:height" content="400" /> |
This file contains 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
input[type=text]::-webkit-input-placeholder { color: #d9d9d9; }/* WebKit browsers */ | |
input[type=text]:-moz-placeholder { color: #d9d9d9; }/* Mozilla Firefox 4 to 18 */ | |
input[type=text]::-moz-placeholder { color: #d9d9d9; }/* Mozilla Firefox 19+ */ | |
input[type=text]:-ms-input-placeholder { color: #d9d9d9; }/* Internet Explorer 10+ */ |
This file contains 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 class="row"> | |
<?php for ($i = 0; $i < count($news); $i++) { ?> | |
<?php if ($i == 0 ) { | |
echo '<div class="row">'; | |
} else if ($i != 0 && $i % 4 == 0) { | |
echo '</div><div class="row">'; | |
} ?> | |
<?php if ($i == (count($news)-1) && count($news) % 4 != 0) { |