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
<?php | |
foreach(str_split(base64_decode('YOUR_ENCODED_PASS_HERE')) as $chr) | |
echo chr(((($chr = ord($chr)) << 1) & 0xFF) | ($chr >> (8 - 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
/** | |
* author Remy Sharp | |
* url http://remysharp.com/tag/marquee | |
*/ | |
(function ($) { | |
$.fn.marquee = function (klass) { | |
var newMarquee = [], | |
last = this.length; |
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
<!-- Better Table Template for HTML5 http://perishablepress.com/html5-table-template/#html5table --> | |
<table> | |
<caption>Here we assign header information to cells | |
by setting the scope attribute. | |
</caption> | |
<colgroup /> | |
<colgroup span="2" title="title" /> | |
<thead> | |
<tr> | |
<th scope="col">Name</th> |