>FromYourCode();

All the sources codes "Teamwork"page 4

PHP
 July 23 2014 at 01:19
#222
<?php
//Took me a while... Finally got it to work :)
// (xxxx), would you check if this is right?
$arrayString='12,53,653,12,54,65,334,73';
$arrayExploded=explode(',',$arrayString);
$arrayStringNew=implode(';',$arrayString);

?>
PHP
 July 21 2014 at 11:31
#177
foreach($menus as &$menu) {
    		$column_count = $menu['count'] / $columns;
    		
    		$column = 1;
    		$blocks = array();
    		foreach($menu['data'] as $md) {
    			if($md['cumulative_count'] > ( ($column_count * $column) * 1.15 ) ) { /* 15% more height... because fuck you, that's why ! */
					$column++;    				
    			} 
    			$blocks[$column][] = $md;
    		}
    		$menu['blocks'] = $blocks;    			    		
    	}
Java
 July 12 2014 at 02:14
#130
return !finished || notFinished; // even horse can not understand this.