Skip to content

Instantly share code, notes, and snippets.

@internoma
internoma / script.js
Last active August 29, 2015 14:24
Detecting CSS Animation and Transition End with JavaScript
/*
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-';
@internoma
internoma / r4bkganimation
Created April 25, 2015 09:51
r4bkganimation
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%}
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
@internoma
internoma / index.html
Created February 27, 2015 22:17
css colors pallette
<!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>
#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) {
@internoma
internoma / ocp.php
Last active August 29, 2015 14:14 — forked from ck-on/ocp.php
<?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
@internoma
internoma / UUID.php
Last active August 29, 2015 14:13 — forked from dahnielson/UUID.php
<?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.
/**
* Simple localStorage with Cookie Fallback
* v.1.0.0
*
* USAGE:
* ----------------------------------------
* Set New / Modify:
* store('my_key', 'some_value');
*
* Retrieve:
@internoma
internoma / getParameterByName.js
Last active August 29, 2015 14:07
Javascript URL getParameterByName
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');