I found excellent set of photos on taken by Scott Stulberg. All photos are shooting in Southeast Asia. It has different categories like the natural world, Serendipity, Mirror Mirror, Shades of Gray, Eye to Eye etc. Check it out yourself.
This is really a cool stuff. You can post a blog entry on any public Flickr photo to TypePad, Blogger, LiveJournal, Movable Type and many other weblog systems, directly from Flickr! First you need to configure your blog account:
1) Visit http://flickr.com/
2) Sign in to your flicker account
3) Click on Your Account
4) Look for Blogging headings
5) [...]
Look like a rumor turns into reality. Many blogs and slashdot reporting this story. Oh boy that would be really nice. We all love to see M$ going down
Full article here.
Yahoo is launching its own ad-network for small websites/blogs just like google adsense. So you can make more money. Cool, but it is in beta and only for resident of the U.S as pointed by URL
More info at Yahoo publisher home page, Realtech blog and slashdot
It is common scenario when you need to tell the browser to redirect or look elsewhere for a page because you don’t want to produce a document yourself.
For example http://mydomain.com/rd.pl?url=http://blogs.mydomain.com should redirect to a page/url http://blogs.mydomain.com
Here is perl code to redirect web page to http://blogs.cyberciti.biz/hm/:
#!/usr/bin/perl
use strict;
use warnings;
my $url = “http://blogs.cyberciti.biz/hm/”;
print “Location: $url\n\n”;
However this code misses [...]