<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Adiwebs.com</title>
	<atom:link href="http://www.adiwebs.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adiwebs.com</link>
	<description></description>
	<lastBuildDate>Thu, 11 Mar 2010 15:26:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using Numbers with Commands in vi Editor</title>
		<link>http://www.adiwebs.com/using-numbers-with-commands-in-vi-editor/</link>
		<comments>http://www.adiwebs.com/using-numbers-with-commands-in-vi-editor/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 15:26:35 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[compatibility]]></category>
		<category><![CDATA[CygWin]]></category>
		<category><![CDATA[gvim]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Vi]]></category>
		<category><![CDATA[VIM]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.adiwebs.com/?p=1739</guid>
		<description><![CDATA[Using Numbers with Commands in vi Editor
Vi is one of the most powerful text editors available to the programmer today. It comes with a number of features and is highly flexible. This is what makes it such a powerful programming tool. vi comes installed by default on a number of Linux distributions. If you are [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Using Numbers with Commands in vi Editor</strong></p>
<p>Vi is one of the most powerful text editors available to the programmer today. It comes with a number of features and is highly flexible. This is what makes it such a powerful programming tool. vi comes installed by default on a number of Linux distributions. If you are using a mainstream distribution, you already have it installed. You can always install it by following instructions specific to your Linux distribution.</p>
<p>In vi, you can precede most vi commands with numbers to have the command repeated that number of times. Putting a number in front of the command will run the command those number of times. This comes very handy while dealing with several lines, words, or characters at a time.</p>
<p>Here are some examples that show how to use numbers with commands in the vi editor:</p>
<p>* 3dw &#8212; This will delete the next three words.</p>
<p>* 5cl &#8212; This will change the next five letters. That is, this will remove the letters and enters input mode.</p>
<p>* 12j &#8212; This will move down 12 lines.</p>
<p>Putting a number in front on most commands just repeats those commands the number of times specified.</p>
<p>If you would like further instructions, I suggest you try the VIM Tutor by running the vimtutor command.</p>
<p>Note: When you invoke vi on most Linux distros, you are actually invoking the vim text editor, which runs in vi compatibility mode. vim is an improvised version of vi. In other words, it is vi with a lot of bells and whistles.</p>
<p>Programmers and Linux geeks usually prefer vim over vi  because comes with color coding. vim also comes with other useful features such as the ability to open a document with the cursor at the same place where it was when you last exited that file.</p>
<p>If you are using Windows, you can still use vi editor on your system. There are two ways to do this&#8211;you can either install CygWin or use gvim (a Windows port is available).</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.adiwebs.com/choosing-a-text-editor-in-linux/" rel="bookmark" class="crp_title">Choosing a Text Editor in Linux</a></li><li><a href="http://www.adiwebs.com/commands-for-moving-copying-and-deleting-files-in-linux/" rel="bookmark" class="crp_title">Commands for moving, copying and deleting files in Linux</a></li><li><a href="http://www.adiwebs.com/how-to-get-help-while-using-the-linux-shell/" rel="bookmark" class="crp_title">How to get help while using the Linux shell</a></li><li><a href="http://www.adiwebs.com/starting-background-processes-in-linux/" rel="bookmark" class="crp_title">Starting background processes in Linux</a></li><li><a href="http://www.adiwebs.com/how-to-change-linux-hostname/" rel="bookmark" class="crp_title">How to Change Linux Hostname</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.adiwebs.com/using-numbers-with-commands-in-vi-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Constants in C Language</title>
		<link>http://www.adiwebs.com/constants-in-c-language/</link>
		<comments>http://www.adiwebs.com/constants-in-c-language/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 15:25:01 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Programming Languages]]></category>
		<category><![CDATA[c language]]></category>
		<category><![CDATA[char]]></category>
		<category><![CDATA[Character]]></category>
		<category><![CDATA[Constants]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[wchar]]></category>

		<guid isPermaLink="false">http://www.adiwebs.com/?p=1737</guid>
		<description><![CDATA[Constants in C Language
A constant is a fixed value that the program may not alter. Constants can be any of the basic data types i.e. they can be int, float or char. The way each constant is represented depends on its type. Constants are also known as literals in C i.e. constants and literals are [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Constants in C Language</strong></p>
<p>A constant is a fixed value that the program may not alter. Constants can be any of the basic data types i.e. they can be int, float or char. The way each constant is represented depends on its type. Constants are also known as literals in C i.e. constants and literals are one and the same.</p>
<p>Character constants are enclosed between single quotes. E.g.&#8217;a', &#8216;%&#8217; represent character constants. In C, you can use both multibyte characters and wide characters. Multibyte characters consist of one or more bytes while wide characters are usually 16 bits long. Multibyte characters and wide characters are used to represent languages that have large character sets. To specify a multibyte character, enclose the characters within single quotesm for example, &#8216;xy&#8217;. To specify a wide character constant, precede the character with an L.</p>
<p>For example:</p>
<p>wchar_t wc;<br />
wc=L&#8217;A';</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.adiwebs.com/types-of-constants-in-c/" rel="bookmark" class="crp_title">Types of Constants in C++</a></li><li><a href="http://www.adiwebs.com/c-fundamental-objects/" rel="bookmark" class="crp_title">C++ Fundamental Objects</a></li><li><a href="http://www.adiwebs.com/character-arrays-in-c/" rel="bookmark" class="crp_title">Character Arrays in C++</a></li><li><a href="http://www.adiwebs.com/information-representation/" rel="bookmark" class="crp_title">Information Representation</a></li><li><a href="http://www.adiwebs.com/declarations-in-ctype-h/" rel="bookmark" class="crp_title">Declarations in ctype.h</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.adiwebs.com/constants-in-c-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing Music in Linux Using Rhythmbox</title>
		<link>http://www.adiwebs.com/playing-music-in-linux-using-rhythmbox/</link>
		<comments>http://www.adiwebs.com/playing-music-in-linux-using-rhythmbox/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 15:23:29 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[internet radio]]></category>
		<category><![CDATA[main music]]></category>
		<category><![CDATA[music collection]]></category>
		<category><![CDATA[music files]]></category>
		<category><![CDATA[music library]]></category>
		<category><![CDATA[rhythmbox]]></category>
		<category><![CDATA[videolan]]></category>

		<guid isPermaLink="false">http://www.adiwebs.com/?p=1735</guid>
		<description><![CDATA[Playing Music in Linux Using Rhythmbox
Rhythmbox is an application for managing and playing music files in Linux. Rhythmbox allows you to import music files, sort them by album, artist, title or some other variable. You can also play Internet radio using Rhythmbox.
When you launch Rhythmbox, you will see a setup wizard. Using the wizard, you [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Playing Music in Linux Using Rhythmbox</strong></p>
<p>Rhythmbox is an application for managing and playing music files in Linux. Rhythmbox allows you to import music files, sort them by album, artist, title or some other variable. You can also play Internet radio using Rhythmbox.</p>
<p>When you launch Rhythmbox, you will see a setup wizard. Using the wizard, you can configure the folder in which to store music files. The location you choose for your music collection may need a lot of space depending on the size of your collection. You could add an entire disk or create a separate partition for your music collection. If you allocate a separate partition, you won&#8217;t lose any files if you reinstall Linux.</p>
<p>After you complete the setup wizard, you will see the main music library interface. Rhythmbox makes it easy to organize even large collections of music files.</p>
<p>Here are some ways to use Rhythmbox…</p>
<p>=&gt; Import Music from Audio CDs&#8211;Extract tracks from an audio CD by selecting Music -&gt; Import Audio CD. This launches Sound Juicer to rip and compress the music from your CD.</p>
<p>=&gt; Import Location&#8211;Identify a folder of music from a Web site (http) or FTP site (ftp) and you can load the artist, album, song and related information from that folder. Note that this doesn&#8217;t download the songs to your computer. Select to play a song from that imported location and Rhythmbox gets it and plays it live. Your network connection must be up for this to work. You can also copy the song to your local disk using wget.</p>
<p>=&gt; Create Playlist&#8211;To create a playlist, select Music-&gt;Playlist. If you have a really large music collection, select New Automatic Playlist. A pop-up window lets you choose search criteria to find songs music, artists, title, or other criteria to load into your playlist. You can also create a new empty playlist or load a stored playlist from a file. Once a playlist is created, you can add songs to the list by importing or dragging and dropping from a Nautilus window. Right-click on a song to copy, cut or delete it.</p>
<p>=&gt; Check Statistics&#8211;Rhythmbox stores how many times a song has been played, when it was last played, and how you rate it (one to five stars). Select Edit -&gt; Preferences to select to have columns of that information appear on your Rhythmbox window.</p>
<p>=&gt; Play Music Tracks&#8211;With your music available, play that music by double clicking an album, artist, or track. Buttons at the top of Rhythmbox let you play/ pause or go forward or backward a track. Select Shuffle or Repeat boxes on the bottom of Rhythmbox to randomly play the songs in the album or play the same album repeatedly. Use the slider to move ahead or back in a song and select the speaker icon to adjust volume.</p>
<p>=&gt; Play Internet Radio&#8211;Rhythmbox can also play Internet radio stations. The easiest way to do this is to find a streaming radio station, save the PLS file, right-click the file in your file browser and then select Open with Music Player. Nautilus comes configured to launch Rhythmbox for playing audio.</p>
<p>Note: In some (in fact many!) Linux distributions, you cannot play mp3 files &#8216;out-of-the-box&#8217;. This is because of patent issues.</p>
<p>You should be able to play mp3 files by installing the required libraries. The procedure will depend on the Linux distribution you are using. Another way to solve this problem is to install VLC Player (www.videolan.org). VLC Player can play a number of audio and video formats &#8216;out-of-the-box&#8217;.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.adiwebs.com/midi-audio-players-in-linux/" rel="bookmark" class="crp_title">MIDI Audio Players in Linux</a></li><li><a href="http://www.adiwebs.com/xine-player-for-linux/" rel="bookmark" class="crp_title">Xine Player for Linux</a></li><li><a href="http://www.adiwebs.com/play-cds-automatically-media-player-windows-7/" rel="bookmark" class="crp_title">Play CDs automatically with Media Player in Windows 7</a></li><li><a href="http://www.adiwebs.com/how-to-play-cds-using-gnome-cd-in-linux/" rel="bookmark" class="crp_title">How to play CDs using gnome-cd in Linux</a></li><li><a href="http://www.adiwebs.com/sharepod-software-review/" rel="bookmark" class="crp_title">Sharepod&#8211;Software Review</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.adiwebs.com/playing-music-in-linux-using-rhythmbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deleting User Accounts With userdel in Linux</title>
		<link>http://www.adiwebs.com/deleting-user-accounts-with-userdel-in-linux/</link>
		<comments>http://www.adiwebs.com/deleting-user-accounts-with-userdel-in-linux/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 15:21:36 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[account]]></category>
		<category><![CDATA[administrator]]></category>
		<category><![CDATA[chown command]]></category>
		<category><![CDATA[exec]]></category>
		<category><![CDATA[filenames]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[parameter]]></category>
		<category><![CDATA[recursive search]]></category>
		<category><![CDATA[rm command]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[subdirectories]]></category>

		<guid isPermaLink="false">http://www.adiwebs.com/?p=1733</guid>
		<description><![CDATA[Deleting User Accounts With userdel in Linux
The userdel command takes a single argument, which is the login name of the account to delete. If you supply the optional -r option, it also deletes the user&#8217;s home directory and all the files in it. To delete the user account with login name mary, you would type [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Deleting User Accounts With userdel in Linux</strong></p>
<p>The userdel command takes a single argument, which is the login name of the account to delete. If you supply the optional -r option, it also deletes the user&#8217;s home directory and all the files in it. To delete the user account with login name mary, you would type this:</p>
<p># userdel mary</p>
<p>To wipe out her home directory along with her account, type this:</p>
<p># userdel -r mary</p>
<p>Files owned by the deletec user but not located in the user&#8217;s home directory will not be deleted. The system administrator must search for and delete those files manually. The find command comes in very handy for this type of task.</p>
<p>Using find to locate and change user files:</p>
<p>&#8211; find / -user mary : Search the entire file hierarchy (start at /) for all files and directories owned by mary and print the filenames to the screen.</p>
<p>&#8211; find /home -user mary -exec rm -i {} \; : Search for all files and subdirectories under /home owned by mary. Run the rm command interactively to delete each file.</p>
<p>&#8211; find / -user mary -exec chown jenny {} \; : Search for all files and subdirectories under /home that are owned by user mary and run the chown command to change each file so that it is owned by jenny instead.</p>
<p>&#8211; find / -uid 500 -exec chown jenny {} \; : This command is basically the same as the previous example, but it uses the user ID number instead of the user name to identify the matching files. This is useful if you have deleted a user before converting her files.</p>
<p>There are a few common things about each invocation of the find command. The first parameter is always the directory to start the recursive search in. After that come the file attributes to match. You can use the -exec parameter to run a command against each matching file or directory. The {} characters designate where the matching filename should be filled in when find runs the -exec option. The \; at the end simply tells Linux where the command ends. These are only a few of find&#8217;s capabilities.</p>
<p>For more information on using find, check the man page. Type man find to view the page.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.adiwebs.com/commands-for-moving-copying-and-deleting-files-in-linux/" rel="bookmark" class="crp_title">Commands for moving, copying and deleting files in Linux</a></li><li><a href="http://www.adiwebs.com/linux-commands-to-create-files-and-directories/" rel="bookmark" class="crp_title">Linux commands to create files and directories</a></li><li><a href="http://www.adiwebs.com/how-to-identify-directories-in-linux/" rel="bookmark" class="crp_title">How to identify directories in Linux</a></li><li><a href="http://www.adiwebs.com/removing-temp-files-using-tmpwatch/" rel="bookmark" class="crp_title">Removing temp files using tmpwatch</a></li><li><a href="http://www.adiwebs.com/how-to-remove-unwanted-files-in-linux/" rel="bookmark" class="crp_title">How to remove unwanted files in Linux</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.adiwebs.com/deleting-user-accounts-with-userdel-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing temp files using tmpwatch</title>
		<link>http://www.adiwebs.com/removing-temp-files-using-tmpwatch/</link>
		<comments>http://www.adiwebs.com/removing-temp-files-using-tmpwatch/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 15:21:14 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[disk space]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[man page]]></category>
		<category><![CDATA[temp files]]></category>
		<category><![CDATA[temporary files]]></category>
		<category><![CDATA[tmpwatch]]></category>

		<guid isPermaLink="false">http://www.adiwebs.com/?p=1731</guid>
		<description><![CDATA[Removing temp files using tmpwatch
In Linux, directories storing temporary files used by applications can consume lots of disk space over time. These directories are usually /tmp and /var/tmp. To deal with this problem, most Linux distros come with a tool called tmpwatch. The tmpwatch command runs the cron file /etc/cron.daily/tmpwatch to delete unused temporary files.
Here [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Removing temp files using tmpwatch</strong></p>
<p>In Linux, directories storing temporary files used by applications can consume lots of disk space over time. These directories are usually /tmp and /var/tmp. To deal with this problem, most Linux distros come with a tool called tmpwatch. The tmpwatch command runs the cron file /etc/cron.daily/tmpwatch to delete unused temporary files.</p>
<p>Here is what this file contains:</p>
<p><code>/usr/sbin/tmpwatch 240 /tmp<br />
/usr/sbin/tmpwatch 720 /var/tmp<br />
for d in /var/{cache/man,catman}/{cat?,X11R6/cat?,local/cat?};do<br />
if [ -d "$d" ]; then<br />
/usr/sbin/tmpwatch -f 720 $d<br />
fi<br />
done</code></p>
<p>Each day, this tmpwatch script runs to delete temporary files that haven&#8217;t been used for a while. Files from the /tmp and /var/tmp directories are removed after 240 and 720 hours of not being accessed, respectively. Temporary man page files stored in /var/cache subdirectories are also checked and deleted after 720 hours of disuse.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.adiwebs.com/deleting-user-accounts-with-userdel-in-linux/" rel="bookmark" class="crp_title">Deleting User Accounts With userdel in Linux</a></li><li><a href="http://www.adiwebs.com/how-to-remove-unwanted-files-in-linux/" rel="bookmark" class="crp_title">How to remove unwanted files in Linux</a></li><li><a href="http://www.adiwebs.com/commands-for-moving-copying-and-deleting-files-in-linux/" rel="bookmark" class="crp_title">Commands for moving, copying and deleting files in Linux</a></li><li><a href="http://www.adiwebs.com/linux-commands-to-create-files-and-directories/" rel="bookmark" class="crp_title">Linux commands to create files and directories</a></li><li><a href="http://www.adiwebs.com/choosing-a-text-editor-in-linux/" rel="bookmark" class="crp_title">Choosing a Text Editor in Linux</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.adiwebs.com/removing-temp-files-using-tmpwatch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Backup Your Gmail Account</title>
		<link>http://www.adiwebs.com/how-to-backup-your-gmail-account/</link>
		<comments>http://www.adiwebs.com/how-to-backup-your-gmail-account/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 01:46:48 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Gmail]]></category>
		<category><![CDATA[account]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[gmail account]]></category>
		<category><![CDATA[google gmail]]></category>

		<guid isPermaLink="false">http://www.adiwebs.com/how-to-backup-your-gmail-account/</guid>
		<description><![CDATA[How to Backup Your Gmail Account
It is important that you back up your gmail account. Your emails may contain confidential information such as bank statements, money details, etc. and should these land in the hands of some unscruplous hacker, it could prove dangerous. Your email account can also be hijacked by password cracking or some [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How to Backup Your Gmail Account</strong></p>
<p>It is important that you back up your gmail account. Your emails may contain confidential information such as bank statements, money details, etc. and should these land in the hands of some unscruplous hacker, it could prove dangerous. Your email account can also be hijacked by password cracking or some other means. So, it is better to delete confidential emails once you read them or back them up to your hard drive and encrypt them.</p>
<p>There are two ways to backup your gmail account:</p>
<p><strong>- Forward your email to another account:</strong></p>
<p>This will be depending on your other account&#8217;s stability. Go to Settings, then Forwarding and POP. Select Forward a copy, and enter an email address. Then Save Changes.</p>
<p><strong>- Download all your email to your computer:</strong></p>
<p>Enable POP for all mail and then follow Google&#8217;s guide to configuring your desktop email client such as Thunderbird or Outlook. Download all emails to hard disk and keep them safe.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.adiwebs.com/gmail-pop3-settings-in-outlook-2007/" rel="bookmark" class="crp_title">Gmail pop3 Settings in Outlook 2007</a></li><li><a href="http://www.adiwebs.com/gmail-drive-use-your-gmail-account-as-a-drive/" rel="bookmark" class="crp_title">Gmail Drive&#8211;Use your gmail account as a drive</a></li><li><a href="http://www.adiwebs.com/recover-gmail-password-through-sms-text-message/" rel="bookmark" class="crp_title">Recover Gmail Password through SMS (text message)</a></li><li><a href="http://www.adiwebs.com/how-to-host-your-domain-email-at-gmail/" rel="bookmark" class="crp_title">How to Host Your Domain Email at Gmail</a></li><li><a href="http://www.adiwebs.com/use-plus-addressing-in-gmail/" rel="bookmark" class="crp_title">Use Plus Addressing in Gmail</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.adiwebs.com/how-to-backup-your-gmail-account/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s China problem means good news for Bing</title>
		<link>http://www.adiwebs.com/googles-china-problem-means-good-news-for-bing/</link>
		<comments>http://www.adiwebs.com/googles-china-problem-means-good-news-for-bing/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 17:22:57 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[hacked]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://www.adiwebs.com/googles-china-problem-means-good-news-for-bing/</guid>
		<description><![CDATA[Earlier this month, Google created a huge commotion in the technology-world by announcing it was no longer interested in working with the Chinese government to censor search results. It also threatened that it would cease all operations in China after Chinese hackers breached Google accounts.
This seems definitely like a good time for Bing. Microsoft remained [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier this month, Google created a huge commotion in the technology-world by announcing it was no longer interested in working with the Chinese government to censor search results. It also threatened that it would cease all operations in China after Chinese hackers breached Google accounts.</p>
<p>This seems definitely like a good time for Bing. Microsoft remained quiet for as long as it could, and then eventually announced it would continue operations in China.</p>
<p>Microsoft CEO Steve Ballmer stated the company&#8217;s stand again in a post on The Microsoft Blog.</p>
<p>&#8220;We have done business in China for more than 20 years and we intend to stay engaged, which means our business must respect the laws of China. That&#8217;s true for every company doing business in countries around the world: we are all subject to local laws.&#8221;</p>
<p>This is not a surprise at all&#8211;if one of Microsoft&#8217;s biggest competitors has decided to leave a market, it is time to take advantage. Microsoft maintains that its systems were not hacked in the Chinese cyber-attacks on the 30 or so US companies.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.adiwebs.com/chinese-authorities-bust-hacker-school/" rel="bookmark" class="crp_title">Chinese authorities bust &#8220;hacker school&#8221;</a></li><li><a href="http://www.adiwebs.com/wi-fi-free-iphone-launched-in-china/" rel="bookmark" class="crp_title">Wi-Fi-free iPhone Launched in China</a></li><li><a href="http://www.adiwebs.com/windows-7-china-debut-hijacked-by-pirates/" rel="bookmark" class="crp_title">Windows 7 China Debut Hijacked by Pirates</a></li><li><a href="http://www.adiwebs.com/bing-may-become-iphones-default-search-engine/" rel="bookmark" class="crp_title">Bing May Become iPhone&#8217;s Default Search Engine</a></li><li><a href="http://www.adiwebs.com/dell-plans-to-build-smartphone-for-att/" rel="bookmark" class="crp_title">Dell Plans to Build Smartphone for AT&#038;T</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.adiwebs.com/googles-china-problem-means-good-news-for-bing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database program for use with C language</title>
		<link>http://www.adiwebs.com/database-program-for-use-with-c-language/</link>
		<comments>http://www.adiwebs.com/database-program-for-use-with-c-language/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 17:06:08 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Programming Languages]]></category>
		<category><![CDATA[c language]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.adiwebs.com/database-program-for-use-with-c-language/</guid>
		<description><![CDATA[Database program for use with C language
Which free database programs can be used that will accept input from a program written in C?
Answer: It is possible to interface quite a few different databases with the correct libraries in C.
For example, Microsoft&#8217;s Visual C++ allows binding to Microsoft&#8217;s JET engine (used by Access), SQL and a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Database program for use with C language</strong></p>
<p>Which free database programs can be used that will accept input from a program written in C?</p>
<p>Answer: It is possible to interface quite a few different databases with the correct libraries in C.</p>
<p>For example, Microsoft&#8217;s Visual C++ allows binding to Microsoft&#8217;s JET engine (used by Access), SQL and a couple of others.</p>
<p>However for C language, the best bet will probably be MySQL as it has libraries for most OS&#8217;s.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.adiwebs.com/translation-system-categories-of-translators/" rel="bookmark" class="crp_title">Translation System, Categories of Translators</a></li><li><a href="http://www.adiwebs.com/program-programming-languages-and-types/" rel="bookmark" class="crp_title">Program, Programming Languages and Types</a></li><li><a href="http://www.adiwebs.com/microsoft-office-2007-on-linux/" rel="bookmark" class="crp_title">Microsoft Office 2007 on Linux</a></li><li><a href="http://www.adiwebs.com/early-static-binding-and-late-dynamic-binding-in-c/" rel="bookmark" class="crp_title">Early (static) binding and late (dynamic) binding in C++</a></li><li><a href="http://www.adiwebs.com/artificial-intelligence-objective-questions-41-50/" rel="bookmark" class="crp_title">Artificial Intelligence Objective Questions (41-50)</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.adiwebs.com/database-program-for-use-with-c-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Convert FAT to NTFS file system</title>
		<link>http://www.adiwebs.com/how-to-convert-fat-to-ntfs-file-system/</link>
		<comments>http://www.adiwebs.com/how-to-convert-fat-to-ntfs-file-system/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 16:49:27 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[fat]]></category>
		<category><![CDATA[file system]]></category>
		<category><![CDATA[Filesystem]]></category>
		<category><![CDATA[ntfs]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://www.adiwebs.com/how-to-convert-fat-to-ntfs-file-system/</guid>
		<description><![CDATA[How to Convert FAT to NTFS file system
To convert a FAT partition to NTFS, perform the following steps.
1) Click Start, click Programs, and then click Command Prompt.
2) In Windows XP, click Start, click Run, type cmd and then click OK.
3) At the command prompt, type CONVERT [driveletter]: /FS:NTFS.
4) Convert.exe will attempt to convert the partition [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How to Convert FAT to NTFS file system</strong></p>
<p>To convert a FAT partition to NTFS, perform the following steps.</p>
<p>1) Click Start, click Programs, and then click Command Prompt.</p>
<p>2) In Windows XP, click Start, click Run, type cmd and then click OK.</p>
<p>3) At the command prompt, type CONVERT [driveletter]: /FS:NTFS.</p>
<p>4) Convert.exe will attempt to convert the partition to NTFS.</p>
<p>NOTE: Although the chance of corruption or data loss during the conversion from FAT to NTFS is minimal, it is best to perform a full backup of the data on the drive that it is to be converted prior to executing the convert command. It is also recommended to verify the integrity of the backup before proceeding, as well as to run RDISK and update the emergency repair disk (ERD).</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.adiwebs.com/creating-a-system-repair-disk-in-windows-7/" rel="bookmark" class="crp_title">Creating a System Repair Disk in Windows 7</a></li><li><a href="http://www.adiwebs.com/what-is-a-virtual-hard-drive/" rel="bookmark" class="crp_title">What is a virtual hard drive?</a></li><li><a href="http://www.adiwebs.com/free-zune-video-converter-1-1-review/" rel="bookmark" class="crp_title">Free Zune Video Converter 1.1 Review</a></li><li><a href="http://www.adiwebs.com/how-to-backup-the-registry-in-windows-7/" rel="bookmark" class="crp_title">How to backup the registry in Windows 7</a></li><li><a href="http://www.adiwebs.com/type-conversion-in-c/" rel="bookmark" class="crp_title">Type Conversion in C++</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.adiwebs.com/how-to-convert-fat-to-ntfs-file-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TCS web site hijacked</title>
		<link>http://www.adiwebs.com/tcs-web-site-hijacked/</link>
		<comments>http://www.adiwebs.com/tcs-web-site-hijacked/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 11:43:07 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[cyber attack]]></category>
		<category><![CDATA[hacked]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[network solutions]]></category>
		<category><![CDATA[tata]]></category>
		<category><![CDATA[tcs]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.adiwebs.com/tcs-web-site-hijacked/</guid>
		<description><![CDATA[TCS web site hacked
The website of India&#8217;s largest software firm, Tata Consultancy Services (TCS) became disrupted for sometime as Network Solutions came under a cyber attack on Sunday. The company&#8217;s website was unavailable for over three hours and redirected to a &#8220;domain name for sale&#8221; page.
www.tcs.com displayed the message ‘this domain name is for sale’ [...]]]></description>
			<content:encoded><![CDATA[<p><img hspace="10" alt="Image" align="left" src="http://www.adiwebs.com/wp-content/uploads/2010/02/image-59.jpg" width="225" height="168" /><strong>TCS web site hacked</strong></p>
<p>The website of India&#8217;s largest software firm, Tata Consultancy Services (TCS) became disrupted for sometime as Network Solutions came under a cyber attack on Sunday. The company&#8217;s website was unavailable for over three hours and redirected to a &#8220;domain name for sale&#8221; page.</p>
<p><a href="http://www.tcs.com">www.tcs.com</a> displayed the message ‘this domain name is for sale’ for nearly three hours. Everything was back to normal by Monday morning.</p>
<p>A TCS spokesman stated that the attackers breached at the domain name registrar&#8217;s end i.e. Network Solutions. Network Solutions is one of the top five domain name registrars on internet, managing almost 6.4 million domains.</p>
<p>According to a report on techie-buzz.com, a French hacker was involved in the hijacking. This hack appears to be a DNS hijack which is quite similar to the breach that Twitter buckled under last year.</p>
<p>None of the servers were breached and so there would be no data loss. Initial investigation reveals a DNS redirection at the domain name registrar’s end. TCS is busy in further investigations.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.adiwebs.com/twitter-hacked-by-iranian-hackers/" rel="bookmark" class="crp_title">Twitter hacked by Iranian hackers!</a></li><li><a href="http://www.adiwebs.com/apples-tablet-pc-islate/" rel="bookmark" class="crp_title">Apple&#8217;s Tablet PC = iSlate?</a></li><li><a href="http://www.adiwebs.com/insure-com-sells-for-16-million/" rel="bookmark" class="crp_title">Insure.com Sells for $16 Million</a></li><li><a href="http://www.adiwebs.com/how-to-host-your-domain-email-at-gmail/" rel="bookmark" class="crp_title">How to Host Your Domain Email at Gmail</a></li><li><a href="http://www.adiwebs.com/how-to-check-network-from-gnome/" rel="bookmark" class="crp_title">How to Check Network from Gnome</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.adiwebs.com/tcs-web-site-hijacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
