For a few months I have been trying to make my vim (7.2.330) in Ubuntu 10.04 work with matchit plugin. But it never wanted to cooperate. The matchit plugin works perfectly with my vim 6.4.6 by simply downloading/unzipping the match.zip from here and adding the following line to ~/.vimrc file.
:source {path_to_matchit_plugin}/matchit.vim
But for vim 7.x, the following line has be to added to ~/.vimrc as well:
:filetype plugin on
Monday, July 30, 2012
Friday, February 24, 2012
Mapping Your Domain Name to Work with Blogger
From GoDaddy support center: http://help.godaddy.com/article/5112#parking
You can establish a more professional identity for your Blogger® blog by configuring it to point to one of the domain names you registered through us. Instead of entering your Blogger URL to view your latest blog post, visitors enter your domain name's URL. For example, by mapping your coolexample.blogspot.com blog to your www.coolexample.com domain name, visitors focus solely on your domain name.
To point your Blogger blog to your domain name, you set up domain name mapping, which configures your blog settings and domain name. You update your settings in your Blogger account and our Domain Manager:
Any DNS changes you make can take up to 48 hours to reflect on the Internet.
You can establish a more professional identity for your Blogger® blog by configuring it to point to one of the domain names you registered through us. Instead of entering your Blogger URL to view your latest blog post, visitors enter your domain name's URL. For example, by mapping your coolexample.blogspot.com blog to your www.coolexample.com domain name, visitors focus solely on your domain name.
To point your Blogger blog to your domain name, you set up domain name mapping, which configures your blog settings and domain name. You update your settings in your Blogger account and our Domain Manager:
- Park the domain name you want to use with your Blogger account on our parked nameservers.
- Edit the www CNAME record for the domain name you want to use with your Blogger account. This update tells the Web browser to open your Blogger blog when visitors enter your domain name's URL in the browser address bar.
- Forward your domain name to use www. This step ensures your Blogger blog displays for visitors who go to your domain name with or without the www prefix. For example, it displays for visitors who entered both www.coolexample.com and coolexample.com.
- Configure your Blogger account to use your domain name.
To Park Your Domain Name
- Log in to your Account Manager.
- Next to Domains, click Launch.
- Select the domain name you want to use with your Blogger account, and then from the Nameservers, select Set Nameservers.
- Select I want to park my domains.
- Click OK.
- Click OK again.
To Edit Your CNAME Record
- Log in to your Account Manager.
- Next to Domains, click Launch.
- From the Tools menu, select DNS Manager. The DNS Dashboard displays.
- For the domain name you want to use with your Blogger account, click Edit Zone. The Zone File Editor displays.
- In the CNAME (Alias) section, click the www record.
- In the Points To field, type ghs.google.com.
- Click Save Zone File, and then click OK.
To Forward Your Domain Name
- Go to support.google.com.
- Click Host my blog on a URL that I already own.
- Follow the listed instructions.
To Configure Your Blogger Account
- Log in to your Blogger account.
- From the Settings tab, select Publishing.
- Click Custom Domain.
- In the Buy a domain for your blog section, click Switch to advanced settings.
- In the Your Domain field, enter your domain name. For example, enter www.coolexample.com.
- To specify another location in which to look for files, in the Use a missing files host? section, select Yes and enter the path. If not, select No.
- In the Word Verification field, enter the characters as they display in the image above the field.
- Click Save Settings.
NOTE: As a courtesy, we provide information about how to use certain third-party products, but we do not endorse or directly support third-party products and we are not responsible for the functions or reliability of such products. Blogger® is a registered trademark of Google, Inc. All rights reserved.
Tuesday, January 17, 2012
Find a process and kill it in a script in Linux
ps -ef | grep process_name | awk '{ print $2; }'| xargs kill -9
Subscribe to:
Posts (Atom)