Name: Anonymous 2010-05-26 19:49
I am looking for a good programing forum so I can share some of my programs and get some constructive criticism on them. I would prefer a smaller one just so it will be easier to get to know people.
I hear /prog/ is pretty good
<?php
function shorturl($url){
$length = strlen($url);
if($length > 45){
$length = $length - 30;
$first = substr($url, 0, -$length);
$last = substr($url, -15);
$new = $first."[ ... ]".$last;
return $new;
}else{
return $url;
}
}
?>
//USAGE
<?php
$longurl= "http://www.google.com/search?q=refactormycode&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:tr:official&client=firefox-a";
$shorturl = shorturl($longurl);
echo "<a href=\"$longurl\">$shorturl</a>";
?>
: twofibs ( n -- x y ) [ 1 0 ] [ 2 /mod [ twofibs [ [ sq ] bi@ + ] [ [ 2 * ] dip [ + ] keep * ] 2bi ] dip [ drop [ + ] keep swap ] unless-zero ] if-zero ;
: fib ( n -- x ) twofibs nip ;