Docker: An open source project to pack, ship and run any application as a lightweight container
Cosimo Galluzzi

Kaledo Art
styofa doing anything
h
art blog(derogatory)
Show & Tell
Game of Thrones Daily
KIROKAZE
"I'm Dorothy Gale from Kansas"
we're not kids anymore.
Aqua Utopia|海の底で記憶を紡ぐ

JVL

No title available

shark vs the universe

❣ Chile in a Photography ❣
Three Goblin Art

@theartofmadeline
Jules of Nature

No title available

JBB: An Artblog!
seen from United States
seen from United States
seen from United Kingdom
seen from United States
seen from Colombia
seen from United States
seen from United States
seen from United States
seen from United States
seen from United States
seen from United States

seen from United States

seen from United States
seen from United States
seen from United States
seen from United States
seen from Brazil
seen from United States
seen from United States

seen from United States
@theosem
Docker: An open source project to pack, ship and run any application as a lightweight container
virtual box guest tools requires linux headers
sudo apt-get install build-essential linux-headers-`uname -r` dkms
Look up HTML5, CSS3, etc features, know if they are ready for use, and if so find out how you should use them â with polyfills, fallbacks or as they are.
how to style a google map
https://developers.google.com/maps/documentation/javascript/styling#creating_a_styledmaptype
http://maps-api-tt.appspot.com/apilite/styled/styled.html
http://gmaps-samples-v3.googlecode.com/svn/trunk/styledmaps/wizard/index.html
more JS
http://backbonejs.org/ !!!!!
maps : http://leafletjs.com/ https://github.com/Leaflet/Leaflet
for map tiles check this solution: http://cloudmade.com/
javascript libs
http://modernizr.com/
http://cubiq.org/iscroll
http://masonry.desandro.com/
PI
radial_threashold 0.05
camera coords 0 0 10 (if not available from the scanner)
discarding radius 0.005
- one pass for all the dataset and every parameter of the scanner (noise, move etc.)
CRUD in minutes without coding...
php make file lists script
<?php
$dir="DIR_PATH_XXXXXX";
//file extension to grab
$fileExtensionFilter="txt";
$outFile = "outfilename.txt";
$fh = fopen($outFile, 'w') or die("can't open file");
$files1 = scandir($dir);
for($i=0;$i<count($files1);$i++){
$oldFile = $files1[$i];
$newname = $oldFile;// str_replace(" ","_",$oldFile);
echo $newname."\n";
//rename ( $dir.$files1[$i] , $dir.$newname);
//lists of images
if( is_dir($dir.$newname) && $dir.$newname !="." && $dir.$newname!="..")
{
$imgFiles = scandir($dir.$newname);
for($j=0;$j<count($imgFiles);$j++){
if( file_extension($imgFiles[$j]) == $fileExtensionFilter ){
$dataout = $dir.$newname."/".$imgFiles[$j]."\n";
fwrite($fh, $dataout);
}}}}
fclose($fh);
function file_extension($filename)
{
return end(explode(".", $filename));
}
?>
Pinterest introduces web analytics. A very powerful tool for detecting trends in parts of your site and specific products. You should check it out
check this online bug logger and debugger for mobile apps!
https://duckduckgo.com/ is a search engine that respects your privacy. And comes with a serious set of goodies
creative coding in C++ v2
as an addition to my previous post, I should mention openframeworks ( http://www.openframeworks.cc/) which is a well known and tested collection of libraries and tools for creative coding. Well done guys !