Use this search engine or labels at left pane to find topics

Monday, December 29, 2008

Video splitter or cutter ubuntu linux

Easiest software to use is Avidemux

Install in Ubuntu - "sudo apt-get install avidemux" and that should do.

Splitting a video

1. open avidemux
2. open the video with avidemux
3. go to the starting point of cutting and click selection start button (A/_ like button)
4. then go to the selection end point and click selection end button (B_/ like button)
5. Presee "ctrl+c" to copy and "ctrl+x" to cut
6. from menu click file - save as - video
7. write down file name and select avi format and save to your favorite location

your done

For further details go to "http://avidemux.org/admWiki/index.php?title=Cutting"

Saturday, December 27, 2008

html tag for another page

Many of the times we need to link a page to another while creating a website. Linking pages require html tags to be inserted within the first page. This page can be in the same directory or any directory above or downwords. Here are some html tags referring another page.

If the page is in the same folder on your website, you can use a simple "relative link" to point to it:

<
a href="http://www.blogger.com/otherpage.html">
This is a link to otherpage.html, in the same folder


If the page you are linking to is in a sub-folder within the folder containing the page you are writing, you can still use a relative link:

<
a href="http://www.blogger.com/subfoldername/otherpage.html">
This is a link to otherpage.html, in a sub-folder called subfoldername


If the page is not in the same folder, but is on the same website, you can use a path that begins with / to refer to it. If the page is in a folder called foldername inside the main website folder, you can write:

<
a href="http://www.blogger.com/foldername/otherpage.html">
This is a link to otherpage.html, in the
folder called foldername


The leading / means "start at the top and go down."

There is one more type of relative link you may wish to use. If the page you are now writing is in folder A, and the page you wish to link to is in the parent folder that contains folder A, you can write:

<
a href="http://www.blogger.com/otherpage.html">
This is a link to otherpage.html, in the
parent folder of this folder


That is, "../" in a relative URL means "go up one level in the folder hierarchy."

Using relative links is recommended, where possible, because it allows you to move pages from site to site or folder to folder as long as they maintain the same relative relationship to one another.

If the page is on another website, you must use an "absolute" link. You can make these easily by browsing to the page you wish to link to, then selecting the URL in the "address bar" at the top of the browser window and selecting "copy" from your web browser's edit menu. Here is an example:

<
a href="http://www.boutell.com/newfaq/">
For more information, follow this link to
Boutell.Com's WWW FAQ.


Linking to a file that is not a web page is accomplished in the same way; no special technique is necessary. For example:

<
a href="http://www.blogger.com/myfile.doc">
This is a link to myfile.doc, a Word document


You can link to images in this way, if you wish. If your real goal is to make the image part of your page, you will want to use the
<
img src="http://www.blogger.com/post-edit.g?blogID=4809694467087109581&postID=4053476429622113806" /> element instead. Note that you should never embed an image on someone else's website into your page without their express permission. In most cases, the src attribute of an img src="http://www.blogger.com/post-edit.g?blogID=4809694467087109581&postID=4053476429622113806" /> element will be a file on your own site:
<
p>
This page has an image in it. myimage.jpg is a file
in the same folder as this web page.

<
p>
<
img src="http://www.blogger.com/myimage.jpg" />



Notice that the src attribute of the img element works exactly like the href attribute of the a element.

This is copied from ww.boutell.com/newfaq/creating/links.html

Tuesday, December 23, 2008

Adding AdSence to your blogger

You have a blog at blogspot and want to add Adsense for revenue? This is how you add adsense to your blog:-

1. Sign in to your account
2. Click on layout
3. Click on 'Add a gadget'
4. Find out 'AdSense' and select it
5. Adjust setting
6. Save

Now you are done

Opening docx or xlsx in openoffice

docx or xlsx are Microsoft invention to irritate people. These files are meant to open only with MS office 2007.
However, one can convert them to doc or xls format by downloading and installing the converter from Microsoft (probably WINE will be needed for linux) -

"http://www.microsoft.com/downloads/details.aspx?FamilyId=941B3470-3AE9-4AEE-8F43-C6BB74CD1466&displaylang=en"


Few other methods are available for opening docx with openoffice.
One of them is from Novell. Go to

"http://download.novell.com/protected/Summary.jsp?buildid=GuM6LMM9SR4"

and follow the instructions. Probably it will work. But remember, it should only work with novell edition of openoffice.
I did not yet give it a try.

Last method to get docx files to make work with openoffice is there are few online file conversion sites like www.zamzar.com
Go to their site and follow the instructions. Although it takes a while, it works.
As my files were not huge, I feel easy with this method.