- Haywire
- Serenity
- Moon
- Source Code
- Vantage Point
- Redeye
- Non-Stop
- Run Lola Run
- The International
- The Other Guys
🏳️🌈
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
<!-- Paste into the address bar under Chrome or Firefox --> | |
data:text/html,<html><body style="margin:0; padding: 0;"><iframe id="vid1" src="http://www.youtube.com/embed/T0sHvtRaGe0" frameborder="0"></iframe><iframe id="vid2" src="http://www.youtube.com/embed/jrZcAsPKK74" frameborder="0"></iframe><iframe id="vid3" src="http://www.ustream.tv/embed/16555296?v=3&wmode=direct" frameborder="0"></iframe><iframe id="vid4" src="http://www.ustream.tv/embed/16573315?v=3&wmode=direct" frameborder="0"></iframe></body></html><script>for (i=1;i<=4;i++){ document.getElementById("vid"+i).height=50+"%";document.getElementById("vid"+i).width= 50+"%"; }</script> |
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 | |
class user { | |
public $name = 'nfreader'; | |
public $userid = 1; | |
public function displayName() { | |
echo $this->name; | |
} | |
} |
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 | |
$colors = array('#FF69B4','#FF1493','#C71585','#DC143C','#B22222','#8B0000','#FF0000','#FF8C00','#B8860B','#D2691E','#8B4513','#A52A2A','#556B2F','#808000','#3CB371','#2E8B57','#008000','#006400','#00CED1','#008080','#00BFFF','#1E90FF','#4682B4','#0000FF','#0000CD','#191970','#FF00FF','#BA55D3','#8A2BE2','#8B008B','#4B0082','#7B68EE','#696969','#778899','#2F4F4F','#000000'); |
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
function loadContent(page, content, dest) { | |
$(dest).load("view/" + page + ".php " + content + ""); | |
console.log("view/" + page + ".php " + content + " " + dest); | |
} | |
function loadPage(page) { | |
$('#game').load("view/" + page + ".php"); | |
console.log("view/" + page + ".php"); | |
} |
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 | |
/* hexPrint | |
* | |
* Mutilates a given string into a unique, Cool Looking(tm) hex string | |
* | |
* @string (string) The string we're abusing | |
* @prefix (string) A few characters we can use to denote a hex string. Default | |
* is '0x' | |
* | |
* @return (string) A Cool Looking(tm) hex string |
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
414.00 APPLING | |
1219.00 ATKINSON | |
75.00 BACON | |
3253.00 BAKER | |
33776.00 BALDWIN | |
5110.00 BANKS | |
8072.00 BARROW | |
31418.00 BARTOW | |
276.00 BEN HILL | |
4750.00 BERRIEN |
Here's a Wordpress snippet that will:
- Implement shortcodes to let you quickly insert a Font Awesome icon
- Properly loads the Font Awesome stylesheet (via CDN)
Add to your theme's functions.php file. Usage in content:
[fa icon='github']
for a single icon
[fa-btn icon='github' bg='square'(optional)]
for stacked icons
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
var icons = {"icons":["adjust", "adn", "align-center", "align-justify", "align-left", "align-right", "ambulance", "anchor", "android", "angellist", "angle-double-down", "angle-double-left", "angle-double-right", "angle-double-up", "angle-down", "angle-left", "angle-right", "angle-up", "apple", "archive", "area-chart", "arrow-circle-down", "arrow-circle-left", "arrow-circle-o-down", "arrow-circle-o-left", "arrow-circle-o-right", "arrow-circle-o-up", "arrow-circle-right", "arrow-circle-up", "arrow-down", "arrow-left", "arrow-right", "arrow-up", "arrows", "arrows-alt", "arrows-h", "arrows-v", "asterisk", "at", "automobile", "backward", "ban", "bank", "bar-chart", "bar-chart-o", "barcode", "bars", "bed", "beer", "behance", "behance-square", "bell", "bell-o", "bell-slash", "bell-slash-o", "bicycle", "binoculars", "birthday-cake", "bitbucket", "bitbucket-square", "bitcoin", "bold", "bolt", "bomb", "book", "bookmark", "bookmark-o", "briefcase", "btc", "bug", "building", "building-o", "bullhorn", "bullseye", "bus", " |
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-image: linear-gradient( to right, #EB0012, #EB0012 16.66%, #EB7700 16.66%, #EB7700 33.32%, #EBCF00 33.32%, #EBCF00 49.98%, #00D942 49.98%, #00D942 66.64%, #0050D4 66.64%, #0050D4 83.3%, #8D00FF 83.3% ); | |
background-size: 12.5% 2px; | |
background-repeat: repeat-x; | |
padding: 2px 0 0 0; | |
} |