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
/* | |
By Osvaldas Valutis, www.osvaldas.info | |
Available for use under the MIT License | |
*/ | |
;( function( $, window, document, undefined ) | |
{ | |
var s = document.body || document.documentElement, s = s.style, prefixAnimation = '', prefixTransition = ''; | |
if( s.WebkitAnimation == '' ) prefixAnimation = '-webkit-'; |
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
background: linear-gradient(214deg, #882135, #ffffff); | |
background-size: 400% 400%; | |
-webkit-animation: r4bkganimation 30s ease infinite; | |
-moz-animation: r4bkganimation 30s ease infinite; | |
-o-animation: r4bkganimation 30s ease infinite; | |
animation: r4bkganimation 30s ease infinite; | |
@-webkit-keyframes r4bkganimation { | |
0%{background-position:81% 0%} | |
50%{background-position:20% 100%} | |
100%{background-position:81% 0%} |
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
function genEmail(){ | |
var nouns = ["man", "world", "hand", "room", "face", "thing", "place", "door", "woman", "house", "money", "father", "government", "country", "mother", "water", "state", "family", "voice", "fact", "moment", "power", "city", "business", "war", "school", "system", "car", "number", "office", "point", "body", "wife", "air", "mind", "girl", "home", "company", "table", "group", "boy", "problem", "bed", "death", "hair", "child", "sense", "job", "light", "question", "idea", "law", "word", "party", "food", "floor", "book", "reason", "story", "son", "heart", "friend", "interest", "right", "town", "history", "land", "program", "game", "control", "matter", "policy", "oil", "window", "nation", "position", "ground", "blood", "action", "wall", "street", "husband", "fire", "mouth", "arm", "sound", "service", "chance", "information", "price", "building", "road", "paper", "court", "attention", "space", "trouble", "form", "society", "art", "market", "force", "effect", "nature", "chair", "period", "order", "t |
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 lang=en> | |
<head> | |
<meta charset=utf-8> | |
<link rel="stylesheet" href="css/main.css"> | |
<title>The New Defaults</title> | |
</head> | |
<body> | |
<h2>WHITES</h2> |
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
#hero { width:100%;height:100%;background:url('{$img_ps_dir}cms/how-it-works/hero.jpg') no-repeat top center; } | |
.videoWrapper { position:relative;padding-bottom:56.25%;padding-top:25px;max-width:100%; } | |
@media (min-width:1000px) { | |
#hero { background-size:cover; } | |
} | |
@media (max-width:767px) { | |
#hero { width:100%;height:94%!important;background:url('{$img_ps_dir}cms/how-it-works/hero-mobile.jpg') no-repeat top center;background-position: 0 -155px;height: 273px!important;background-position:0 -209px; } | |
} | |
@media (max-width:540px) { |
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 | |
/* | |
OCP - Opcache Control Panel (aka Zend Optimizer+ Control Panel for PHP) | |
Author: _ck_ (with contributions by GK, stasilok) | |
Version: 0.1.6 | |
Free for any kind of use or modification, I am not responsible for anything, please share your improvements | |
* revision history | |
0.1.6 2013-04-12 moved meta to footer so graphs can be higher and reduce clutter | |
0.1.5 2013-04-12 added graphs to visualize cache state, please report any browser/style bugs |
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 | |
/** | |
* UUID class | |
* | |
* The following class generates VALID RFC 4122 COMPLIANT | |
* Universally Unique IDentifiers (UUID) version 3, 4 and 5. | |
* | |
* UUIDs generated validates using OSSP UUID Tool, and output | |
* for named-based UUIDs are exactly the same. This is a pure | |
* PHP implementation. |
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
/** | |
* Simple localStorage with Cookie Fallback | |
* v.1.0.0 | |
* | |
* USAGE: | |
* ---------------------------------------- | |
* Set New / Modify: | |
* store('my_key', 'some_value'); | |
* | |
* Retrieve: |
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
http://code.jquery.com/jquery-latest.js |
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
function getParameterByName(name) { | |
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]"); | |
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"), | |
results = regex.exec(location.search); | |
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " ")); | |
} | |
Usage: | |
var prodId = getParameterByName('prodId'); |