Skip to content

Instantly share code, notes, and snippets.

@arieh
arieh / hack.php
Last active December 25, 2015 06:09
<?php
function overload($obj){
$obj->setHeader = function() $obj as $this {
//magic happens here
}
}
class Mobile_Cart_View extends Cart_View {
public function __construct(){
@arieh
arieh / widgets.js
Created February 27, 2013 22:03
how do I solve this issue w/ AMD?
//what we currently have
//test1.js
widget.register('test1',{
//widget code
});
//test2.js
widget.register('test2',{
@arieh
arieh / Stack.js
Last active December 11, 2015 03:48
a small flow-control objecy
function Stack(){
function next(){
var fn = this.$stack[this.$index++];
return fn && fn.apply(this, arguments);
}
function current(){
var fn = this.$index === 0 ? this.$stack[this.$index] : this.$stack[this.$index -1];
return fn && fn.apply(this, arguments);
}
@arieh
arieh / Stack.js
Created May 2, 2012 11:58
Stack.js
/*!
Copyright (c) <2012> <Arieh Glazer>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
@arieh
arieh / Outliner.js
Created April 23, 2012 12:41
Cross-Lib accessible outline removal
/*!
Copyright (c) <2012> <Arieh Glazer>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
@arieh
arieh / dabblet.css
Created December 16, 2011 17:57
Untitled
div.tip{
margin:100px 150px;
width:25px;
height:25px;
border:1px solid orange;
border-radius:50%;
background:linear-gradient(top, #f9f44a 2%, #ffa51e 61%, #d17308 100%);
position:relative;
cursor:pointer;
}
@arieh
arieh / dabblet.css
Created December 16, 2011 17:57
Untitled
div.tip{
margin:100px 150px;
width:25px;
height:25px;
border:1px solid orange;
border-radius:50%;
background:linear-gradient(top, #f9f44a 2%, #ffa51e 61%, #d17308 100%);
position:relative;
cursor:pointer;
}
@arieh
arieh / dabblet.css
Created December 16, 2011 17:28 — forked from anonymous/dabblet.css
Untitled
div.tip{
margin:100px 150px;
width:25px;
height:25px;
border:1px solid orange;
border-radius:50%;
background:linear-gradient(top, #f9f44a 2%, #ffa51e 61%, #d17308 100%);
position:relative;
cursor:pointer;
}
<?php
/**
*Benchmark class, it's a good solution for testing your web applications and scripts!
*also it can be a permanent tool you can integrate into your systems that will indicate the performance of your app/script etc.
* Test Time and memory consumption!
* Example usage:
*
* <code>
* require('Benchmark.class.php');
* Benchmark::startTimer();
@arieh
arieh / Break.js
Created October 21, 2010 14:34
Adds a Break function to $each (Mootools 1.3)
function BreakException(){}
function Break(){throw new BreakException;}
(function(window,undef){
window['$each'] = function(obj,func,bind){
try{
switch (typeOf(obj)){
case 'object':