Skip to content

Instantly share code, notes, and snippets.

View thedustin's full-sized avatar

Dustin Breuer thedustin

View GitHub Profile
@thedustin
thedustin / List.js
Created January 30, 2014 15:13
A simple List-Class
/**
* List
*
* @author Dustin Breuer <dustin.breuer@thedust.in>
* @version 1.0
* @category Util
* @licence MIT http://opensource.org/licenses/MIT
*/
/**
@thedustin
thedustin / message.less
Last active August 29, 2015 14:02
Nice Messageboxes, to display nice info-, success-, warning- and error-messages.
.message {
margin: 1em 0;
padding: 4px 8px;
color: #333 ;
border-radius: 5px;
a {
color: #333;
text-decoration: underline;
}
@thedustin
thedustin / yiq-color-contrast.php
Last active August 29, 2015 14:13
Calculate the textcolor (Black or White) by background-color (YIQ-Contrast) [http://24ways.org/2010/calculating-color-contrast/]
<?php
$fYIQ = (($iRed * 299) + ($iGreen * 587) + ($iBlue * 114)) / 1000;
if($fYIQ >= 128){
echo 'Black textcolor.';
} else {
echo 'White textcolor.';
}
@thedustin
thedustin / sort-by-own-order.php
Created July 13, 2015 13:39
A sort function which use a custom order
<?php
static $aTypesOrder = array(
'PDF', 'DOC', 'BMP', 'PSD', 'AI',
);
/**
* @param array $aAssetA
* @param array $aAssetB
*
@thedustin
thedustin / ArrayUtils.php
Created July 15, 2015 08:05
An ArrayUtil class for php
<?php
/**
* ArrayUtils
*
* @author Dustin Breuer <developer@thedust.in>
* @license 2015 MIT
*/
namespace TheDusti\Util;
@thedustin
thedustin / simple-animation.js
Created July 19, 2015 17:51
Animate an simple value really easy
/**
*
* @param {Number} iFrom
* @param {Number} iTo
* @param {Number} iDuration
* @param {Function} cSetterFunction
*/
function simpleAnimatedValue(iFrom, iTo, iDuration, cSetterFunction){
var iDiff = (iTo - iFrom),
iAnimationEnd = (Date.now() + iDuration),
@thedustin
thedustin / curl-multi-exec.php
Last active September 8, 2015 12:09
curl multi exec with content
<?php
// $arrUrls = ["http://...", ...]
$arrCurls = array();
$resMultiCurl = curl_multi_init();
$arrReturn = array();
foreach ( $arrUrls as $strUrl ) {
$resCurl = curl_init();
@thedustin
thedustin / polyfill.js
Created December 3, 2015 15:50
Extended console.log()
/**
* Avoid `console` errors in browsers that lack a console.
* @link https://github.com/h5bp/html5-boilerplate/blob/master/src/js/plugins.js
*/
(function() {
var method,
noop = function() {},
methods = [
'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', 'exception', 'group',
@thedustin
thedustin / mini-autogrow.js
Created December 8, 2015 10:14
A simple and tiny autogrow script
jQuery(function($){
var maxHeight = Math.round( $( window ).height() * 0.6 );
$('#TextArea').on( 'keyup input paste cut', function() {
$(this)
.css( 'height', '' )
.css( 'height', Math.min( this.scrollHeight, maxHeight ) );
} );
});
@thedustin
thedustin / calculateBlendColor.php
Created May 7, 2013 14:16
Berechnet den Blendfarbanteil einer Farbe <color> bei Alpha-Wert <alpha> die auf der Farbe <blend> liegt.
<?php
/**
* Berechnet den überblendeten Farbwert für eine einzige Farbe nach<br />
* <pre>(alpha / 255) * argb.r() + (1 - alpha / 255) * blend.r()</pre><br />
* Diese Funktion wird für jeden Farbanteil seperat aufgerufen.
* @param int $color Die Farbe die über eine andere Farbe gelegt werden soll
* @param float $alpha Der Alpha-Wert der Farbe <i>color</i> die über <i>blend</i> gelegt wird
* @param int $blend Der Farbwert der darunterliegenden Farbe (selben Types, also R-Angabe bei R,...).<br />
* Standard ist 255 (Weiß)