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
<link rel="apple-touch-icon" href="path/to/touchicon.png"> | |
<link rel="icon" href="path/to/favicon.png"> | |
<!--[if IE]><link rel="shortcut icon" href="path/to/favicon.ico"><![endif]--> | |
<!-- or, set /favicon.ico for IE10 win --> | |
<meta name="msapplication-TileColor" content="#D83434"> | |
<meta name="msapplication-TileImage" content="path/to/tileicon.png"> |
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
# First test if this is what you want it to do | |
find . -type f -name "*.srt" | awk '{print("mv \""$0"\" \""$0"\"")}' | sed 's/\.srt/\.nl\.srt/2' | |
# Second if everything seems wright, do it! | |
#find . -type f -name "*.srt" | awk '{print("mv \""$0"\" \""$0"\"")}' | sed 's/\.srt/\.nl\.srt/2' | /bin/sh | |
# Exclude already correct subtitles | |
#find . -type f -name "*.srt" -not -name "*.nl.srt" | awk '{print("mv \""$0"\" \""$0"\"")}' | sed 's/\.srt/\.nl\.srt/2' |
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
Options All -Indexes | |
DirectoryIndex index.php index.htm index.html | |
RewriteEngine on | |
RewriteBase / | |
# Force HTTPS on the subdomains/subdirectories login or admin | |
#RewriteCond %{HTTPS} off | |
#RewriteCond %{HTTP_HOST} ^(login|admin)\. [NC] |
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
/* | |
* FORM | |
*/ | |
label {display:block;} | |
form {margin-top:15px;} | |
div.form{margin:60px 0; clear:right; border-bottom:1px solid #222222; padding-bottom:25px;} | |
div.form input, div.form textarea{padding:4px; margin:1px 0 0 0; font-size:1.462em; font-family:Arial, Sans-serif; width:624px; background: #000; color:#515151; border:none; overflow:auto;} | |
div.form input.active, div.form textarea.active{background: #888; color:#111; border:none;} | |
div.form input.error, div.error textarea.active{border-bottom:1px solid #E00080;} | |
div.form span.error{color: #E00080; font-size:1.462em; line-height:160%} |