Since i'm sorta bored, and feeling productive (but not enuff to write my essay), i want to know what some projects you guys (and gals) are working on right now.
It might be a program you're writing (perhaps in C, VB, etc), a website, or a web aplication (in PHP, ASP etc) that you are making (such as KeyStrom's avatar thingy).
or maybe you could make a request of something you'd like to see, such as a PHP script that might come in handy for you, or anything.
or maybe just a program/script that you've seen on a website that you find interesting/useful and you think might help benifit the community.
let your creative juices flow.
heres mine, to start it off. its in PHP, and lists the files in a directory.
code:
<?php
if ($handle = opendir) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
echo "$file\n";
}
}
closedir($handle);
}
?>
to exclude files, such as index.php as in the example. just add them to this line:
code:
if ($file != "." && $file != ".." && $file != "index.php") {
lets see what you guys have!