Is your time being consumed or invested? Are you working on activities that will return value, or finishing tasks that won’t matter when you’re done? Is your energy devoted to things you’ll care about 5-10 years from now, or will none of it matter?
Friday, October 19, 2007
Northern Frontier Travel and Tours, now up!
I created the site using CSS and XHTML.
Visit website:
www.northernfrontiertravel.com
Tuesday, March 27, 2007
PHP Programmer for rent
This checks are to see if:
a). your code complies with PHP coding standards.
b). your code has loopholes.
c). some functions in the code can be used for vulnerability exploits.
I am experienced with Unix(FreeDSB) and Windows.
Some of my work:
a) www.leisurecoast.com
b) Digital library for schools
If interested you can contact me through my email:
omegahash@gmail.com
LCR site's up
Monday, March 12, 2007
Business Side of Web Design
read more | digg story
Thursday, March 8, 2007
Web 2.0 for "Developers, Developers, Developers..."
read more | digg story
Wednesday, March 7, 2007
8 Web Design Tactics to Help You When You're Stuck
read more | digg story
The Web Developers List of Resources.
read more | digg story
Wednesday, February 21, 2007
Get IP with Time Date in PHP
Here’s a simple script I’ve written for logging IP’s that stumble upon my main webserver.
/* start code */
$ip = $_SERVER[’REMOTE_ADDR’];
$dte = date(”l jS F Y, g:i A”);
echo “Your IP address is: $ip”;
echo date(”l jS F Y, g:i A”);
/* then give them a warning that they had been logged */
echo (”Your visit on my site was logged!”);
/* end of code */
Sample output:
Your IP address is: xxx.xxx.x.xxx
Saturday 15th October 2005, 1:02 AM
Your visit on my site was logged!
This little script is pretty cool when coupled with the free program called IPnetinfo a small utility that allows you to easily find all available information about an IP address. This utility can also be very useful for forensics after an attack has occured (that is if the attacker is lame enough to leave the *cough* log files uncleaned).
This is the script to save every hit to a file called ‘myLog.txt’.
/* start of code */
$fileopen = fopen(”myLog.txt”, “a”);
fwrite ($fileopen, $dte.” - “.$ip.”\n”);
fclose ($fileopen);
/* end of code */
That’s it!