Wednesday, 20 August 2008

Setting up Subversion on Solaris 10

In this series of posts I'm going to describe how I set up Subversion on a Solaris 10 machine. The instructions here are valid for subsequent releases such as Solaris Express Community Edition (Nevada) and OpenSolaris (Indiana), the only difference being the fact that Subversion is bundled with the Operating System.

I decided to host some Subversion (1.4.5) repositories on a Solaris 10 (update 5) server so I downloaded Subversion packages from Blastwave and installation was done in less than 5 minutes with a simple:
# pkg-get -i subversion
Once Blastwave's installer was done, the first thing I wanted to do was registering Subversion's daemon (svnserve) in the Service Management Facility. Writing an SMF manifest is not so hard but fortunately I found a manifest and a management script in OpenSolaris website and the job was done! Great work, guys.

Next steps

You can now:

Thursday, 17 July 2008

Setting Domain Blogspot With co.cc Domain

co.cc is a free domain. It's not only URL forwarding but we can setup DNS Records, A, MX, and CNAME records. We can change our blog's name to become "name.co.cc". It's more simple than we use domain "name.blogspot.com". To change our default blogspot name to co.cc domain name there are some steps to do. Here is the tutorial to setup domain co.cc


1. Open your browser to co.cc
2. Then regiter a domain that you want to use.
3. If it's no available you have to find another domain name. But if it's available then you can register it.
4. The you have to setup your domain. Got to "setup-->Manage domain"
5. Choose "Zone Records"
6. In the coloumn "Host" fill it with your domain name (www.yourdomainname.co.cc")
7. Choose "CNAME" for "Type"
8. In the "Value" box fill it with "ghs.google.com"
9. Then click "Setup" Button.


The next step is make some setup in blogspot.

1. Login to Bloggr/blogspot then choose "Setting-->Publishing"
2. Then choose "Switch to: • Custom Domain
3. Then click on "Already own a domain? Switch to advanced settings"
4. Fill it with your new domain in the "Your Domain" coloumn.



5. To Finish click "Save Setting" Button.

It will take 1-48 hours for your new domain to work. So be patient....

Setting Domain Blogspot With co.cc Domain

co.cc is a free domain. It's not only URL forwarding but we can setup DNS Records, A, MX, and CNAME records. We can change our blog's name to become "name.co.cc". It's more simple than we use domain "name.blogspot.com". To change our default blogspot name to co.cc domain name there are some steps to do. Here is the tutorial to setup domain co.cc


1. Open your browser to co.cc
2. Then regiter a domain that you want to use.
3. If it's no available you have to find another domain name. But if it's available then you can register it.
4. The you have to setup your domain. Got to "setup-->Manage domain"
5. Choose "Zone Records"
6. In the coloumn "Host" fill it with your domain name (www.yourdomainname.co.cc")
7. Choose "CNAME" for "Type"
8. In the "Value" box fill it with "ghs.google.com"
9. Then click "Setup" Button.


The next step is make some setup in blogspot.

1. Login to Bloggr/blogspot then choose "Setting-->Publishing"
2. Then choose "Switch to: • Custom Domain
3. Then click on "Already own a domain? Switch to advanced settings"
4. Fill it with your new domain in the "Your Domain" coloumn.



5. To Finish click "Save Setting" Button.

It will take 1-48 hours for your new domain to work. So be patient....

Tuesday, 1 July 2008

Search engines Yahoo and Google learn to crawl Flash sites

Statistics show that Adobe's Flash is installed in a whooping 98% of computers connected to the internet. Using Flash, a web developer is able to give his imagination a free reign and build gorgeous multimedia intensive albeit equally functional sites.

But till date, building Flash based sites had a singular drawback. That being, the search engines had no way of indexing them unless the web developer also included text in his Flash site explaining what the site or rather the content on the site was all about.

Some time back, Adobe released the Flash file format SWF as an open specification which encouraged third party developers to create applications which could display Flash files. Now Adobe has gone one step further and is working closely with Internet search engine companies namely Yahoo and Google to help them in indexing Flash files. This is a clear green light for all web developers to start creating sites which are heavy in Flash content. This also means web developers can reduce the size of their Flash sites by doing away with ordinary text.

You should know that the latest version of Adobe Flash player is available for Linux platform as well which makes Flash a universal format to share and showcase content across the web.

Read the official news from Adobe and also the announcement from Google.

Saturday, 28 June 2008

Blogger Under Posting Comment box

Now, blogger(blogspot) have developed their comment box. Last time ago, if we want to post a comment there should be only a link under our posting, and we have to click the link send a comment, it's not interesting. But now we can find a comment box under our post exactly. It's original from blogger, it's not like haloscan or intensedebate. But it's truely from blogger/blogspot. You can see it under this post.
Here is the trick to create comment box under your post.

1. Login to http://draft.blogger.com
2. Go to Setting-->Comments. then change "Comment Form Placement" to be "Embedded below post" (look at the image below)



3. Then "Save Setting"
Try to see your blog and klik on your titile post. if there is a embadded commnet box below your post just stop this step here. But if there is no comments box, just follow the next steps here.

4. Go to "Layout-->Edit HTML"
5. Check the "Expand widget templates" box.
6. Find this code :

<p class='comment-footer'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>
<data:postCommentMsg/></a>
</p>
</b:if>



7. Then replace it with this code :

<p class='comment-footer'>
<b:if cond='data:post.embedCommentForm'>
<b:include data='post' name='comment-form'/>
<b:else/> <b:if cond='data:post.allowComments'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>
<data:postCommentMsg/></a>
</b:if> </b:if> </p> </b:if>


8. Save your Template.

I've deleted my last comment box (haloscan). so now I lost all of my comments before. I do it to get this comment box.

Blogger Under Posting Comment box

Now, blogger(blogspot) have developed their comment box. Last time ago, if we want to post a comment there should be only a link under our posting, and we have to click the link send a comment, it's not interesting. But now we can find a comment box under our post exactly. It's original from blogger, it's not like haloscan or intensedebate. But it's truely from blogger/blogspot. You can see it under this post.
Here is the trick to create comment box under your post.

1. Login to http://draft.blogger.com
2. Go to Setting-->Comments. then change "Comment Form Placement" to be "Embedded below post" (look at the image below)



3. Then "Save Setting"
Try to see your blog and klik on your titile post. if there is a embadded commnet box below your post just stop this step here. But if there is no comments box, just follow the next steps here.

4. Go to "Layout-->Edit HTML"
5. Check the "Expand widget templates" box.
6. Find this code :

<p class='comment-footer'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>
<data:postCommentMsg/></a>
</p>
</b:if>



7. Then replace it with this code :

<p class='comment-footer'>
<b:if cond='data:post.embedCommentForm'>
<b:include data='post' name='comment-form'/>
<b:else/> <b:if cond='data:post.allowComments'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>
<data:postCommentMsg/></a>
</b:if> </b:if> </p> </b:if>


8. Save your Template.

I've deleted my last comment box (haloscan). so now I lost all of my comments before. I do it to get this comment box.

Saturday, 21 June 2008

Guiness World Record Certificate in your name - Firefox 3

On June 17th 2008, Firefox decided to set the Guiness Book of World Record for the most downloaded software in 24 hours. Mozilla foundation urged its users the world over to update their browsers by downloading the latest version namely Firefox 3. And the response was so massive on the D-Day that, there was an outage at the Mozilla data center for several hours. Once the servers were back online, the downloading continued and Firefox set the world record well within the 24 hours.

The record is 15,067,570 downloads (15 Million). Country wise, USA tops the list with a whooping 4 million + downloads. Surprisingly, sans the US, relatively small countries like Iran and France clocked more downloads than its larger counterparts like India and China.

If you are one of the people who downloaded Firefox on June 17th, then congratulations !!; You are a part of the Guiness Book of World Records. And the people at Firefox are ever too grateful to forget your valuable contribution.

So go ahead and download your own personalized Guiness Book of World Records Certificate (Ahem ... Firefox 3 Download Day Certificate that is) for helping set the record. Here is mine shown below.

Firefox Guiness Book of World Records Certificate