Archivio di giugno 19th, 2009
Sono online i video tratti dagli interventi del convegno Ars in Ara che si ...leggi tutto»
Second Front performed thsi piece, Loosely based on the form of their previous "Al Hansen's Car Bibbe II"m this E-Happening was live at Toronto's Subtle Technologies festival. In it Second Front are trapped on the border between Canada and the USA, and are under fire. Also features virtual tanks by Chicago artist Tom Burtonwood.
fonte: micalitasl.blogspot.com ...leggi tutto»
Mentre noi eravamo concentratissimi sul convegno Ars in Ara, sull'Arte e la comunicazione nell'era di Second Life, Gazira Babeli inaugurava la mostra "HAMMERING THE VOID", a Berlino e a locusolus in World. La mostra terminer ...leggi tutto»
Su PYRAMID CAFE: Il Video dell'evento B2B The Virtual World Language: the communication "via-avatar" - conferenza di Jeffrey VentrellaPer chi era alla festa di Pyramid a WDT Planet e non ha potuto seguire la conferenza in oggetto pu ...leggi tutto»
Ora: 18 Giugno 2009 da 19:30 a 23:30 Luogo: Porto dei Creativi e Creaticity Gate (Via Pasubio 9 - Milano) Organizzato da: Criscia GriggNuovo appuntamento con il ciclo NonZero al nostro auditorium del Porto dei Creativi.Ruggero Rossipresenter ...leggi tutto»
function create_password($length=8,$use_upper=1,$use_lower=1,$use_number=1,$use_custom=""){
$upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
$lower = "abcdefghijklmnopqrstuvwxyz";
$number = "0123456789";
if($use_upper){
$seed_length += 26;
$seed .= $upper;
}
if($use_lower){
$seed_length += 26;
$seed .= $lower;
}
if($use_number){
$seed_length += 10;
$seed .= $number;
}
if($use_custom){
$seed_length +=strlen($use_custom);
$seed .= $use_custom;
}
for($x=1;$x<=$length;$x++){
$password .= $seed{rand(0,$seed_length-1)};
}
return($password);
}
//USAGE
echo create_password(); // Returns for example a7YmTwG4
echo create_password(16); // Returns for example Z77OzzS3DgV3OxxP
echo create_password(8,0,0); // Returns for example 40714215
echo create_password(10,1,1,1,";,:.-_()"); // Returns for example or)ZA10kpX
fonte: www.sastgroup.com ...leggi tutto»
Demo: http://www.queness.com/resources/html/scrollmenu/index.html
Codice sorgente: http://www.queness.com/resources/archives/jquery-scrollmenu.zip
fonte: www.sastgroup.com ...leggi tutto»
In questo articolo, troverete una demo e il codice sorgente per creare un motore di ricerca di documenti con il framework jQuery.
Ecco la demo: http://nettuts.s3.amazonaws.com/352_documentSearch/demo/index.html
Il codice sorgente: http://nettuts.s3.amazonaws.com/352_documentSearch/demo.zip
E il tutorial: http://net.tutsplus.com/tutorials/javascript-ajax/build-a-web-20-document-search-engine/
fonte: www.sastgroup.com ...leggi tutto»
Questa funzione permette in modo molto semplice di verificare se esiste o meno un elemento.
function elementExists(id) {
var el = document.getElementById(id);
if (el != null) {
return true;
}
return false;
}
if (elementExists('column')) {
// Column exists
}
fonte: www.sastgroup.com ...leggi tutto»
Questa funzione in php taglia una stringa dopo "n" caratteri.
function truncateString($stringa, $max_char=50, $holder="...", $tag_ammessi = ""){
if(strlen($stringa)>$max_char){
$stringa_tagliata=substr($stringa, 0,$max_char);
$last_space=strrpos($stringa_tagliata," ");
$stringa_ok=substr($stringa_tagliata, 0,$last_space);
return strip_tags(trim($stringa_ok), $tag_ammessi).$holder;
}else{
return strip_tags(trim($stringa), $tag_ammessi);
...leggi tutto»
Nel link che trovate sotto troverete un "Carosello" che clicla all'infinito in stile Apple. Il trucco per farlo girare all'infinito ...leggi tutto»
