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
.container_12 .grid_2 > .grid_1 { | |
width: 48%; | |
} | |
.container_12 .grid_2 > .grid_1.alpha, | |
.container_12 .grid_2 > .grid_1.omega { | |
width: 49%; | |
} | |
.container_12 .grid_3 > .grid_1 { | |
width: 31.333%; | |
} |
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
<?php | |
function Filter($data, $control = true, $encoding = null) | |
{ | |
if (is_array($data) === true) | |
{ | |
$result = array(); | |
foreach ($data as $key => $value) | |
{ |
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
<?php | |
function Coordinates() | |
{ | |
if (count($arguments = func_get_args()) > 1) | |
{ | |
foreach ($arguments as $key => $value) | |
{ | |
$arguments[$key] = sprintf('%04s', ph()->Math->Base(10, 62, round($value + 180, 4) * 10000)); | |
} |
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
/* | |
Comprehensive List of Browser-Specific CSS Hacks | |
http://paulirish.com/2009/browser-specific-css-hacks/ | |
*/ | |
/***** Selector Hacks ******/ | |
/* IE6 and below */ | |
* html #uno { color: red } | |
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
<?php | |
/** | |
* Database wrapper for MySQL, PostgreSQL, SQLite and Firebird. | |
* | |
* This method provides a simplified and secure way (using prepared statements and un-named variadic parameters) | |
* to connect and query databases via PDO. The database connection is kept in an internal singleton registry. | |
* | |
* ---- | |
* |
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
.grid { | |
margin: 0 auto; | |
width: 480px; | |
._01 { | |
background-color: rgb(109, 51, 193); | |
width: 23.000000%; | |
} | |
._02 { | |
background-color: rgb(30, 9, 171); |
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
.grid { | |
margin: 0 auto; | |
width: 480px; | |
._(@n) { | |
width: 100% / 8 * @n - 2 * 1%; | |
} | |
._01 { | |
._(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
.grid { | |
margin: 0 auto; | |
width: 960px; | |
._01 { | |
width: 960px / 4 * 1 - 2 * 10px; | |
} | |
._02 { | |
width: 960px / 4 * 2 - 2 * 10px; |
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
<?php | |
/** | |
* The MIT License | |
* http://creativecommons.org/licenses/MIT/ | |
* | |
* Copyright (c) Alix Axel <[email protected]> | |
**/ | |
class phunction_DB_Mock extends phunction |
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> | |
<meta charset="utf-8"> | |
<title>styleshit 1.0</title> | |
<style type="text/css"> | |
iframe { | |
border: none; | |
} |
OlderNewer