three.js info

Three.js – 3D a weben : https://blog.fps.hu/three-js-3d-a-weben-2/

Learning Three.js http://learningthreejs.com/

Creating a scene http://threejs.org/docs/index.html#Manual/Introduction/Creating_a_scene

0 Impressive Examples for Learning WebGL with Three.js http://tutorialzine.com/2013/09/20-impressive-examples-for-learning-webgl-with-three-js/

ThreeJS WebGL on iOS with CocoonJS by Ludei

Az Apple szerint is eljött a böngészőben futó 3D-s játékok kora

http://prog.hu/hirek/3543/Az+Apple+szerint+is+eljott+a+bongeszoben+futo+3D-s+jatekok+kora.html

PHP utility – renames all file name in the folder – Fájl nevek ékezetlenítése, sorköz helyett aláhúzás

,

PHP utility – Rename all file name in folder – Fájl nevek ékezetlenítése, sorköz helyett aláhúzás

<?php

$directory = getcwd();
$i = 1; 
$handler = opendir($directory);
while ($file = readdir($handler)) {
    if ($file != "." && $file != "..") {

    echo $file. "<br>";

$search  = array(' ', 'á', 'é', 'í', 'ó', 'ő', 'ü', 'ű', 'ú',',','ö');
$replace = array('_', 'a', 'e', 'i', 'o', 'o', 'u', 'u', 'u','_','o');

$new_file = str_replace($search, $replace, $file);

        rename($directory."/".$file, $directory."/".$new_file); // here; prepended a $directory

        $i++;
    }
}
closedir($handler);

?>

Instead of think about ZF2 || Symfony 2 think about ZF2 && Symfony 2

, ,

… if you want to use a good Symfony 2 bundle in ZF2 or a good ZF2 module in Symfony2
Symfony2 in ZF2

https://speakerdeck.com/skoop/zend-framework-2-and-symfony2-the-perfect-team-phpday-2013

https://speakerd.s3.amazonaws.com/presentations/7ac72050a1d901304c7f227bb3c2be12/ZF2_and_Symfony2_phpday.pdf

Symfony2 in ZF2
{
“require”: {
“php”: “>=5.3.3”,
“zendframework/zendframework”: “2.0.*”,
“symfony/yaml”: “2.2.*”,
“symfony/dom-crawler”: “2.2.*”,
},
“autoload”: {
“psr-0”: {
“Application”: “module/Application/src”
}
}
}