This uses Twitter Bootstrap classes for CodeIgniter pagination.
Drop this file into application/config
.
# kudos to https://github.com/drewlesueur | |
# stolen from here: https://github.com/blog/266-fast-forward-your-fork#comment-11535 | |
git checkout -b upstream/master | |
git remote add upstream git://github.com/documentcloud/underscore.git | |
git pull upstream master | |
git checkout master // [my master branch] | |
git merge upstream/master | |
git push origin master |
/* | |
Ratings Stars | |
(with as little code as possible) | |
*/ | |
.rating { | |
unicode-bidi: bidi-override; | |
direction: rtl; | |
text-align: center; | |
} | |
.rating > span { |
/* Click open/close Dropdown in pure CSS */ | |
/* Disclaimer: Not the most semantic | |
thing in the universe. */ | |
/* Forked from original idea | |
http://jsfiddle.net/paullferguson/Sv54G/3/ */ | |
.tabs { | |
position: relative; |
/** | |
* CSS3 demo: City by night | |
* Multiple backgrounds, basic linear gradients | |
*/ | |
html, body { | |
height: 100%; | |
} | |
html { |
<?php | |
$user = 'rentedsmile'; | |
$url = 'http://gamercard.xbox.com/en-US/' . rawurlencode($user) . '.card'; | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, $url); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
curl_setopt($ch, CURLOPT_TIMEOUT, 5); | |
$output = curl_exec($ch); |
#!/usr/bin/env bash | |
echo "@@@ @@@ @@@@@@@@ @@@ @@@ @@@@@@@ @@@@@@@@ @@@ @@@ " | |
echo "@@@ @@@ @@@@@@@@ @@@@ @@@ @@@@@@@ @@@@@@@@ @@@ @@@ " | |
echo "@@! !@@ @@! @@!@!@@@ @@! @@! @@! !@@ " | |
echo "!@! @!! !@! !@!!@!@! !@! !@! !@! @!! " | |
echo " !@@!@! @!!!:! @!@ !!@! @!! @!!!:! @!@@!@! " | |
echo " @!!! !!!!!: !@! !!! !!! !!!!!: !!@!!! " | |
echo " !: :!! !!: !!: !!! !!: !!: !!: :!! " | |
echo ":!: !:! :!: :!: !:! :!: :!: :!: !:! " |
/** | |
* CSS close button v3 | |
* no pseudo-elements, uses only background gradients on the link | |
* doesn't work on IE9 or lower | |
* for IE9 support see v2: http://dabblet.com/gist/2687089 | |
*/ | |
body { | |
background: rgb(247, 247, 242); | |
} | |
div { |
/* <i> Cloud */ | |
html { | |
min-height: 100%; | |
background: linear-gradient(#b4bcbf, #fff); | |
} | |
.cloud { | |
display: inline-block; | |
background-color: #fff; |
/** | |
* box-shadow vs filter: drop-shadow 2 | |
*/ | |
body { | |
background: #ddd; | |
font: 16px/1 sans-serif; | |
margin: 50px; | |
text-align: right; |
This uses Twitter Bootstrap classes for CodeIgniter pagination.
Drop this file into application/config
.