Skip to content

Instantly share code, notes, and snippets.

View mbunge's full-sized avatar
💭
tinker, tinker, ponder, ponder

Marco Bunge mbunge

💭
tinker, tinker, ponder, ponder
View GitHub Profile
@mbunge
mbunge / kol.md
Last active October 8, 2015 09:38
Key of life

The key of life is an infinite circle of

inspiration > idea > action > reflection >

@mbunge
mbunge / mysteriousNaN.php
Created August 10, 2012 11:23
Hum. Can'T get any sense about this.
Since NaN is not even equal to itself, here is a way to test it:
From: http://de.php.net/manual/en/function.is-nan.php#50295
<?php
function my_is_nan($_) {
return ($_ !== $_);
}
@mbunge
mbunge / TraitFlavoredSqlBuilder.php
Created July 26, 2012 13:57
Trait flavored sqlbuilder (experiment)
<?php
/**
* @author Marco Bunge
* @copyright 2012 Marco Bunge <efika@rubymatrix.de>
*/
abstract class AbstractSqlCommand {
public function build(){
return implode(' ', $this->getCommandElements());
@mbunge
mbunge / Collection.php
Created July 24, 2012 15:25
A simple Collectionclass in PHP
<?php
/**
* @author Marco Bunge
* @copyright 2012 Marco Bunge <efika@rubymatrix.de>
*/
interface CollectionInterface
{
/**
* @abstract
<?php
/**
* SplClassLoader implementation that implements the technical interoperability
* standards for PHP 5.3 namespaces and class names.
*
* http://groups.google.com/group/php-standards/web/final-proposal
*
* // Example which loads classes for the Doctrine Common package in the
* // Doctrine\Common namespace.
@mbunge
mbunge / headermessageConvert.php
Created June 26, 2012 21:31
Display a converted raw http message
<?php
/**
* @author Marco Bunge
* @copyright 2012 Marco Bunge <efika@rubymatrix.de>
*/
$string = 'HTTP/1.1 200 OK
Server: Apache/1.3.29 (Unix) PHP/4.3.4
Content-Length: (Größe von infotext.html in Byte)
Content-Language: de (nach RFC 3282 sowie RFC 1766)
@mbunge
mbunge / gist:2925070
Created June 13, 2012 16:23
Anonymus Function Test
<?php
$stdClass = new stdClass();
$stdClass->value = 'HELLO WOLRD';
//return message defined by $stdClass::value with a context
//use $stdClass as scope
$lambda = function($context) use ($stdClass)
{
$msg = $context . ': ' . $stdClass->value;
return $msg;
@mbunge
mbunge / HttpErrorHandler.php
Last active August 29, 2015 14:27
Fire http status 500 with Monolog on log level! Usefull when an error occurs.
<?php
/**
*
* @author Marco Bunge <mjls@web.de>
* @copyright 2015 Marco Bunge
* @license http://opensource.org/licenses/MIT
*
* For the full copyright and license information, please view the LICENSE.txt
* file that was distributed with this source code.
@mbunge
mbunge / angula-parsley.js
Created August 19, 2015 15:05
Use Parsley 2.0 with angular 1.4.x. Jquery 1.11.x or 2.x required!
/**
* Created by Marco Bunge on 18.08.2015.
* Inspired by http://ryanalberts.com/797/parsley-validation-with-angularjs/
*/
(function (angular, jq, window, document) {
'use strict';
//var ngParsley = angular.module('parsley', [])
//ngParsley.constant('parsleyConfig', {});
var ngParsleyJs = angular.module('parsley', []);
@mbunge
mbunge / adjustToAspectRatio.js
Created March 11, 2015 14:35
Adjust element to an aspect ratio based on height or width. Get in touch and follow me at twitter http://twitter.com/makk_eightbit! Thank you!
/**
* @author Marco Bunge <marco_bunge@web.de>
* @copyright 2015 Marco Bunge http://marco-bunge.de
* @licence MIT http://opensource.org/licenses/MIT
*
* Get in touch and follow me at twitter http://twitter.com/makk_eightbit! Thank you!
*
* Adjust element to an aspect ratio based on height or width.
* Default aspect ratio is 16:9 (tv)
* Usage: