<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

    <channel>

		<title>Daily Geeks</title>
		<link>http://www.dailygeeks.com</link>
		<description />
		<dc:language>en</dc:language>
		<dc:creator>antiboy.victor@gmail.com</dc:creator>
		<dc:rights>Copyright 2009</dc:rights>
		<dc:date>2009-01-21T20:05:42+00:00</dc:date>


	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/dailygeeks" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
			<title>Default Linux Shell Environment Variables</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/Goj852zMmqY/</link>
			<description>There are specific environment variables that the bash shell uses by default to define the system environment. You can always count on these variables being set on your Linux system. Since the bash shell is a derivative of the original Unix Bourne shell, it also includes environment variables originally defined in that shell.</description>
			<dc:subject>Linux</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/WlBoyPuyGg3JYEQMZOSF15LHvxQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/WlBoyPuyGg3JYEQMZOSF15LHvxQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/WlBoyPuyGg3JYEQMZOSF15LHvxQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/WlBoyPuyGg3JYEQMZOSF15LHvxQ/1/di" border="0" ismap="true"></img></a></p> <p>There are specific environment variables that the bash shell uses by default to define the system environment. You can always count on these variables being set on your Linux system. Since the bash shell is a derivative of the original Unix Bourne shell, it also includes environment variables originally defined in that shell.</p>
<p>By far the most important environment variable in this list is the PATH environment variable. When you enter a command in the shell command line interface (CLI), the shell must search<br />the system to find the program. The PATH environment variable defines the directories it searches looking for commands. On my Linux system, the PATH environment variable looks like this:</p>
<p class="code">$ echo $PATH<br />/usr/kerberos/bin:/usr/lib/ccache:/usr/local/bin:/bin:/usr/bin:<br />/home/rich/bin<br />$</p>
<p>This shows that there are six directories where the shell looks for commands. Each directory in<br />the PATH is separated by a colon. There&rsquo;s nothing at the end of the PATH variable indicating the end of the directory listing. You can add additional directories to the PATH simply by adding another colon, and adding the new directory. The PATH also shows the order in which it looks for commands.</p>
<p>Besides the default Bourne environment variables, the bash shell also provides a few variables of<br />its own.</p>
<h2>The bash Shell Bourne Variables</h2>
<p><strong>CDPATH</strong> A colon-separated list of directories used as a search path for the cd command.<br /><strong>HOME</strong> The current user&rsquo;s home directory.<br /><strong>IFS</strong> A list of characters that separate fields used by the shell to split text strings.<br /><strong>MAIL</strong> The filename for the current user&rsquo;s mailbox. The bash shell checks this file<br />for new mail.<br /><strong>MAILPATH</strong><strong> </strong>A colon-separated list of multiple filenames for the current user&rsquo;s mailbox. The<br />bash shell checks each file in this list for new mail.<br /><strong>OPTARG</strong><strong> </strong>The value of the last option argument processed by the getopts command.<br /><strong>OPTIND</strong><strong> </strong>The index value of the last option argument processed by the getopts<br />command.<br /><strong>PATH</strong><strong> </strong>A colon-separated list of directories where the shell looks for commands.<br /><strong>PS1</strong><strong> </strong>The primary shell command line interface prompt string.<br /><strong>PS2</strong><strong> </strong>The secondary shell command line interface prompt string.</p>
<h2>The bash Shell Environment Variables</h2>
<p><strong>BASH</strong><strong> </strong>The full pathname to execute the current instance of the bash shell.<br /><strong>BASH_ENV</strong> When set, each bash script attempts to execute a startup file defined by<br />this variable before running.<br /><strong>BASH_VERSION </strong>The version number of the current instance of the bash shell.<br /><strong>BASH_VERSINFO </strong>A variable array that contains the individual major and minor version<br />numbers of the current instance of the bash shell.<br /><strong>COLUMNS </strong>Contains the terminal width of the terminal used for the current<br />instance of the bash shell.<br /><strong>COMP_CWORD </strong>An index into the variable COMP WORDS, which contains the current<br />cursor position.<br /><strong>COMP_LINE</strong><strong> </strong>The current command line.<br /><strong>COMP_POINT </strong>The index of the current cursor position relative to the beginning of the current command.<br /><strong>COMP_WORDS </strong>A variable array that contains the individual words on the current command line.<br /><strong>COMPREPLY </strong>A variable array that contains the possible completion codes generated by a shell function.</p>
<p><strong>DIRSTACK </strong>A variable array that contains the current contents of the directory stack.<br /><strong>EUID </strong>The numeric effective user ID of the current user.<br /><strong>FCEDIT </strong>The default editor used by the fc command.<br /><strong>FIGNORE </strong>A colon-separated list of suffixes to ignore when performing filename completion.<br /><strong>FUNCNAME </strong>The name of the currently executing shell function.<br /><strong>GLOBIGNORE </strong>A colon-separated list of patterns defining the set of filenames to be ignored by filename expansion.<br /><strong>GROUPS </strong>A variable array containing the list of groups of which the current user is a member.<br />histchars Up to three characters which control history expansion.<br /><strong>HISTCMD </strong>The history number of the current command.<br /><strong>HISTCONTROL </strong>Controls what commands are entered in the shell history list.<br /><strong>HISTFILE </strong>The name of the file to save the shell history list (.bash history by default).<br /><strong>HISTFILESIZE </strong>The maximum number of lines to save in the history file.<br /><strong>HISTIGNORE </strong>A colon-separated list of patterns used to decide which commands are ignored for the history file.<br /><strong>HISTSIZE </strong>The maximum number of commands stored in the history file.<br /><strong>HOSTFILE </strong>Contains the name of the file that should be read when the shell needs to complete a hostname.<br /><strong>HOSTNAME </strong>The name of the current host.<br /><strong>HOSTTYPE </strong>A string describing the machine the bash shell is running on.<br /><strong>IGNOREEOF </strong>The number of consecutive EOF characters the shell must receive before exiting. If this value doesn&rsquo;t exist, the default is one.<br /><strong>INPUTRC </strong>The name of the Readline initialization file (the default is .inputrc).</p>
<p><strong>LANG </strong>The locale category for the shell.<br /><strong>LC_ALL </strong>Overrides the LANG variable, defining a locale category.<br /><strong>LC_COLLATE </strong>Sets the collation order used when sorting string values.<br /><strong>LC_CTYPE </strong>Determines the interpretation of characters used in filename expansion and pattern matching.<br /><strong>LC_MESSAGES </strong>Determines the locale setting used when interpreting double-quoted strings preceded by a dollar sign.<br /><strong>LC_NUMERIC </strong>Determines the locale setting used when formatting numbers.<br /><strong>LINENO </strong>The line number in a script currently executing.<br /><strong>LINES </strong>Defines the number of lines available on the terminal.<br /><strong>MACHTYPE </strong>A string defining the system type in cpu-company-system format<br /><strong>MAILCHECK </strong>How often (in seconds) the shell should check for new mail (default is 60).<br /><strong>OLDPWD </strong>The previous working directory used in the shell.<br /><strong>OPTERR </strong>If set to 1, the bash shell displays errors generated by the getopts command.<br /><strong>OSTYPE </strong>A string defining the operating system the shell is running on.<br /><strong>PIPESTATUS </strong>A variable array containing a list of exit status values from the processes in the foreground process.<br /><strong>POSIXLY CORRECT </strong>If set, bash starts in POSIX mode.<br /><strong>PPID </strong>The process ID (PID) of the bash shell&rsquo;s parent process.<br /><strong>PROMPT_COMMAND </strong>If set, the command to execute before displaying the primary prompt.<br /><strong>PS3 </strong>The prompt to use for the select command.<br /><strong>PS4 </strong>The prompt displayed before the command line is echoed if the bash -x parameter is used.<br /><strong>PWD </strong>The current working directory.</p>
<p><strong>RANDOM </strong>Returns a random number between 0 and 32767. Assigning a value to this variable seeds the random number generator.<br /><strong>REPLY </strong>The default variable for the read command.<br /><strong>SECONDS </strong>The number of seconds since the shell was started. Assigning a value resets the timer to the value.<br /><strong>SHELLOPTS </strong>A colon-separated list of enabled bash shell options.<br /><strong>SHLVL </strong>Indicates the shell level, incremented by one each time a new bash shell is started.<br /><strong>TIMEFORMAT </strong>A format specifying how the shell displays time values.<br /><strong>TMOUT </strong>The value of how long (in seconds) the select and read commands should wait for input. The default of zero indicates to wait indefinitely.<br /><strong>UID </strong>The numeric real user id of the current user.</p>
<p>You may notice that not all of the default environment variables are shown when I used the set command. The reason for this is that although these are the default environment variables, not all of them are required to contain a value.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=ZXFfTmBY"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=ZnNJyzdR"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=ZnNJyzdR" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=SV2PcMEq"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=SV2PcMEq" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=mzQu0nRT"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=mzQu0nRT" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=eotAgFwI"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/Goj852zMmqY" height="1" width="1"/>]]></content:encoded>
			<dc:date>2009-01-21T20:05:42+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/default-linux-shell-environment-variables/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/default-linux-shell-environment-variables/</feedburner:origLink></item>
	
		<item>
			<title>How to create a Data List in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/l_wdjDA5l_0/</link>
			<description>Creating a new data list in a worksheet is much like creating a worksheet table except that it has only column headings and no row headings.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/T5arF_kvkqVaenqbPsXc6yLoSuM/0/da"><img src="http://feedads.g.doubleclick.net/~a/T5arF_kvkqVaenqbPsXc6yLoSuM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/T5arF_kvkqVaenqbPsXc6yLoSuM/1/da"><img src="http://feedads.g.doubleclick.net/~a/T5arF_kvkqVaenqbPsXc6yLoSuM/1/di" border="0" ismap="true"></img></a></p> <p>Creating a new data list in a worksheet is much like creating a worksheet table except that it has only column headings and no row headings.</p>
<p>To set up a new data list, follow these steps:</p>
<p>1. Click the blank cell where you want to start the new data list and then enter the column headings (technically known as field names in database parlance) that identify the different kinds of items you need to keep track of (such as First Name, Last Name, Street, City, State, and so<br />on) in the columns to the right.<br />After creating the fields of the data list by entering their headings, you&#8217;re ready to enter the first row of data.</p>
<p>2. Make the first entries in the appropriate columns of the row immediately following the one containing the field names. These entries in the first row beneath the one with the field names constitute the first record of the data list.</p>
<p>3. Click the Format as Table button in the Styles group of Ribbon&#8217;s Home tab and then click a thumbnail of one of the table styles in the dropdown gallery.</p>
<p>Excel puts a marquee around all the cells in the new data list including the top row of field names. As soon as you click a table style in the dropdown gallery, the Format As Table dialog box appears listing the address of the cell range enclosed in the marquee in the Where Is the Data for Your Table text box.</p>
<p>4. Click the My Table Has Headers check box to select it.</p>
<p>5. Click the OK button to close Format As Table dialog box.</p>
<p>Excel formats your new data list in the selected table format and adds filter (drop-down buttons) to each of the field names in the top row.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=x0CHlKhq"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=uNsTXbqF"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=uNsTXbqF" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=jGb9c6Ai"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=jGb9c6Ai" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=fSq852py"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=fSq852py" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=I4V8obEu"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/l_wdjDA5l_0" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-12-03T18:30:26+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-create-a-data-list-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-create-a-data-list-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>How to hide graphic objects in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/nzZd4ZUoV0U/</link>
			<description>The Selection and Visibility task pane enables you not only to change the layering of various graphic objects in the worksheet but also to control whether they are hidden or displayed.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/WtK3vZYcOA8DSwJ1RNSFyxJzPqg/0/da"><img src="http://feedads.g.doubleclick.net/~a/WtK3vZYcOA8DSwJ1RNSFyxJzPqg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/WtK3vZYcOA8DSwJ1RNSFyxJzPqg/1/da"><img src="http://feedads.g.doubleclick.net/~a/WtK3vZYcOA8DSwJ1RNSFyxJzPqg/1/di" border="0" ismap="true"></img></a></p> <p>The Selection and Visibility task pane enables you not only to change the layering of various graphic objects in the worksheet but also to control whetherthey are hidden or displayed.</p>
<p>The way you open the Selection and Visibility task pane depends upon the type of graphic object you&rsquo;ve selected in the worksheet:</p>
<ul>
<li>Charts: click the Selection Pane button on the Format tab of the Chart Tools contextual tab or press Alt+JOAP</li>
<li>Text Boxes and Shapes: click the Selection Pane button on the Format tab under the Drawing Tools contextual tab or press Alt+JDAP</li>
<li>Clip Art and Pictures: click the Selection Pane button on the Format tab under the Picture Tools contextual tab or press Alt+JDAP</li>
<li>SmartArt: click Selection Pane on the Arrange button&#8217;s drop-down palette on the Format tab of the SmartArt Tools contextual tab or press Alt+JOZAAP</li>
</ul>
<p>After you open the Selection and Visibility task pane, you can temporarily hide any of the graphic objects listed by clicking its eye check box (to remove the eye icon). To remove the display of all the charts and graphics in the worksheet, click the Hide All button at the bottom of the Selection and Visibility task pane instead.</p>
<p>To redisplay a hidden graphic object, simply click its empty eye check box to put the eye icon back into it. To redisplay all graphic objects after hiding them all, click the Show All button at the bottom of the task pane.</p>
<p>If you hide all the charts and graphics in a worksheet by clicking the Hide All button and then close the Selection and Visibility task pane by clicking its close button, you&rsquo;ll have no way of redisplaying this task pane so that you can bring back their display by clicking the Show All button. That&rsquo;s because you have no graphic objects left to select in the worksheet and therefore no way to get the contextual tabs with their Selection Pane buttons to appear on<br />the Ribbon.</p>
<p>In this dire case, the only way I know to get back the Selection and Visibility task pane so that you can click the Show All button is to create a dummy (pardon my French) graphic object in the worksheet (such as an arrow or oval in the Shapes group on the Insert tab) and then click the Selection Pane button on the Format tab of its Drawing Tools contextual tab. With the<br />Selection and Visibility task pane open, click the Show All button to bring back the display of all the charts and graphics you want to keep and get rid of the still-selected dummy graphic object by pressing the Delete key (whew, that was a close one!).</p>
<p>&nbsp;</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=OAe44VpR"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=1P0L82RO"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=1P0L82RO" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=S9YNrVDs"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=S9YNrVDs" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=OO5XITAM"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=OO5XITAM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=urf8he6i"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/nzZd4ZUoV0U" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-12-03T18:09:53+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-hide-graphic-objects-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-hide-graphic-objects-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>How to Create an Ubuntu install USB stick</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/Q90W7KqjTxE/</link>
			<description>If you don’t fancy carrying the delicate Ubuntu installation CD around with you, you can copy its contents to a USB key stick and use that to install Ubuntu onto computers (provided those computers can boot from USB, and most modern computers will be able to).</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/tR-ha4H6GxICSoquxyJLXwjFFkM/0/da"><img src="http://feedads.g.doubleclick.net/~a/tR-ha4H6GxICSoquxyJLXwjFFkM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/tR-ha4H6GxICSoquxyJLXwjFFkM/1/da"><img src="http://feedads.g.doubleclick.net/~a/tR-ha4H6GxICSoquxyJLXwjFFkM/1/di" border="0" ismap="true"></img></a></p> <p>If you don&#8217;t fancy carrying the delicate Ubuntu installation CD around with you, you can copy its contents to a USB key stick and use that to install Ubuntu onto computers (provided those computers can boot from USB, and most modern computers will be able to).</p>
<p>This is also a handy way of creating a portable USB installation of Ubuntu on a small USB key (ie 1/2GB) for use on other computers. The only problem is that the system software can&#8217;t be updated, and you&#8217;ll always be running as root user, because that&rsquo;s how the live distro mode<br />of the install CD operates.</p>
<p>This tip is only relevant for users of Ubuntu 8.04 (Hardy Heron) or below. Ubuntu 8.10 (Intrepid Ibex) has built-in tools to install to create an installer USB key stick.</p>
<p>To make the process easier, a member of the Ubuntu community created the fantastic Liveusb software that will entirely automate the creation of a USB install stick. To install it, first add his software repository - click System &rarr; Administration &rarr; Software Sources, select the Third-<br />Party Software in the window that appears, and then click the Add button. Then type the following into the APT line text field:</p>
<p class="code">deb http://ppa.launchpad.net/probono/ubuntu hardy main</p>
<p>Click OK, then the Close button in the parent dialog box, and then click to reload the list of packages when prompted. Then use Synaptic to search for and install liveusb. You&rsquo;ll be told the package isn&rsquo;t authenticated but this is fine.</p>
<p>Insert the USB stick, insert your Ubuntu install CD, and then start the program by clicking System &rarr; Administration &rarr; Install Live USB. In the Options section, you can select to install Flash Player on the USB stick, and also whether you want to make the USB stick &#8220;persistent&#8221;,<br />which is to say, any files you save after booting from it will stick around, rather than being wiped each boot.</p>
<p>Note that a bug in the Ubuntu 8.04 Hardy Heron installation CD means that it is impossible to activate persistent mode on the USB key stick. This has been fixed in the Ubuntu 8.04.1 install CD.</p>
<p>&nbsp;</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=QzX8CLCn"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=tNwz7l6Y"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=tNwz7l6Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=aJuVgmhf"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=aJuVgmhf" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=JqWN60AT"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=JqWN60AT" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=pbfK5YJY"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/Q90W7KqjTxE" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-30T15:03:22+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-create-an-ubuntu-install-usb-stick/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-create-an-ubuntu-install-usb-stick/</feedburner:origLink></item>
	
		<item>
			<title>How to add WordArt to a Sheet in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/WAk5TlUrsPw/</link>
			<description>If selecting gazillions of preset shapes available from the Shapes gallery doesn&amp;rsquo;t provide enough variety for jazzing up your worksheet, you may want to try adding some fancy text using the WordArt gallery opened by clicking the WordArt command button in the Text group of the Insert tab.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/CiahN6to5SYvoHNLKdgRmtYNEfI/0/da"><img src="http://feedads.g.doubleclick.net/~a/CiahN6to5SYvoHNLKdgRmtYNEfI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/CiahN6to5SYvoHNLKdgRmtYNEfI/1/da"><img src="http://feedads.g.doubleclick.net/~a/CiahN6to5SYvoHNLKdgRmtYNEfI/1/di" border="0" ismap="true"></img></a></p> <p>If selecting gazillions of preset shapes available from the Shapes gallery doesn&rsquo;t provide enough variety for jazzing up your worksheet, you may want to try adding some fancy text using the WordArt gallery opened by clicking the WordArt command button in the Text group of the Insert tab.</p>
<p>You can add this type of &#8220;graphic&#8221; text to your worksheet by following these steps:</p>
<p>1. Click the WordArt command button on the Ribbons Insert tab or press Alt+NW.<br />Excel displays the WordArt drop-down gallery dialog box.</p>
<p>2. Click the A thumbnail in the WordArt style you want to use in the WordArt drop-down gallery.</p>
<p>Excel inserts a selected text box containing Your Text Here in the center of the worksheet with this text in the WordArt style you selected in the gallery.</p>
<p>3. Type the text you want to display in the worksheet in the Text text box. As soon as you start typing, Excel replaces the Your Text Here text in the selected text box with the characters you enter.</p>
<p>4. (Optional) To format the background of the text box, use Live Preview in the Shape Styles drop-down gallery on the Format tab to find the style to use and then set it by clicking its thumbnail.</p>
<p>The Format tab under the Drawing Tools contextual tab is automatically added and activated whenever WordArt text is selected in the worksheet.</p>
<p>5. After making any final adjustments to the size, shape, or orientation of the WordArt text with the selection and rotation handles, click a cell somewhere outside of the text to deselect the graphic.</p>
<p>Note that Excel automatically compresses the text to fill the shape and size of its text box. To put more space between the words and the characters in each word, make the text box wider by dragging the sizing handle on either side of the text box.</p>
<p>When you click outside of the WordArt text, Excel deselects the graphic, and the Drawing Tools contextual tab disappears from the Ribbon. (If you ever want this tab to reappear, all you have to do is click somewhere on the WordArt text to select the graphic.)</p>
<p><strong>Remember:</strong><br />You can change the size of WordArt text and the font it uses after creating it by dragging through the WordArt text to select and then using the Font and Font Size command buttons on the Home tab to make your desired changes. Keep in mind, however, that Excel does not automatically resize the WordArt text box to suit the new font and font size.</p>
<p>This means that you can easily make the WordArt text too small or too large for its text box. If this happens, use the sizing handles around the text box to resize and reshape it as needed<br />to suit the new text size.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=LZMQf4yg"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=gpGQoyhU"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=gpGQoyhU" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=Hy0yiA3u"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=Hy0yiA3u" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=XUyCjLHz"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=XUyCjLHz" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=Wz236ICi"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/WAk5TlUrsPw" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-29T19:57:41+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-add-wordart-to-a-sheet-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-add-wordart-to-a-sheet-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>How to add a Clip Art to an Excel document in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/Qz5_xdttL-0/</link>
			<description>Clip Art is the name given to the over 150,000 ready made illustrations offered by Microsoft for use in its various Microsoft Office programs, including Excel 2007. Clip Art drawings are now so numerous that the images are classified into a bunch of different categories ranging from Abstract to Web Elements.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/D5yvpIjOIOzGriw-xdwteQgk8qo/0/da"><img src="http://feedads.g.doubleclick.net/~a/D5yvpIjOIOzGriw-xdwteQgk8qo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/D5yvpIjOIOzGriw-xdwteQgk8qo/1/da"><img src="http://feedads.g.doubleclick.net/~a/D5yvpIjOIOzGriw-xdwteQgk8qo/1/di" border="0" ismap="true"></img></a></p> <p>Clip Art is the name given to the over 150,000 ready made illustrations offered by Microsoft for use in its various Microsoft Office programs, including Excel 2007. Clip Art drawings are now so numerous that the images are classified into a bunch of different categories ranging from Abstract to Web Elements.</p>
<p>To bring in a piece of Clip Art included with Office 2007, you click the Clip Art button on the Ribbon&rsquo;s Insert tab or press Alt+NF. When you do this, Excel 2007 displays the Clip Art task pane <br />from which you search for the type of art you want to use. To locate the clip(s) you want to insert into the current worksheet in the Clip Art task pane, you follow these steps:</p>
<p>1. Click the Search For text box at the top, and then enter the keywords for the type of Clip Art you want to find.</p>
<p>When you enter keywords for finding particular types of Clip Art, try general, descriptive terms such as trees, flowers, people, flying, and the like.</p>
<p>2. (Optional) Click the Search In drop-down button and remove (deselect) check marks from any Clip Art collections that you don&#8217;t want to search.</p>
<p>By default, Excel searches all the collections of Clip Art (including the Media Gallery Online collection on the Web). To limit your search, you need to make sure that only the Clip Art collections you want to include in the search have check marks before their names.</p>
<p>3. (Optional) To limit the search to Clip Art only, click the Results Should Be drop-down button and remove check marks from the All Media Types, Photographs, Movies, and Sounds categories.</p>
<p>You can further limit the types of Clip Art files included in the search by clicking the plus sign in front of Clip Art and then removing check marks from any and all types of clips (such as CorelDraw or Macintosh PICT) that you don&#8217;t want or need to use.</p>
<p>4. Click the Go button to the immediate right of the Search For text box to initiate the search.</p>
<p>The first time you search for Clip Art, when you click the Go button, Excel displays an alert dialog box asking you if you want to include thousands of additional Clip Art images and photos from Microsoft Office Online in your search. If you click Yes, Excel includes these images in your search. Otherwise, Excel simply searches all of the places you specify in the Search In list before displaying the thumbnails of the search results in the Clip Art task pane.</p>
<p>To insert one of the thumbnails displayed in the Clip Art task pane into the current worksheet, click the thumbnail. You can also insert an image by positioning the mouse over it to display its drop-down button, clicking the drop-down button, and then choosing Insert at the top of its<br />drop-down menu.</p>
<p><em>When you insert a Clip Art image into the worksheet, it is automatically selected (indicated by the selection handles around its perimeter and its rotation handle at the top). To de-select the Clip Art image and set it in the worksheet, click anywhere in the worksheet outside of the image.</em></p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=BOO7kOex"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=mnw4tSmE"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=mnw4tSmE" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=Pt7F3PYH"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=Pt7F3PYH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=s1HbtDlr"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=s1HbtDlr" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=bfF8jk76"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/Qz5_xdttL-0" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-28T19:39:30+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-add-a-clip-art-to-an-excel-document-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-add-a-clip-art-to-an-excel-document-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>How to add an arrow to a text box in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/aOaeLNdnmgo/</link>
			<description>When creating a text box, you may want to add an arrow to point directly to the object or part of the chart you&amp;rsquo;re referencing.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/zqkltzC9WKaPwv78w5KKBsHkG1Y/0/da"><img src="http://feedads.g.doubleclick.net/~a/zqkltzC9WKaPwv78w5KKBsHkG1Y/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zqkltzC9WKaPwv78w5KKBsHkG1Y/1/da"><img src="http://feedads.g.doubleclick.net/~a/zqkltzC9WKaPwv78w5KKBsHkG1Y/1/di" border="0" ismap="true"></img></a></p> <p>When creating a text box, you may want to add an arrow to point directly to the object or part of the chart you&rsquo;re referencing. To add an arrow, followthese steps:</p>
<p>1. Click the text box to which you want to attach the arrow in the chart or worksheet to select.</p>
<p>Selection handles appear around the text box and the Format tab under the Drawing Tools Contextual tab is selected on the Ribbon.</p>
<p>2. Click the Arrow command button in the Insert Shapes drop-down gallery at the very beginning of the Format tab.</p>
<p>The Arrow command button is the second from the left in the first row of shapes (with the picture of an arrow). When you click this button, it becomes selected in the palette (indicated by the new color) and the mouse pointer assumes the crosshair shape.</p>
<p>3. Drag the crosshair mouse pointer from the place on the text box where the end of the arrow (the one without the arrowhead) is to appear to the place where the arrow starts (and the arrowhead will appear) and release the mouse button.</p>
<p>As soon as you release the mouse button, Excel draws two points, one at the base of the arrow (attached to the text box) and another at the arrowhead. At the same time, the contents of the Shape Styles dropdown gallery changes to line styles.</p>
<p>4. Click the More button in the lower-right corner of the Shapes Styles drop-down gallery to display the thumbnails of all its line styles and then mouse over the thumbnails to see how the arrow would look in each.</p>
<p>As you mouse through the different line styles in this gallery, Excel draws the arrow between the two selected points in the text box using the highlighted style.</p>
<p>5. Click the thumbnail of the line style you want the new arrow to use in the Shape Styles gallery.</p>
<p>Excel then draws a new arrow using the selected shape style, which remains selected (with selection handles at the beginning and end of the arrow). You can then edit the arrow as follows:</p>
<ul>
<li>Move the arrow by dragging its outline into position.</li>
<li>Change the length of the arrow by dragging the selection handle at the arrowhead.</li>
<li>Change the direction of the arrow by pivoting the mouse pointer around a stationary selection handle.</li>
<li>Change the shape of the arrowhead or the thickness of the arrow&#8217;s shaft by clicking a thumbnail on the Shape Styles drop-down gallery or clicking a new option on the Shape Fill, Shape Outline, and Shape Effects button on the Format tab of the Drawing Tools contextual tab or by opening the Format Shape dialog box (Ctrl+1) and then selecting the appropriate options on its Fill, Line, Line Style, Shadow, 3-D Format, 3-D Rotation, Picture, and Text Box tabs.</li>
<li>Delete the arrow by pressing the Delete key.</li>
</ul>
<p>&nbsp;</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=n4ZlCgQ8"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=0cm37TIx"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=0cm37TIx" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=gPvPR5YG"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=gPvPR5YG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=HVBIJXnh"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=HVBIJXnh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=j1NBMuns"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/aOaeLNdnmgo" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-28T19:36:18+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-add-an-arrow-to-a-text-box-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-add-an-arrow-to-a-text-box-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>Moving an embedded chart onto its own chart sheet in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/e4fi6jDSk3o/</link>
			<description>Although Excel automatically embeds all new charts on the same worksheet as the data they graph (unless you create using the F11 trick), you may find it easier to customize and work with it if you move the chart to its own chart sheet in the workbook.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/M8UdU0AxmcawaFPQgTZDwn0tg5I/0/da"><img src="http://feedads.g.doubleclick.net/~a/M8UdU0AxmcawaFPQgTZDwn0tg5I/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/M8UdU0AxmcawaFPQgTZDwn0tg5I/1/da"><img src="http://feedads.g.doubleclick.net/~a/M8UdU0AxmcawaFPQgTZDwn0tg5I/1/di" border="0" ismap="true"></img></a></p> <p>Although Excel automatically embeds all new charts on the same worksheet as the data they graph (unless you create using the F11 trick), you may find it easier to customize and work with it if you move the chart to its own chart sheet in the workbook. To move an embedded chart to its own chart sheet in the workbook, follow these steps:</p>
<p>1. Click the Move Chart button on the Design tab under the Chart Tools Contextual tab to open the Move Chart dialog box.</p>
<p>If the Chart Tools Contextual tab doesn&rsquo;t appear at the end of your Ribbon, click anywhere on the new chart to select the chart and make this tab appear.</p>
<p>2. Click the New Sheet option button in the Move Chart dialog box.</p>
<p>3. (Optional) Rename the generic Chart1 sheet name in the accompanying text box by entering a more descriptive name.</p>
<p>4. Click OK to close the Move Chart dialog box and open the new chart sheet with your pivot chart.</p>
<p>If, after customizing the chart on its own sheet, you decide you want the finished chart to appear on the same worksheet as the data it represents, click the Move Chart button on the Design tab again and this time click the Object In option button and then select the name of the worksheet in its associated drop-down list box before you click OK.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=POiPSHqN"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=suKzW65h"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=suKzW65h" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=I8eJ5ewg"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=I8eJ5ewg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=ruu1S9gz"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=ruu1S9gz" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=kktJj5cB"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/e4fi6jDSk3o" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-28T19:31:24+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/moving-an-embedded-chart-onto-its-own-chart-sheet-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/moving-an-embedded-chart-onto-its-own-chart-sheet-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>How to share files on a network in Ubuntu</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/QrLXQpQ3rnI/</link>
			<description>If you opt to share folders across a network under Ubuntu you’ll find they’re protected with your username and password, which you might not want to share with others. The Shared Folders dialog box allows you to setup guest access but, at the time of writing, this had a serious bug that rendered it unusable.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/hqJKNbH16kd-Tb9zTSKONqoLdo4/0/da"><img src="http://feedads.g.doubleclick.net/~a/hqJKNbH16kd-Tb9zTSKONqoLdo4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/hqJKNbH16kd-Tb9zTSKONqoLdo4/1/da"><img src="http://feedads.g.doubleclick.net/~a/hqJKNbH16kd-Tb9zTSKONqoLdo4/1/di" border="0" ismap="true"></img></a></p> <p>If you opt to share folders across a network under Ubuntu you&#8217;ll find they&#8217;re protected with your username and password, which you might not want to share with others. The Shared Folders dialog box allows you to setup guest access but, at the time of writing, this had a serious<br />bug that rendered it unusable.</p>
<p><em>The bug with guest access on shared folders (on an Ubuntu 8.04.1 installation) is that files added to the folder by other users are owned by user &#8220;nobody&#8221;, and the Ubuntu user whose shared folder it is only has read access. To change the ownership and permissions you will need to use admin powers at the command-prompt each time a file is placed there.</em></p>
<p>Below is described a method of securely, painlessly and easily sharing files with colleagues or other computers in your house across the network, regardless of whether they run Ubuntu, Windows or Mac OS X.</p>
<p>It involves creating a dummy guest account solely for the purpose of hosting the shared files and folders. Note that these instructions were written using Ubuntu 8.04.1 Hardy Heron:</p>
<p><strong>1)</strong> Use Synaptic to install the <em>samba</em> and <em>libpam-smbpass</em> packages. These are the background programs that are needed for filesharing and user authentication.</p>
<p><strong>2)</strong> Create a guest account. You&#8217;ll use this for hosting the shared folder(s), and the other computers will use its login details to access the shared folder. To create the account, click System &rarr; Administration &rarr; Users and Groups. Click Unlock and then the Add User button. Give the new user the username guest and give it a simple password in the User Password field that you&#8217;ll be able to share with others. Leave the other text fields as they are. Click the User Privileges tab and check Share Files with the Local Network.</p>
<p><strong>3)</strong> Log out of your account and into your new guest account. Create the folder(s) you want to be used for sharing (it doesn&#8217;t matter where - you might as well create it on the desktop; nor does it matter what name you give it).</p>
<p>Then right-click it and select Sharing Options. Click Share This Folder and type a share name in the relevant text box (you might see error messages while doing this but don&#8217;t worry, it appears the dialog box is a little buggy). Check Allow Other People to Write in This Folder but don&#8217;t check Guest access!</p>
<p>Then click Create Share. You&#8217;ll be prompted to add permissions automatically, so click to do so. Right-click any other folders you wish to share and repeat this step, and then log out and log back into your main user account. Note that there is no need to leave the account logged in - its shared folders are available to everybody even if the account is logged out.</p>
<p><strong>4)</strong> Now you must create a permanent launcher in your regular account for the new shared folder so you can access it in future. Right-click the desktop and select Create Launcher. In the Name field of the dialog that appears, enter some memorable label, like Shared Folder.</p>
<p>In the command field, type <strong>nautilus smb://localhost</strong>. Leave the Comment field empty, and then click OK. Double-click the new launcher and you should see the shared folder(s). Double-click the shared folder and, in the dialog that appears, enter guest in the Username field, and the password you created in the relevant text field. Then check Remember Forever. You should now have access to your shared folder. A useful tip is to hit Ctrl + d to create a Nautilus<br />bookmark. In future you can simply select this bookmark, on the Bookmarks menu, to access the shared folder.</p>
<p><strong>5)</strong> Other computers should now see your shared folder appear in My Network Places, just like any other Windows computer with shared files. They should use the username guest and the password you created earlier. Don&#8217;t click the &#8220;guest access&#8221; option - specify guest as the username.</p>
<p>There should never be any need to directly login to the dummy guest account in future, unless you specifically want to create new shared folders.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=HpcoGssZ"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=NjA7POpH"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=NjA7POpH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=N7pT1Irm"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=N7pT1Irm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=tSKQ1j71"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=tSKQ1j71" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=i16ON2uB"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/QrLXQpQ3rnI" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-27T01:34:48+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-share-files-on-a-network-in-ubuntu/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-share-files-on-a-network-in-ubuntu/</feedburner:origLink></item>
	
		<item>
			<title>How to ensure Ubuntu always knows the current time</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/_k5j3-PnhAs/</link>
			<description>Several of my computers sometimes mysteriously lose minutes when switched off, so that the time they display slowly becomes more and more behind. Luckily I have Ubuntu installed. This can periodically synchronize with the main Ubuntu time server, and thus never let the computers get out of step with the rest of the world.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/_t1LLZhaXVruT5LryoAHXo23MY4/0/da"><img src="http://feedads.g.doubleclick.net/~a/_t1LLZhaXVruT5LryoAHXo23MY4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_t1LLZhaXVruT5LryoAHXo23MY4/1/da"><img src="http://feedads.g.doubleclick.net/~a/_t1LLZhaXVruT5LryoAHXo23MY4/1/di" border="0" ismap="true"></img></a></p> <p>Several of my computers sometimes mysteriously lose minutes when switched off, so that the time they display slowly becomes more and more behind. Luckily I have Ubuntu installed. This can periodically synchronize with the main Ubuntu time server, and thus never let the computers get out of step with the rest of the world.</p>
<p>To set this up, use Synaptic to install the <strong><em>ntp</em></strong> package. Once the package is installed, restart your computer. Configuration is automatic.</p>
<p>If, after rebooting, you find that the time display is still wrong, it&#8217;s likely that you have Ubuntu setup for the wrong time zone. To fix this, rightclick the time/date display at the top right of the Ubuntu desktop and select Adjust date and time. Then click the Unlock button in the window<br />that appears. Then click the Time Zone button, and click the nearest city to you on the map that appears. Once done, click Close. The changes will take effect immediately.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=8QXK19WF"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=WGczNjlV"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=WGczNjlV" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=tLpLyh49"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=tLpLyh49" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=rHho9VM3"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=rHho9VM3" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=vXZmB34y"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/_k5j3-PnhAs" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-27T01:31:02+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-ensure-ubuntu-always-knows-the-current-time/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-ensure-ubuntu-always-knows-the-current-time/</feedburner:origLink></item>
	
		<item>
			<title>Improve the GNOME Terminal look and feel in Ubuntu</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/gVl6ViSk6tE/</link>
			<description>Both the color scheme and font of GNOME Terminal can be tweaked. This can be a good way of improving legibility and also the amount of space GNOME Terminal hogs on-screen, because a smaller font size makes the window smaller too.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/QuyEmPhPBYmKpXoi3_Fggc-DYb4/0/da"><img src="http://feedads.g.doubleclick.net/~a/QuyEmPhPBYmKpXoi3_Fggc-DYb4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/QuyEmPhPBYmKpXoi3_Fggc-DYb4/1/da"><img src="http://feedads.g.doubleclick.net/~a/QuyEmPhPBYmKpXoi3_Fggc-DYb4/1/di" border="0" ismap="true"></img></a></p> <p>Both the color scheme and font of GNOME Terminal can be tweaked. This can be a good way of improving legibility and also the amount of space GNOME Terminal hogs on-screen, because a smaller font size makes the window smaller too.</p>
<p>To change the font click Edit &rarr; Current Profile and remove the check from Use the system fixed width font. Then click the Font dropdown list, and select either a different font, or perhaps just a smaller point size (I find 8pt is best).</p>
<p>Not all fonts are suitable for use in GNOME Terminal - generally speaking, it works best with Courier or Mono-style non-proportional fonts, although a handful of proportional fonts suffice too. For the ultimate in small but still legible fonts, try selecting <em>Bitstream Vera Sans Mono</em> 8pt. Also consider installing the <em>ttf-inconsolata</em> package - this provides a high-quality monospace font for use at small point sizes. Once it&#8217;s installed, close any open GNOME Terminal windows and then follow the instructions above to change font and select the <em>Inconsolata</em> entry in the list.</p>
<p>To change the color scheme, click Edit &rarr; Current Profile and select the Colors tab. Then remove the check from Use colors from system theme and select a replacement from the Built-in schemes dropdown list. For a retro feel, try the Green on Black scheme. The Palette dropdown refers to how items in things like file listings are colored. Generally speaking there&#8217;s no need to change this.</p>
<p>If you want to really save screen space, click Edit &rarr; Current Profile and remove the check from Show menubar by default in new terminals. This will then hide the menus in any new terminal windows you open. To get it back temporarily, right-click on the terminal window and select Show Menubar from the menu.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=mnL04uRv"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=KjQVrRjf"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=KjQVrRjf" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=eQZOw8rU"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=eQZOw8rU" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=Reunbvfd"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=Reunbvfd" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=aVLYKXkh"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/gVl6ViSk6tE" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-27T01:28:15+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/improve-the-gnome-terminal-look-and-feel-in-ubuntu/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/improve-the-gnome-terminal-look-and-feel-in-ubuntu/</feedburner:origLink></item>
	
		<item>
			<title>Moving a pivot chart to its own sheet in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/tglQS8k1G1M/</link>
			<description>Although Excel automatically creates all new pivot charts on the same worksheet as the pivot table, you may find it easier to customize and work with itif you move the chart to its own chart sheet in the workbook.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/vuwTf79gFTHhgLmEjPZ40U7F5zE/0/da"><img src="http://feedads.g.doubleclick.net/~a/vuwTf79gFTHhgLmEjPZ40U7F5zE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vuwTf79gFTHhgLmEjPZ40U7F5zE/1/da"><img src="http://feedads.g.doubleclick.net/~a/vuwTf79gFTHhgLmEjPZ40U7F5zE/1/di" border="0" ismap="true"></img></a></p> <p>Although Excel automatically creates all new pivot charts on the same worksheet as the pivot table, you may find it easier to customize and work with it if you move the chart to its own chart sheet in the workbook.</p>
<p>To move a new pivot chart to its own chart sheet in the workbook, you follow these steps:</p>
<p><strong>1)</strong> Click the Design tab under the Pivot Chart Tools Contextual tab to bring its tools to the Ribbon.<br />If the PivotChart Tools contextual tab doesn&#8217;t appear at the end of your Ribbon, click anywhere on the new pivot chart to make this tab reappear.</p>
<p><strong>2)</strong> Click the Move Chart button, the sole selection in the Location group at the far right of the Design tab. Excel opens a Move Chart dialog box.</p>
<p><strong>3)</strong> Click the New Sheet option button in the Move Chart dialog box.</p>
<p><strong>4)</strong> (Optional) Rename the generic Chart1 sheet name in the accompanying text box by entering a more descriptive name there.</p>
<p><strong>5)</strong> Click OK to close the Move Chart dialog box and open the new chart sheet with your pivot chart.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=hdULbepz"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=jMadpJR0"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=jMadpJR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=6q2Vir7E"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=6q2Vir7E" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=E4YMjmlC"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=E4YMjmlC" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=cLFxiIkd"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/tglQS8k1G1M" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-25T17:31:26+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/moving-a-pivot-chart-to-its-own-sheet-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/moving-a-pivot-chart-to-its-own-sheet-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>How to Generate a Pivot Chart from a Pivot Table in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/0oyCDsSIniA/</link>
			<description>After creating a pivot table, you can create a pivot chart to display its summary values graphically in literally two really simple steps:</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/hxXlAOfd5O3r7sDZjDmJYEz-BNI/0/da"><img src="http://feedads.g.doubleclick.net/~a/hxXlAOfd5O3r7sDZjDmJYEz-BNI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/hxXlAOfd5O3r7sDZjDmJYEz-BNI/1/da"><img src="http://feedads.g.doubleclick.net/~a/hxXlAOfd5O3r7sDZjDmJYEz-BNI/1/di" border="0" ismap="true"></img></a></p> <p>After creating a pivot table, you can create a pivot chart to display its summary values graphically in literally two really simple steps:</p>
<p><strong>1)</strong> Click the Pivot Chart command button in the Tools group on the Options under the Pivot Table Tools Contextual tab to open the Create Chart dialog box.<br />Remember that the Pivot Table Tools contextual tab with its two tabs - Options and Design - automatically appears whenever you click any cell in an existing pivot table.</p>
<p><strong>2)</strong> Click the thumbnail of the type of chart you want to create in the Create Chart dialog box and then click OK.</p>
<p>As soon you click OK after selecting the chart type, Excel displays three things in the same worksheet as the pivot table:</p>
<p><strong>Pivot chart</strong> using the type of chart you selected that you can move and resize as needed (officially known as an embedded chart.</p>
<p><strong>Pivot Chart Filter Pane</strong> containing three drop-down lists - Axis Fields (Categories), Legend Fields (Series), and Report Filter - along with a Values field at the very bottom listing the name of the field whose values are summarized in the chart</p>
<p><strong>Pivot Chart Tools contextual tab</strong> divided into four tabs - Design, Layout, Format, and Analyze - each with its own set of buttons for customizing and refining the pivot chart</p>
<p>&nbsp;</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=ZMC2OB5b"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=ybbi8vGk"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=ybbi8vGk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=tbKc1ukN"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=tbKc1ukN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=5KSMfnys"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=5KSMfnys" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=9Jn5x79o"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/0oyCDsSIniA" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-25T17:27:53+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-generate-a-pivot-chart-from-a-pivot-table-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-generate-a-pivot-chart-from-a-pivot-table-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>How to Modify the Fields in a Pivot Table in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/r6og8G2ndHo/</link>
			<description>To modify the fields used in your pivot table, first you display the Field list by following these steps:</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/zpDFzzhZgnLWa7LCT4tEUVU9VzQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/zpDFzzhZgnLWa7LCT4tEUVU9VzQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zpDFzzhZgnLWa7LCT4tEUVU9VzQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/zpDFzzhZgnLWa7LCT4tEUVU9VzQ/1/di" border="0" ismap="true"></img></a></p> <p>To modify the fields used in your pivot table, first you display the Field list by following these steps:</p>
<p><strong>1)</strong> Click any of the pivot table&#8217;s cells.<br />Excel adds the PivotTable Tools contextual tab with the Options and Design tabs to the Ribbon.</p>
<p><strong>2)</strong> Click the Options tab under the PivotTable Tools Contextual tab to display its buttons on the Ribbon.</p>
<p><strong>3)</strong> Click the Field List button in Show/Hide group.<br />Excel displays the Pivot Table Field List task pane, showing the fields that are currently used in the pivot table as well as to which areas they&rsquo;re currently assigned.</p>
<p>After displaying the Field List task pane, you can make any of the following modifications to the table&#8217;s fields:</p>
<p><strong>To remove a field,</strong> drag its field name out of any of its drop zones (Report Filter, Column Labels, Row Labels, and Values) and, when the mouse pointer changes to an x, release the mouse button or click its check box in the Choose Fields to Add list to remove its check mark.</p>
<p><strong>To move an existing field</strong> to a new place in the table, drag its field name from its current drop zone to a new zone (Report Filter, Column Labels, Row Labels, or Values) at the bottom of the task pane.</p>
<p><strong>To add a field</strong> to the table, drag its field name from the Choose Fields to Add list and drop the field in the desired drop zone (Report Filter, Column Labels, Row Labels, or Values) - note that all you want to do is add a field to the pivot table as an additional Row Labels field, you can also do this by simply clicking the field&rsquo;s check box in Choose Fields to Add list to add a check mark.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=Q17a8FoI"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=SQEAnmbv"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=SQEAnmbv" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=Y0NYFaof"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=Y0NYFaof" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=Gl0akJWe"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=Gl0akJWe" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=HhEyjCeA"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/r6og8G2ndHo" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-25T17:22:41+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-modify-the-fields-in-a-pivot-table/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-modify-the-fields-in-a-pivot-table/</feedburner:origLink></item>
	
		<item>
			<title>How to Produce a Pivot Table in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/qEoVEb3ZuTQ/</link>
			<description>Creating a pivot table has never been as easy as it is in Excel 2007: simply open the worksheet that contains the data list you want summarized by the pivot table, position the cell cursor somewhere in the cells of this list, and then click the Pivot Table command button on the Ribbon’s Insert tab or press Alt+NVT.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/_rjCNWGDB66e13fpYIKVsjBboZ8/0/da"><img src="http://feedads.g.doubleclick.net/~a/_rjCNWGDB66e13fpYIKVsjBboZ8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_rjCNWGDB66e13fpYIKVsjBboZ8/1/da"><img src="http://feedads.g.doubleclick.net/~a/_rjCNWGDB66e13fpYIKVsjBboZ8/1/di" border="0" ismap="true"></img></a></p> <p>Creating a pivot table has never been as easy as it is in Excel 2007: simply open the worksheet that contains the data list you want summarized by the pivot table, position the cell cursor somewhere in the cells of this list, and then click the Pivot Table command button on the Ribbon&#8217;s Insert tab or press Alt+NVT.</p>
<p>Excel then opens the Create Pivot Table dialog box, while at the same time selecting all the data in the list containing the cell cursor indicated by a marquee around the cell range. You can then adjust the cell range in the Table/Range text box under the Select a Table or Range option button, if the marquee does not include all the data to be summarized in the pivot table.</p>
<p>By default, Excel builds the new pivot table on a new worksheet it adds to the workbook. If, however, you want the pivot table to appear on the same worksheet, click the Existing Worksheet option button and then indicate the location of the first cell of the new table in the Location text box. (Just be sure that this new pivot table isn&rsquo;t going to overlap any existing tables of data).</p>
<p>If the data source for your pivot table is an external database table created with a separate database management program such as Access, you need to click the Use an External Data Source option button, then click the Choose Connection button and then click the name of the connection in the Existing Connections dialog box.</p>
<p>After you indicate the source and location for the new pivot table in the Create Pivot Table dialog box and click its OK button, the program adds a blank grid for the new table and displays a Pivot Table Field List task pane on the right side of the Worksheet area. This Field List task pane<br />is divided into two areas: the Choose Fields to Add to Report list box with the names of all the fields in the data list you selected as the source of the table preceded by an empty check box at the top and an area divided into four drop zones (Report Filter, Column Labels, Row Labels, and Values) at the bottom.</p>
<p>To complete the new pivot table, all you have to do is assign the fields in the Pivot Table Field List task pane to the various parts of the table. You do this by dragging a field name from the Choose Fields to Add to Report list box and dropping it in one of the four areas below called drop zones:</p>
<p><strong>Report Filter</strong><br />This area contains the fields that enable you to page through the data summaries shown in the actual pivot table by filtering out sets of data - they act as the filters for the report. So, for example, if you designate the Year Field from a data list as a Report Filter, you can display data summaries in the pivot table for individual years or for all years represented in the data list.</p>
<p><strong>Column Labels</strong><br />This area contains the fields that determine the arrangement of data shown in the columns of the pivot table.</p>
<p><strong>RowLabels</strong><br />This area contains the fields that determine the arrangement of data shown in the rows of the pivot table.</p>
<p><strong>Values</strong><br />This area contains the fields that determine which data are presented in the cells of the pivot table - they are the values that are summarized in its last column (totaled by default).</p>
<p>As soon as you create a new pivot table (or select the cell of an existing table in a worksheet), Excel selects Options tab of the Pivot Table Tools contextual tab that it automatically adds to the Ribbon. Among the many groups on this tab, you find the Show/Hide group that contains the<br />following useful command buttons:</p>
<p><strong>Field List</strong> to hide and redisplay the Pivot Table Field List task pane on the right side of the Worksheet area</p>
<p><strong>+/- Buttons</strong> to hide and redisplay the expand (+) and collapse (-) buttons in front of particular Column Fields or Row Fields that enable you to temporarily remove and then redisplay their particular summarized values in the pivot table</p>
<p><strong>Field Headers</strong> to hide and redisplay the fields assigned to the Column Labels and Row Labels in the pivot table.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=5qGWqzKj"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=XaGvDX6L"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=XaGvDX6L" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=F47rbkEC"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=F47rbkEC" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=F9t3m2Fl"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=F9t3m2Fl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=n7RJGIvL"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/qEoVEb3ZuTQ" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-25T17:15:34+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-produce-a-pivot-table-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-produce-a-pivot-table-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>Move or Copy Excel Sheets to other Workbooks in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/q7FsbhUtLn0/</link>
			<description>In some situations, you need to move a particular worksheet or copy it from one workbook to another.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/Tln6On31kb4eYryQw428maW4ngM/0/da"><img src="http://feedads.g.doubleclick.net/~a/Tln6On31kb4eYryQw428maW4ngM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Tln6On31kb4eYryQw428maW4ngM/1/da"><img src="http://feedads.g.doubleclick.net/~a/Tln6On31kb4eYryQw428maW4ngM/1/di" border="0" ismap="true"></img></a></p> <p>In some situations, you need to move a particular worksheet or copy it from one workbook to another. To move or copy worksheets between workbooks, follow these steps:</p>
<p><strong>1)</strong> Open both the workbook with the worksheet(s) that you want to move or copy and the workbook that is to contain the moved or copied worksheet(s).<br />Click Office Button &rarr; Open or press Ctrl+O to open both the workbooks.</p>
<p><strong>2)</strong> Select the workbook that contains the worksheet(s) that you want to move or copy.<br />To select the workbook with the sheet(s) to be moved or copied, click its button on the Windows Vista or XP taskbar.</p>
<p><strong>3)</strong> Select the worksheet(s) that you want to move or copy.<br />To select a single worksheet, click its sheet tab. To select a group of neighboring sheets, click the first tab and then hold down Shift while you click the last tab. To select various nonadjacent sheets, click the first tab and then hold down Ctrl while you click each of the other sheet tabs.</p>
<p><strong>4)</strong> Right-click its sheet tab and then click Move or Copy on its shortcut menu.<br />Excel opens up the Move or Copy dialog box in which you indicate whether you want to move or copy the selected sheet(s) and where to move or copy them.</p>
<p><strong>5)</strong> In the To Book drop-down list box, select the name of the workbook to which you want to copy or move the worksheets.<br />If you want to move or copy the selected worksheet(s) to a new workbook rather than to an existing one that you have open, select the (new book) option that appears at the very top of the To Book pop-up list</p>
<p><strong>6)</strong> In the Before Sheet list box, select the name of the sheet that the worksheet(s) you&#8217;re about to move or copy should precede. If you want the sheet(s) that you&rsquo;re moving or copying to appear at the end of the workbook, choose the (move to end) option.</p>
<p><strong>7)</strong> Select the Create a Copy check box to copy the selected worksheet(s) to the designated workbook (rather than move them)</p>
<p><strong>8)</strong> Click OK or press Enter to complete the move or copy operation.</p>
<h2>Drag and Drop method<br /></h2>
<p>If you prefer a more direct approach, you can move or copy sheets between open workbooks by dragging their sheet tabs from one workbook window to another. Note that this method works with a bunch of sheets as well as with a single sheet; just be sure that you select all their sheet tabs before you begin the drag-and-drop procedure.</p>
<p>To drag a worksheet from one workbook to another, you must open both workbooks. Click the Arrange All command button on the View tab or press Alt+WA and then select an arrangement (such as Horizontal or Vertical to put the workbook windows either on top of each other or side by side). Before you close the Arrange Windows dialog box, be sure that the Windows of Active Workbook check box is not selected, that is, does not contain a check mark.</p>
<p>After arranging the workbook windows, drag the worksheet tab from one workbook to another. If you want to copy rather than move the worksheet, hold down the Ctrl key while you drag the sheet icon(s).</p>
<p>To locate the worksheet in the new workbook, position the downward-pointing triangle that moves with the sheet icon in front of the worksheet tab where you want to insert it; then release the mouse button.</p>
<p>This drag-and-drop operation is one of those that you can&#8217;t reverse by using Excel&#8217;s Undo feature. This means that if you drop the sheet in the wrong workbook, you&#8217;ll have to go get the wayward sheet yourself and drag it back and drop it into the place where it once belonged!</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=aMfWpGbn"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=5MEByxSW"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=5MEByxSW" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=XrU8sp4Z"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=XrU8sp4Z" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=sJut1NDl"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=sJut1NDl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=e5TDSxVM"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/q7FsbhUtLn0" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-25T16:44:59+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/move-or-copy-excel-sheets-to-other-workbooks-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/move-or-copy-excel-sheets-to-other-workbooks-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>How to Slow down a touchpad scrolling in Ubuntu</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/BIgW8i-cq2M/</link>
			<description>If you’ve got a notebook computer, you might be used to edge scroll on the touchpad when running Windows. This is where the right-hand edge of the notebook’s touchpad is used as a virtual scrollbar - by running a finger up and down, the currently active window scrolls up and down correspondingly.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/s073Jx9DJRrJouEsp6dQEgxYoK8/0/da"><img src="http://feedads.g.doubleclick.net/~a/s073Jx9DJRrJouEsp6dQEgxYoK8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/s073Jx9DJRrJouEsp6dQEgxYoK8/1/da"><img src="http://feedads.g.doubleclick.net/~a/s073Jx9DJRrJouEsp6dQEgxYoK8/1/di" border="0" ismap="true"></img></a></p> <p>If you&#8217;ve got a notebook computer, you might be used to edge scroll on the touchpad when running Windows. This is where the right-hand edge of the notebook&#8217;s touchpad is used as a virtual scrollbar - by running a finger up and down, the currently active window scrolls up and down correspondingly.</p>
<p>You might already have realized that you can activate the edge scroll functionality in Ubuntu using the <em><strong>Touchpad</strong></em> tab of System &rarr; Preferences &rarr; Mouse.</p>
<p>The problem I had was that the scrolling was just too fast. A light touch on the pad caused the webpage or file listing to fly up or down the screen.</p>
<p>The solution was to add a line to the xorg.conf configuration file, as follows:</p>
<p><strong>1)</strong> Open the Xorg configuration file into Gedit:</p>
<p class="code">$ gksu gedit /etc/X11/xorg.conf</p>
<p><strong>2)</strong> Look for the two lines that read:</p>
<p class="code">Section &#8220;InputDevice&#8221;<br />Driver &#8220;synaptics&#8221;</p>
<p>Then, beneath all the lines that begin Option, add a new line as follows:</p>
<p class="code">Option &#8220;VertScrollDelta&#8221; &#8220;50&#8221;</p>
<p>You can align the words with the other entries in the list if you want, although this doesn&#8217;t matter.</p>
<p><strong>3)</strong> Save the file, close any open programs, and hit Ctrl + Alt + Backspace to restart the X server. Login again as usual and the changes should be instantly visible.</p>
<p>If the scrolling is now too slow, try changing the value of &#8220;VertScrollData&#8221; to 25, or perhaps even less - the lower the value, the more sensitive the edge scroll becomes.</p>
<p>To make Firefox scroll fewer lines as you drag and scroll, start Firefox and type about:config into the URL bar. Agree to carry on despite the warning about voiding a possibly warranty.</p>
<p>Then, in the search bar, type</p>
<p class="code">mousewheel.withnokey.sysnumlines.</p>
<p>In the list of results, double-click the entry so that it reads false, and turns bold. This try the new scroll speed by opening a new tab and browsing to a website.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=mCjkcGtt"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=krWnDXcQ"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=krWnDXcQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=MHFvLC32"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=MHFvLC32" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=I3QxQP4b"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=I3QxQP4b" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=4WHD88ae"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/BIgW8i-cq2M" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-23T19:14:55+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-slow-down-a-touchpad-scrolling-in-ubuntu/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-slow-down-a-touchpad-scrolling-in-ubuntu/</feedburner:origLink></item>
	
		<item>
			<title>Make fonts look better in Ubuntu</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/aOvCXq9rT04/</link>
			<description>Most fonts contain within them “hints” laid down by their designer about how they should look on-screen. However, Ubuntu ignores them and uses a system called autohinting, which improvises the hints based on the shape of the letters.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/w5qAeNMEKINO20cglBZkkxkTah4/0/da"><img src="http://feedads.g.doubleclick.net/~a/w5qAeNMEKINO20cglBZkkxkTah4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/w5qAeNMEKINO20cglBZkkxkTah4/1/da"><img src="http://feedads.g.doubleclick.net/~a/w5qAeNMEKINO20cglBZkkxkTah4/1/di" border="0" ismap="true"></img></a></p> <p>Most fonts contain within them &#8220;hints&#8221; laid down by their designer about how they should look on-screen. However, Ubuntu ignores them and uses a system called <em><strong>autohinting</strong></em>, which improvises the hints based on the shape of the letters.</p>
<p>It works well, and Ubuntu&#8217;s fonts look far from ugly, but you might also want to try bytecode hinting. This uses the hinting built into the fonts and is said to work particularly well with Microsoft fonts.</p>
<p>To activate bytecode hinting, open a terminal window and type the following:</p>
<p class="code">$ sudo dpkg-reconfigure fontconfig-config</p>
<p>Using the cursor keys, select <em><strong>Native</strong></em> from the menu and then hit Enter. On the next screen you&#8217;ll be asked if you want to activate subpixel rendering. This is good for TFT screens, so make the choice (or just select Automatic).</p>
<p>Next you&#8217;ll be asked if you want to activate bitmap fonts, which are non-true type fonts good for use at low point levels. There&#8217;s no harm in using them, so select yes.</p>
<p>The program will quit when it&#8217;s finished. Once that&#8217;s happened, type the following to write the changes to the system and update files:</p>
<p class="code">$ sudo dpkg-reconfigure fontconfig<br />$ sudo dpkg-reconfigure defoma</p>
<p>Click System &rarr; Quit &rarr; Logout, and then log back in again. The difference should be noticeable immediately. Letters will appear more rounded and the antialiasing will appear better.</p>
<p>Bytecode hinting isn&#8217;t to everybody&rsquo;&#8217; taste. If you don&#8217;t like it, just repeat the steps and enable autohinting again.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=qNtlWXvG"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=YUpgcFhB"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=YUpgcFhB" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=mFMkom7H"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=mFMkom7H" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=qwBtJACz"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=qwBtJACz" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=iUouLU2j"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/aOvCXq9rT04" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-23T19:09:32+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/make-fonts-look-better-in-ubuntu/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/make-fonts-look-better-in-ubuntu/</feedburner:origLink></item>
	
		<item>
			<title>Create links that automatically install software in Ubuntu</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/wehm7dlHP_A/</link>
			<description>Sometimes if you’re trying to help somebody fix a problem you’ll have to tell them how to install software. Yet for some Ubuntu newbies even this can be confusing. The solution is to create a “software install” hyperlink within a web page (such as a forum posting), new email window or Pidgin message window.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/hu0v8-qWfLpZfvIzonfjsJ-4xHk/0/da"><img src="http://feedads.g.doubleclick.net/~a/hu0v8-qWfLpZfvIzonfjsJ-4xHk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/hu0v8-qWfLpZfvIzonfjsJ-4xHk/1/da"><img src="http://feedads.g.doubleclick.net/~a/hu0v8-qWfLpZfvIzonfjsJ-4xHk/1/di" border="0" ismap="true"></img></a></p> <p>Sometimes if you&#8217;re trying to help somebody fix a problem you&#8217;ll have to tell them how to install software. Yet for some Ubuntu newbies even this can be confusing. The solution is to create a &#8220;software install&#8221; hyperlink within a web page (such as a forum posting), new email window or Pidgin message window.</p>
<p>To do this, simply click the &#8220;create link&#8221; button on the webpage or within the email (the precise name of this will vary depending on the software/website used) and then type <em><strong>apt:packagename</strong> </em>in the URL field, replacing <em>packagename</em> with the precise name of the package as listed in Synaptic.</p>
<p>For example, let&#8217;s say you want to tell somebody how to install the <em>thunar package</em>, as. If you&#8217;ve creating an email with the instructions, ensure the new mail uses HTML (ensure HTML is checked on the Format menu) and then click Insert &gt; Link.</p>
<p>In the URL field, delete what&#8217;s there and type <em><strong>apt:thunar</strong></em>. Don&#8217;t worry about the Description field - leave it with the default contents that will probably mirror what&#8217;s in the URL field. Then click the Close.</p>
<p>Note that there&#8217;s a slight bug in Evolution that means, for some reason, the hyperlink won&#8217;t actually appear as a link until you type some more into the new mail window, or click the Send button.</p>
<p>Perhaps it goes without saying that should you ever receive such a link in an email, or see one on a website, you should be very wary (especially if there are also additional instructions telling you to add a new software repository).</p>
<p>It would be very easy to disguise a malicious link as something seemingly benign, although you will always be prompted to confirm the choice of software before installation.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=8ii12Pc5"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=5cyuY1u0"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=5cyuY1u0" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=QNRRxFou"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=QNRRxFou" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=UgUV5IDf"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=UgUV5IDf" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=8YkPcKKS"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/wehm7dlHP_A" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-23T18:55:12+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/create-links-that-automatically-install-software-in-ubuntu/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/create-links-that-automatically-install-software-in-ubuntu/</feedburner:origLink></item>
	
		<item>
			<title>How to Rename Sheets in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/HDlhS-UfjHE/</link>
			<description>The sheet names that Excel comes up with for the tabs in a workbook (Sheet1 through Sheet3) are, to put it mildly, not very original - and are certainly not descriptive of their function in life!</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/i-erGI0OTfw610fWQ1FPBm5t-6Q/0/da"><img src="http://feedads.g.doubleclick.net/~a/i-erGI0OTfw610fWQ1FPBm5t-6Q/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/i-erGI0OTfw610fWQ1FPBm5t-6Q/1/da"><img src="http://feedads.g.doubleclick.net/~a/i-erGI0OTfw610fWQ1FPBm5t-6Q/1/di" border="0" ismap="true"></img></a></p> <p>The sheet names that Excel comes up with for the tabs in a workbook (Sheet1 through Sheet3) are, to put it mildly, not very original - and are certainly not descriptive of their function in life!</p>
<p>Luckily, you can easily rename a worksheet tab to whatever helps you remember what you put on the worksheet (provided that this descriptive name is no longer than 31 characters).</p>
<p>To rename a worksheet tab, just follow these steps:</p>
<p><strong>1)</strong> Double-click the sheet tab or right-click the sheet tab and then click Rename on its shortcut menu. The current name on the sheet tab appears selected.</p>
<p><strong>2</strong>) Replace the current name on the sheet tab by typing in the new sheet name.</p>
<p><strong>3)</strong> Press Enter. Excel displays the new sheet name on its tab at the bottom of the workbook<br />window.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=QSPfAkQs"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=hRSiDtvl"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=hRSiDtvl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=uFogGcgW"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=uFogGcgW" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=KoG8I7U6"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=KoG8I7U6" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=agmaQfw5"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/HDlhS-UfjHE" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-21T17:51:28+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-rename-sheets-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-rename-sheets-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>How to Lock Entire Workbooks in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/Nhj3ABnnVbk/</link>
			<description>Locking workbooks in Excel is a great way to prevent yourself of breaking the whole thing when you are not suppose to touch it. Protect yourself from such actions by locking the whole thing.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/xNpyIiZKEOjYLU7QsQJXDx0NuZ8/0/da"><img src="http://feedads.g.doubleclick.net/~a/xNpyIiZKEOjYLU7QsQJXDx0NuZ8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/xNpyIiZKEOjYLU7QsQJXDx0NuZ8/1/da"><img src="http://feedads.g.doubleclick.net/~a/xNpyIiZKEOjYLU7QsQJXDx0NuZ8/1/di" border="0" ismap="true"></img></a></p> <p>Locking workbooks in Excel is a great way to prevent yourself of breaking the whole thing when you are not suppose to touch it. Protect yourself from such actions by locking the whole thing.</p>
<p><strong>1)</strong> Click the Protect Workbook command button in the Changes group on the Ribbon&rsquo;&#8217; Review tab and then click Protect Structure and Windows option on its drop-down menu or press Alt+RPWW.</p>
<p>Excel opens the Protect Structure and Windows dialog box, where the Structure check box is selected and the Windows check box is not selected. With the Structure check box selected, Excel won&#8217;t let you mess around with the sheets in the workbook (by deleting them or rearranging them). If you want to protect any windows that you set up, you need to select the Windows check box as well.</p>
<p><strong>2) </strong>To assign a password that must be supplied before you can remove the protection from the worksheet, type the password in the Password (optional) text box.</p>
<p><strong>3)</strong> Click OK or press Enter.</p>
<p>If you type a password in the Password (optional) text box, Excel opens the Confirm Password dialog box. Re-enter the password in the Reenter Password to Proceed text box exactly as you type it into the Password (optional) text box in the Protect Sheet dialog box, and then click OK or press Enter.</p>
<p>Selecting the Protect Sheet command makes it impossible to make further changes to the contents of any of the locked cells in that worksheet except for those options that you specifically exempt in the Allow All Users of This Worksheet To list box. Selecting the Protect Workbook command makes it impossible to make further changes to the layout of the worksheets in that workbook.</p>
<p>Excel displays an alert dialog box with the following message when you try to edit or replace an entry in a locked cell:</p>
<p class="code">The cell or chart you are trying to change is protected and therefore read-only.<br />To modify a protected cell or chart, first remove protection using the Unprotect Sheet command (Review tab, Changes group). You may be prompted for a password.</p>
<p>Usually, your intention in protecting a worksheet or an entire workbook is not to prevent all changes but to prevent changes in certain areas of the worksheet. For example, in a budget worksheet, you may want to protect all the cells that contain headings and formulas but allow changes in all the cells where you enter the budgeted amounts. That way, you can&#8217;t inadvertently wipe out a title or formula in the worksheet simply by entering a value in the<br />wrong column or row (not an uncommon occurrence).</p>
<p>To leave certain cells unlocked so that you can still change them after protecting the worksheet or workbook, select all the cells as the cell selection, open the Format Cells dialog box (Ctrl+1), and then click the Locked check box on the Protection tab to remove its check mark. Then, after unlocking the cells you still want to be able to change, protect the worksheet as described earlier.</p>
<p>To remove protection from the current worksheet or workbook document so that you can again make changes to its cells (whether locked or unlocked), click the Unprotect Sheet or the Unprotect Workbook command button in the Changes group on the Ribbon&rsquo;s Review tab (or press Alt+RPS and Alt+RPWW, respectively). If you assign a password when protecting the worksheet or workbook, you must then reproduce the password exactly as you assign it (including any case differences) in the Password text box of the Unprotect Sheet or Unprotect Workbook dialog box.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=vilDqYpB"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=BLyEmQoZ"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=BLyEmQoZ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=yZJVLPIq"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=yZJVLPIq" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=2mhzKb4R"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=2mhzKb4R" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=3WgqczO5"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/Nhj3ABnnVbk" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-20T17:29:39+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-lock-entire-workbooks-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-lock-entire-workbooks-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>Protect an Excel Sheet by Locking the Entire Sheet in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/9ud5ewAOn8c/</link>
			<description>After you more or less finalize a worksheet by checking out its formulas and proofing its text, you often want to guard against any unplanned changes byprotecting the document.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/Neow1lGcIeXOK1QZiTeZuqEFLek/0/da"><img src="http://feedads.g.doubleclick.net/~a/Neow1lGcIeXOK1QZiTeZuqEFLek/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Neow1lGcIeXOK1QZiTeZuqEFLek/1/da"><img src="http://feedads.g.doubleclick.net/~a/Neow1lGcIeXOK1QZiTeZuqEFLek/1/di" border="0" ismap="true"></img></a></p> <p>After you more or less finalize a worksheet by checking out its formulas and proofing its text, you often want to guard against any unplanned changes by protecting the document.</p>
<p>Each cell in the worksheet can be locked or unlocked. By default, Excel locks all the cells in a worksheet so that, when you follow these steps, Excel locks the whole thing up tighter than a drum.</p>
<p><strong>1)</strong> Click the Protect Sheet command button in the Changes group on the Ribbon&#8217;s Review tab or press Alt+RPS.</p>
<p>Excel opens the Protect Sheet dialog box in which you select the check box options you want to be available when the protection is turned on in the worksheet. By default, Excel selects the Protect Worksheet and Contents of Locked Cells check box at the top of the Protect Sheet dialog box. In addition, the program selects both the Select Locked Cells and Select Unlocked Cells check boxes in the Allow All Users of This Worksheet To list box below.</p>
<p><strong>2)</strong> (Optional) Click any of the check box options in the Allow All Users of This Worksheet To list box (such as Format Cells or Insert Columns) that you still want to be functional when the worksheet protection is operational.</p>
<p><strong>3)</strong> If you want to assign a password that must be supplied before you can remove the protection from the worksheet, type the password in the Password to Unprotect Sheet text box.</p>
<p><strong>4)</strong> Click OK or press Enter.<br />If you type a password in the Password to Unprotect Sheet text box, Excel opens the Confirm Password dialog box. Re-enter the password in the Reenter Password to Proceed text box exactly as you type it in the Password to Unprotect Sheet text box in the Protect Sheet dialog box and then click OK or press Enter.</p>
<p>To leave certain cells unlocked so that you can still change them after protecting the worksheet or workbook, select all the cells as the cell selection, open the Format Cells dialog box (Ctrl+1), and then click the Locked check box on the Protection tab to remove its check mark. Then, after unlocking the cells you still want to be able to change, protect the worksheet as described earlier.</p>
<p>To remove protection from the current worksheet or workbook document so that you can again make changes to its cells (whether locked or unlocked), click the Unprotect Sheet or the Unprotect Workbook command button in the Changes group on the Ribbon&rsquo;s Review tab (or press Alt+RPS and Alt+RPWW, respectively). If you assign a password when protecting the worksheet or workbook, you must then reproduce the password exactly as you assign it (including any case differences) in the Password text box of the UnprotectSheet or Unprotect Workbook dialog box.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=eldDOi21"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=erb6Z5nv"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=erb6Z5nv" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=aFr7FWtU"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=aFr7FWtU" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=kIqpR2bL"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=kIqpR2bL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=RGNL86zs"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/9ud5ewAOn8c" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-20T17:10:52+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/protect-an-excel-sheet-by-locking-the-entire-sheet-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/protect-an-excel-sheet-by-locking-the-entire-sheet-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>Naming constants in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/pQPSA4x1EyQ/</link>
			<description>Certain formulas use constant values, such as a 7.5% tax rate or a 10% discount rate. If you don’t want to have to enter these constants into a cell of the worksheet in order to use the formulas, you create range names that hold their values and then use their range names in the formulas you create.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/Kdr5c6IqLZw0jSjfQjk7-CNdfr4/0/da"><img src="http://feedads.g.doubleclick.net/~a/Kdr5c6IqLZw0jSjfQjk7-CNdfr4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Kdr5c6IqLZw0jSjfQjk7-CNdfr4/1/da"><img src="http://feedads.g.doubleclick.net/~a/Kdr5c6IqLZw0jSjfQjk7-CNdfr4/1/di" border="0" ismap="true"></img></a></p> <p>Certain formulas use constant values, such as a 7.5% tax rate or a 10% discount rate. If you don&#8217;t want to have to enter these constants into a cell of the worksheet in order to use the formulas, you create range names that hold their values and then use their range names in the formulas you create.</p>
<p>For example, to create a constant called tax_rate of 7.5%, you follow these steps:</p>
<p>1) Click the Define Name button on the Ribbon&rsquo;s Formulas tab or press Alt+MMD to open the New Name dialog box.</p>
<p>2) In the New Name dialog box, type the range name (tax_rate in this example) into the Name text box.<br />Be sure to adhere to the cell range naming conventions when entering this new name.</p>
<p>3) (Optional) To have the range name defined for just the active worksheet instead of the entire workbook, click the name of the sheet on the Scope drop-down list.<br />Normally, you&#8217;re safer sticking with the default selection of Workbook in the Scope option so that you can use your constant in a formula on any of its sheets. Only change the scope to a particular worksheet when you&#8217;re sure that you&rsquo;ll use it only in formulas on that worksheet.</p>
<p>4) Click in the Refers To text box after the equal to sign (=) and replace (enter) the current cell address with the constant value (7.5% in this example) or a formula that calculates the constant.</p>
<p>5) Click OK to close the New Name dialog box.</p>
<p>After you assign a constant to a range name by using this method, you can apply it to the formulas that you create in the worksheet in one of two ways:</p>
<ol>
<li>Type the range name to which you assign the constant at the place in the formula where its value is required.</li>
<li>Click the Use in Formula command button on the Formulas tab (or press Alt+MS) and then click the constant&rsquo;s range name on the drop-down menu that appears.</li>
</ol>
<p>When you copy a formula that uses a range name containing a constant, its values remain unchanged in all copies of the formula that you create with the Fill handle. (In other words, range names in formulas act like absolute cell addresses in copied formulas)</p>
<p>Also, note that when you update the constant by changing its value in the Edit Name dialog box - opened by clicking the range name in the Name Manager dialog box (Alt+MN) and then clicking its Edit button - all of the formulas that use that constant (by referring to the range name) are automatically updated (recalculated) to reflect this change.</p>
<p>&nbsp;</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=nZ9BK5ga"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=phxV3nca"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=phxV3nca" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=10813Qop"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=10813Qop" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=FpmMBrnZ"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=FpmMBrnZ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=jJwWeUhL"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/pQPSA4x1EyQ" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-20T17:03:37+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/naming-constants-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/naming-constants-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>How to create a Table of Contents in Word 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/jjXQVCN4nhs/</link>
			<description>When you create very long documents in Word like theses, annual reports, or even books .You may need to provide a table of contents. Your readers will be glad you did. What’s more, if you did a good job of creating headers and subheads, then most of the hard work is done.</description>
			<dc:subject>Office, Word</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/w_zSVhc7Svy55mrDFqVdeH9d8x0/0/da"><img src="http://feedads.g.doubleclick.net/~a/w_zSVhc7Svy55mrDFqVdeH9d8x0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/w_zSVhc7Svy55mrDFqVdeH9d8x0/1/da"><img src="http://feedads.g.doubleclick.net/~a/w_zSVhc7Svy55mrDFqVdeH9d8x0/1/di" border="0" ismap="true"></img></a></p> <p>When you create very long documents in Word like theses, annual reports, or even books .You may need to provide a table of contents. Your readers will be glad you did. What&#8217;s more, if you did a good job of creating headers and subheads, then most of the hard work is done.</p>
<p>Word generates the table of contents automatically from your headers, looks up the page numbers for each heading, and formats the whole table for you. All you have to do is tell Word where you want to place the table of contents, and then choose a predesigned format that compliments your documentall of which you do in the Table of Contents group on the References tab, or in the Table of Contents dialog box.</p>
<p>Here&#8217;s how to insert a table of contents into your document:</p>
<p><strong>1)</strong> Place the insertion point where you want to put the table of contents.</p>
<p>The traditional spot for a table of contents is right after the title and before the main part of the text. It&#8217;s best to put the insertion point on an empty line, so the table doesn&#8217;t interfere with any other text. If you agree, click after the title, and then press Enter.</p>
<p><strong>2)</strong> Choose References  Table of Contents, and then choose one of the Automatic table styles from the drop-down menu.</p>
<p>The Table of Contents menu gives you a few choices. You can choose from two: <em>Automatic tables Contents</em> and <em>Table of Contents</em>. Or you can choose to create your table of contents manually. If you used custom headings in your document (instead of Word&#8217;s standard Heading 1, Heading 2), you must create it manually.</p>
<p>When you click the style of your choice, Word automatically creates a table of contents and inserts the results in your document. To create the table, Word takes paragraphs you&#8217;ve formatted with heading styles, such as Heading 1, Heading 2, and Heading 3.</p>
<p><strong>3)</strong> Review the table of contents.</p>
<p>Don&#8217;t forget to inspect the table of contents that Word created. You never know when something unexpected may happen. Maybe you forgot to format a heading with a Heading style, and it doesn&#8217;t show up in the table. Or worse, some paragraph is mistakenly tagged with a heading styleoops, it&#8217;s in your table of contents.</p>
<p><strong>Tip:</strong> If you&#8217;d like to reword the entries in your table of contents. Shorten overly long headings, or add some descriptive text, for example you can edit the contents directly, like any Word text. The headings in your document aren&#8217;t affected. Remember, though, that if you update the table of contents, be sure to update only the page numbers, not the entire table. Otherwise, you&#8217;ll lose any hand-entered changes.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=o3rRmVmu"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=I1yt1ygT"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=I1yt1ygT" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=YIUd2LfJ"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=YIUd2LfJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=IzG2NDqS"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=IzG2NDqS" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=cFcsq1vX"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/jjXQVCN4nhs" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-17T04:15:28+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/how-to-create-a-table-of-contents-in-word-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/how-to-create-a-table-of-contents-in-word-2007/</feedburner:origLink></item>
	
		<item>
			<title>Add a swap file or expand existing swap space in Ubuntu</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/0LwX0-DRPg0/</link>
			<description>It’s a myth to say that Ubuntu (or any Linux) needs a swap partition. This is certainly the preferred way of working, and is most efficient, but Linux can also use a single swap file located in the root partition, just like Windows or Mac OS X.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/gXBypbU-sRi6b_tMz9euTHJH2KA/0/da"><img src="http://feedads.g.doubleclick.net/~a/gXBypbU-sRi6b_tMz9euTHJH2KA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/gXBypbU-sRi6b_tMz9euTHJH2KA/1/da"><img src="http://feedads.g.doubleclick.net/~a/gXBypbU-sRi6b_tMz9euTHJH2KA/1/di" border="0" ismap="true"></img></a></p> <p>It&#8217;s a myth to say that Ubuntu (or any Linux) needs a swap partition. This is certainly the preferred way of working, and is most efficient, but Linux can also use a single swap file located in the root partition, just like Windows or Mac OS X.</p>
<p>There are times when this is advantageous, such as if you&#8217;re only able to create one partition for Ubuntu (for example, Apple&#8217;s BootCamp software only allows the creation of a single non-Mac partition when dual-booting).</p>
<p>To create a swap file, you need to first create a dummy file of sufficient size, then format it as a swap file, and finally ensure that Ubuntu uses it at boot-up. The following steps do just that (be extremely careful entering these commands):</p>
<p><strong>1)</strong> Open a terminal window and create an empty file in the root of the file system using the dd command, as follows (this creates a 1GB file&mdash;you should ideally adjust the count= figure to at least match the size of your memory, bearing in mind that there is 1,024MB in a 1GB):</p>
<p class="code">$ sudo dd if=/dev/zero of=/swapfile bs=1M count=1024</p>
<p><strong>2)</strong> Now we need to format it as a swap file:</p>
<p class="code">$ sudo mkswap /swapfile</p>
<p><strong>3)</strong> The final step is to make Ubuntu mount it at boot, which is done by editing /etc/fstab:</p>
<p class="code">$ gksu gedit /etc/fstab</p>
<p>Then make a new line at the bottom of the file and add the following:</p>
<p class="code">/swapfile none swap sw 0 0</p>
<p>You can align the entries on the line under the column headings in fstab, like the other entries in the file, but it doesn&#8217;t matter so long as there is at least one space between each entry on the line. Once done, save the file and reboot your computer.</p>
<p>Once the computer has rebooted, you can test to see if the swapfile is being utilized by typing cat /proc/meminfo|grep Swap.</p>
<p>The steps above can also be used to add more swap space to a system that has an existing swap partition. You might want to do this if you&#8217;re editing extremely high-resolution photographs, for example, or working with large video files.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=xavdf4qJ"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=nWd6Cq8q"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=nWd6Cq8q" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=2u3EhZMf"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=2u3EhZMf" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=GzHfd5Xz"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=GzHfd5Xz" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=7Gfb5Pzv"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/0LwX0-DRPg0" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-16T23:00:53+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/add-a-swap-file-or-expand-existing-swap-space-in-ubuntu/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/add-a-swap-file-or-expand-existing-swap-space-in-ubuntu/</feedburner:origLink></item>
	
		<item>
			<title>Add RAR file compression support to Ubuntu</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/Zt0LzCik-l0/</link>
			<description>While Zip is the main compression file format used on most desktop computers, some people prefer to use the RAR format.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/2mAMv8QNkYa-tGu2IZj9wgKa9I4/0/da"><img src="http://feedads.g.doubleclick.net/~a/2mAMv8QNkYa-tGu2IZj9wgKa9I4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/2mAMv8QNkYa-tGu2IZj9wgKa9I4/1/da"><img src="http://feedads.g.doubleclick.net/~a/2mAMv8QNkYa-tGu2IZj9wgKa9I4/1/di" border="0" ismap="true"></img></a></p> <p>While Zip is the main compression file format used on most desktop computers, some people prefer to use the RAR format.</p>
<p>To install support for extracting files from a RAR archive, use Synaptic to search for and install unrar.</p>
<p>Following this, File Roller - Ubuntu&#8217;s default archive manager - will be able to extract files from RAR archives. You can also use the command from the prompt by simply typing</p>
<p class="code">unrar e filename.rar</p>
<p>Replacing filename.rar with that which you downloaded. Note that unrar doesn&#8217;t require a dash before the e command option.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=zVrqBRNz"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=96OWw4Fz"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=96OWw4Fz" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=HBu8G3ky"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=HBu8G3ky" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=iQSDrFRQ"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=iQSDrFRQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=6KpZQVx9"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/Zt0LzCik-l0" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-16T22:50:15+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/add-rar-file-compression-support-to-ubuntu/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/add-rar-file-compression-support-to-ubuntu/</feedburner:origLink></item>
	
		<item>
			<title>Creating a custom header or footer in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/KVXuMd6dC98/</link>
			<description>Most of the time, the stock headers and footers available on the Header buttons and Footer buttons drop-down menus are sufficient for your report printing needs.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/BT4VxqeTJ1cWBNn_-TmWsk2dVbw/0/da"><img src="http://feedads.g.doubleclick.net/~a/BT4VxqeTJ1cWBNn_-TmWsk2dVbw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/BT4VxqeTJ1cWBNn_-TmWsk2dVbw/1/da"><img src="http://feedads.g.doubleclick.net/~a/BT4VxqeTJ1cWBNn_-TmWsk2dVbw/1/di" border="0" ismap="true"></img></a></p> <p>Most of the time, the stock headers and footers available on the Header buttons and Footer buttons drop-down menus are sufficient for your report printing needs. Every once in a while, however, you may want to insert information not available in these list boxes or in an arrangement Excel doesn&#8217;t offer in the readymade headers and footers.</p>
<p>For those times, you need to use the command buttons that appear in the Header &amp; Footer Elements group of Design tab under the Header &amp; Footer Tools contextual tab. These command buttons enable you to blend your own information with that generated by Excel into different sections of the custom header or footer you&#8217;re creating.</p>
<p>The command buttons in the Header &amp; Footer Elements group include</p>
<ul>
<li><strong>Page Number:</strong> Click this button to insert the &amp;[Page] code that puts in the current page number.</li>
<li><strong>Number of Pages:</strong> Click this button to insert the &amp;[Pages] code that puts in the total number of pages.</li>
<li><strong>Current Date:</strong> Click this button to insert the &amp;[Date] code that puts in the current date.</li>
<li><strong>Current Time:</strong> Click this button to insert the &amp;[Time] code that puts in the current time.</li>
<li><strong>File Path:</strong> Click this button to insert the &amp;[Path]&amp;[Filename] codes that put in the directory path along with the name of the workbook file.</li>
<li><strong>File Name:</strong> Click this button to insert the &amp;[Filen] code that puts in the name of the workbook file.</li>
<li><strong>Sheet Name:</strong> Click this button to insert the &amp;[Tab] code that puts in the name of the worksheet as shown on the sheet tab.</li>
<li><strong>Picture:</strong> Click this button to insert the &amp;[Picture] code that inserts the image that you select from the Insert Picture dialog box (that shows the contents of the My Pictures folder on your computer by default).</li>
<li><strong>Format Picture:</strong> Click this button to apply the formatting that you choose from the Format Picture dialog box to the &amp;[Picture] code that you enter with the Insert Picture button without adding any code of its own.</li>
</ul>
<p>To use these command buttons in the Header &amp; Footer Elements group to create a custom header or footer, follow these steps:</p>
<p><strong>1)</strong> Put your worksheet into Page Layout view by clicking the Page Layout View button on the Status bar or by clicking View&nbsp;&rarr; Page Layout View on the Ribbon or pressing Alt+WP.</p>
<p>In Page Layout view, the text, Click to Add Header, appears centered in the top margin of the first page and the text, Click to Add Footer, appears centered in the bottom margin.</p>
<p><strong>2)</strong> Position the mouse pointer in the top margin to create a custom header or the bottom margin to create a custom footer and then click the pointer in the left, center, or right section of the header or footer to set the insertion and left-align, center, or right-align the text.</p>
<p>When Excel sets the insertion point, the text, Click to Add Header and Click to Add Footer, disappears and the Design tab on the Header &amp; Footer Tools contextual tab becomes active on the Ribbon.</p>
<p><strong>3)</strong> To add program generated information to your custom header or footer (such as the filename, worksheet name, current date, and so forth) click its command button in the Header &amp; Footer Elements group.</p>
<p>Excel inserts the appropriate header/footer code preceded by an ampersand (&amp;) into the header or footer. These codes are replaced by the actual information (filename, worksheet name, graphic image, and the like) as soon as you click another section of the header or footer or finish the header or footer by clicking the mouse pointer outside of it.</p>
<p><strong>4)</strong> (Optional) To add your own text to the custom header or footer, type it at the insertion point.</p>
<p>When joining program-generated information indicated by a header/footer code with your own text, be sure to insert the appropriate spaces and punctuation. For example, to have Excel display the Page 1 of 4 in a custom header or footer, you do the following:</p>
<ol>
<li>Type the word Page and press the spacebar.</li>
<li>Click the Page Number command button and press the spacebar again.</li>
<li>Type the word of and press the spacebar a third time.</li>
<li>Click the Number of Pages command button.</li>
</ol>
<p>This inserts Page &amp;[Page] of &amp;[Pages] in the custom header (or footer).</p>
<p><strong>5)</strong> (Optional) To modify the font, font size, or some other font attribute of your custom header or footer, drag through its codes and text and then click the Home tab and then click appropriate command button in the Font group.</p>
<p>In addition to selecting a new font and font size for the custom header or footer, you can add bold, italics, underlining, and a new font color to its text with the Bold, Italic, Underline, and Font Color command buttons on the Home tab.</p>
<p><strong>6)</strong> After you finish defining and formatting the codes and text for your custom header or footer, click a cell in the Worksheet area to deselect the header or footer area.</p>
<p>Excel replaces the header/footer codes in the custom header or footer with the actual information, while at the same time removing the Header &amp; Footer Tools contextual tab from the Ribbon.</p>
<p>This custom footer blends my own text, Preliminary, with program generated sheet name and date, and time information and uses all three sections: left-aligned page information, centered Preliminary warning, and right aligned current date and time. Note the different font and bold formatting for Preliminary warning in the center section.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=u373mzlP"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=jIa0QiFm"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=jIa0QiFm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=D1in26HQ"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=D1in26HQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=R1LzXUnC"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=R1LzXUnC" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=LTfvW3gg"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/KVXuMd6dC98" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-14T13:56:47+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/creating-a-custom-header-or-footer-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/creating-a-custom-header-or-footer-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>Copying custom styles from one workbook into another in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/fDPFgWC4ks8/</link>
			<description>Excel makes it easy to copy custom cell styles that you’ve saved as part one workbook into the workbook you’re currently working on. To copy custom styles from workbook to another, follow these steps:</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/J9ttYNmpc3F-0zyj3saAlhMJD_w/0/da"><img src="http://feedads.g.doubleclick.net/~a/J9ttYNmpc3F-0zyj3saAlhMJD_w/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/J9ttYNmpc3F-0zyj3saAlhMJD_w/1/da"><img src="http://feedads.g.doubleclick.net/~a/J9ttYNmpc3F-0zyj3saAlhMJD_w/1/di" border="0" ismap="true"></img></a></p> <p>Excel makes it easy to copy custom cell styles that you&#8217;ve saved as part one workbook into the workbook you&#8217;re currently working on. To copy custom styles from workbook to another, follow these steps:</p>
<p><strong>1)</strong> Open the workbook that needs the custom styles added to it from another existing workbook.<br />This can be a brand new workbook or one that you&#8217;ve opened for editing.</p>
<p><strong>2)</strong> Open the workbook which has the custom styles you want to copy saved as part of it.</p>
<p><strong>3)</strong> Switch back to the workbook into which you want to copy the saved custom styles.<br />You can do this by clicking the workbook&#8217;s button on the Windows Vista or XP taskbar or using the Flip feature by pressing Alt+Tab until you select the workbook&#8217;s thumbnail in the center of the desktop.</p>
<p><strong>4)</strong> Click the Cell Styles button on the Home tab followed by Merge Styles in the Cell Styles gallery or press Alt+HY2M to open the Merge Styles dialog box.</p>
<p><strong>5)</strong> Click the name of the open workbook file that contains the custom styles to copy in the Merge Styles From list box and then click OK.</p>
<p>After you close the Merge Styles dialog box, Excel adds all the custom styles from the designated workbook into the current workbook adding it to the Custom section of its Cell Styles gallery.</p>
<p>To retain the custom styles you just imported, save the current workbook (Save button on the Quick Access toolbar or Ctrl+S). Then, you can switch back to the workbook containing the original custom styles you just copied and close its file (Alt+FC).</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=Fjk3yFTU"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=n0pnPu0S"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=n0pnPu0S" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=pqPYeeAB"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=pqPYeeAB" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=uiCMxETC"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=uiCMxETC" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=7AI03oh4"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/fDPFgWC4ks8" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-13T13:46:14+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/copying-custom-styles-from-one-workbook-into-another-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/copying-custom-styles-from-one-workbook-into-another-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>Hiding worksheet columns in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/GJWB2-rEt30/</link>
			<description>Although you can hide worksheet columns and rows by just adjusting them out of existence, Excel does offer an easier method of hiding them, via the Hide &amp;amp; Unhide option on the Format button&amp;rsquo;s drop-down menu (located in the Cells group of the Home tab).</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/70R43USL9Y-NyPKrV-77pcpNKXY/0/da"><img src="http://feedads.g.doubleclick.net/~a/70R43USL9Y-NyPKrV-77pcpNKXY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/70R43USL9Y-NyPKrV-77pcpNKXY/1/da"><img src="http://feedads.g.doubleclick.net/~a/70R43USL9Y-NyPKrV-77pcpNKXY/1/di" border="0" ismap="true"></img></a></p> <p>Although you can hide worksheet columns and rows by just adjusting them out of existence, Excel does offer an easier method of hiding them, via the Hide &amp; Unhide option on the Format button&rsquo;s drop-down menu (located in the Cells group of the Home tab).</p>
<p>Suppose that you need to hide column B in the worksheet because it contains some irrelevant or sensitive information that you don&#8217;t want printed. To hide this column, you could follow these steps:</p>
<p><strong>1)</strong> Click anywhere in column B to select the column.</p>
<p><strong>2)</strong> Click the drop-down button attached to the Format button in the Cells group on the Home tab. Excel opens the Format button&#8217;s drop-down menu.</p>
<p><strong>3)</strong> Click Hide &amp; Unhide&nbsp;&rarr; Hide Columns on the drop-down menu.</p>
<p>That&#8217;s all there is to it - column B goes poof! All the information in the column disappears from the worksheet. When you hide column B, notice that the row of column letters in the frame now reads A, C, D, E, F, and so forth.</p>
<p>You could just as well have hidden column B by clicking its column letter on the frame with the secondary mouse button and then clicking the Hide command on the column&#8217;s shortcut menu.</p>
<h2>Unhide columns</h2>
<p>So now, suppose that you&#8217;ve printed the worksheet and need to make a change to one of the entries in column B. To unhide the column, follow these steps:</p>
<p><strong>1)</strong> Position the mouse pointer on column letter A in the frame and drag the pointer right to select both columns A and C. You must drag from A to C to include hidden column B as part of the<br />column selection - don&#8217;t click while holding down the Ctrl key or you won&#8217;t get B.</p>
<p><strong>2)</strong> Click the drop-down button attached to the Format button in the Cells group on the Home tab.</p>
<p><strong>3)</strong> Click Hide &amp; Unhide&nbsp;&rarr; Unhide Columns on the drop-down menu.</p>
<p>Excel brings back the hidden B column, and all three columns (A, B, and C) are selected. You can then click the mouse pointer on any cell in the worksheet to deselect the columns.</p>
<p>You could also unhide column B by selecting columns A and C, clicking either one of them with the secondary mouse button, and then clicking the Unhide command on the column shortcut menu.</p>
<h2>Hiding worksheet rows</h2>
<p>The procedure for hiding and unhiding rows of the worksheet is essentially the same as for hiding and unhiding columns. The only difference is that after selecting the rows to hide, you click Hide &amp; Unhide&nbsp;&rarr; Hide Rows on the Format button&#8217;s drop-down menu and Hide &amp; Unhide &rarr; Unhide Rows to bring them back.</p>
<p>Don&#8217;t forget that you can use the Hide and Unhide options on the rows shortcut menu to make selected rows disappear and then reappear in the worksheet.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=GYPStEy9"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=FQnAYm0D"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=FQnAYm0D" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=xtqGKtd6"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=xtqGKtd6" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=a7HqTTJa"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=a7HqTTJa" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=YhNZSkIG"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/GJWB2-rEt30" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-13T13:40:13+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/hiding-worksheet-columns-in-excell-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/hiding-worksheet-columns-in-excell-2007/</feedburner:origLink></item>
	
		<item>
			<title>Nonadjacent cell selections with the keyboard in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/pG6HxPABLjo/</link>
			<description>Selecting more than one cell range is a little more complicated with the keyboard than it is with the mouse. When using the keyboard, you alternate between anchoring the cell cursor and moving the cell cursor to select the cell range and unanchoring the cell cursor and repositioning it at the beginning of the next range.</description>
			<dc:subject />
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/CdJVsOcPhwnXDrAuObqFbwiD1BM/0/da"><img src="http://feedads.g.doubleclick.net/~a/CdJVsOcPhwnXDrAuObqFbwiD1BM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/CdJVsOcPhwnXDrAuObqFbwiD1BM/1/da"><img src="http://feedads.g.doubleclick.net/~a/CdJVsOcPhwnXDrAuObqFbwiD1BM/1/di" border="0" ismap="true"></img></a></p> <p>Selecting more than one cell range is a little more complicated with the keyboard than it is with the mouse. When using the keyboard, you alternate between anchoring the cell cursor and moving the cell cursor to select the cell range and unanchoring the cell cursor and repositioning it at the beginning of the next range.</p>
<p>To unanchor the cell cursor so that you can move it into position for selecting another range, press Shift+F8. This puts you in Add to Selection mode, in which you can move to the first cell of the next range without selecting any more cells. Excel lets you know that the cell cursor is<br />unanchored by displaying the Add to Selection indicator on the left side of the Status bar.</p>
<p>To select more than one cell range by using the keyboard, follow these general steps:</p>
<p><strong>1)</strong> Move the cell cursor to the first cell of the first cell range that you want to select.</p>
<p><strong>2)</strong> Press F8 to get into Extend Selection mode.<br />Move the cell cursor to select all the cells in the first cell range. Alternatively, hold the Shift key as you move the cell cursor.</p>
<p><strong>3)</strong> Press Shift+F8 to switch from Extend Selection mode to Add to Selection mode.<br />The Add to Selection indicator appears in the Status bar.</p>
<p><strong>4)</strong> Move the cell cursor to the first cell of the next nonadjacent range that you want to select.</p>
<p><strong>5)</strong> Press F8 again to get back into Extend Selection mode and then move the cell cursor to select all the cells in this new range.</p>
<p><strong>6)</strong> If you still have other nonadjacent ranges to select, repeat Steps 3, 4, and 5 until you select and add all the cell ranges that you want to use.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=6mKabJiW"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=ayzolxSU"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=ayzolxSU" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=JvJWVo31"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=JvJWVo31" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=yTrTNrdX"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=yTrTNrdX" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=Y76scuPG"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/pG6HxPABLjo" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-13T13:29:57+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/nonadjacent-cell-selections-with-the-keyboard-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/nonadjacent-cell-selections-with-the-keyboard-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>Creating custom lists for AutoFill in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/ZVNcdC4n1TE/</link>
			<description>In addition to varying the increment in a series created with AutoFill, you can also create your own custom series. For example, say your company has offices in the following locations and you get tired of typing out the sequence in each new spreadsheet that requires them.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/4YMMhSC6BgZMjaxSUePLUyJKerk/0/da"><img src="http://feedads.g.doubleclick.net/~a/4YMMhSC6BgZMjaxSUePLUyJKerk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/4YMMhSC6BgZMjaxSUePLUyJKerk/1/da"><img src="http://feedads.g.doubleclick.net/~a/4YMMhSC6BgZMjaxSUePLUyJKerk/1/di" border="0" ismap="true"></img></a></p> <p>In addition to varying the increment in a series created with AutoFill, you can also create your own custom series. For example, say your company has offices in the following locations and you get tired of typing out the sequence in each new spreadsheet that requires them:<br />- New York<br />- Chicago<br />- Atlanta<br />- Seattle<br />- San Francisco<br />- San Diego</p>
<p>After creating a custom list with these locations, you can enter the entire sequence of cities simply by entering New York in the first cell and then dragging the Fill handle to the blank cells where the rest of the companies should appear.</p>
<p>To create this kind of custom series, follow these steps:</p>
<p><strong>1)</strong> Click Office Button &rarr; Excel Options &rarr; Popular or press Alt+FI and then click the Edit Custom Lists button in the Top Options for Working with Excel section to open the Custom Lists dialog box.<br />If you&#8217;ve already gone to the time and trouble of typing the custom list in a range of cells, go to Step 2. If you haven&#8217;t yet typed the series in an open worksheet, go to Step 5 instead.</p>
<p><strong>2)</strong> Click inside the Import List from Cells text box and click the Minimize Dialog Box button (the one with the picture of the tiny grid to the right of the Import List from Cells text box) so that you can see your list and drag through the range of cells to select them.</p>
<p><strong>3)</strong> After selecting the cells in the worksheet, click the Maximize Dialog box button.<br />This button automatically replaces the Minimize Dialog box button to the right of the Import List from Cells text box.</p>
<p><strong>4)</strong> Then click the Import button to copy this list into the List Entries list box.<br />Skip to Step 7.</p>
<p><strong>5)</strong> Click inside the List Entries list box and then type each entry (in the desired order), being sure to press Enter after typing each one.<br />When all the entries in the custom list appear in the List Entries list box in the order you want them, proceed to Step 7.</p>
<p><strong>6)</strong> Click the Add button to add the list of entries to the Custom lists box.<br />Finish creating all the custom lists you need, using the preceding steps. When you are done, move on to Step 7.</p>
<p><strong>7)</strong> Click OK twice, the first time to close the Custom Lists dialog box and the second to close the Excel Options dialog box and return to the current worksheet in the active workbook.</p>
<p>After adding a custom list to Excel, from then on you need only enter the first entry in a cell and then use the fill handle to extend it to the cells below or to the right.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=YjqgOFfa"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=yiCMsCDR"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=yiCMsCDR" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=kb2szMih"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=kb2szMih" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=UmpBjUvk"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=UmpBjUvk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=Z972vcbU"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/ZVNcdC4n1TE" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-12T13:22:19+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/creating-custom-lists-for-autofill-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/creating-custom-lists-for-autofill-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>Keyboard shortcuts for moving the cell cursor in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/IcEweZpnq3Y/</link>
			<description>Excel offers a wide variety of keystrokes for moving the cell cursor to a new cell. When you use one of these keystrokes, the program automatically scrolls a new part of the worksheet into view, if this is required to move the cell pointer.</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/N-OSPtl-leQh3qFc0lum3RLhTcs/0/da"><img src="http://feedads.g.doubleclick.net/~a/N-OSPtl-leQh3qFc0lum3RLhTcs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/N-OSPtl-leQh3qFc0lum3RLhTcs/1/da"><img src="http://feedads.g.doubleclick.net/~a/N-OSPtl-leQh3qFc0lum3RLhTcs/1/di" border="0" ismap="true"></img></a></p> <p>Excel offers a wide variety of keystrokes for moving the cell cursor to a new cell. When you use one of these keystrokes, the program automatically scrolls a new part of the worksheet into view, if this is required to move the cell pointer.</p>
<table border="0">
<thead> 
<tr>
<th>Keystroke</th> <th class="right">Where the Cell Cursor Moves</th>
</tr>
</thead> 
<tbody>
<tr>
<td>&rarr; or Tab</td>
<td>Cell to the immediate right.</td>
</tr>
<tr>
<td>&larr; or Shift+Tab</td>
<td>Cell to the immediate left.</td>
</tr>
<tr>
<td>&uarr;<br /></td>
<td>Cell up one row.</td>
</tr>
<tr>
<td>&darr;<br /></td>
<td>Cell down one row.</td>
</tr>
<tr>
<td>Home</td>
<td>Cell in Column A of the current row.</td>
</tr>
<tr>
<td>Ctrl+Home</td>
<td>First cell (A1) of the worksheet.</td>
</tr>
<tr>
<td>Ctrl+End or End, Home</td>
<td>Cell in the worksheet at the intersection of the last column that has any data in it and the last row that has any data in it (that is, the last cell of the so-called active area of the worksheet).</td>
</tr>
<tr>
<td>PgUp</td>
<td>Cell one full screen up in the same column.</td>
</tr>
<tr>
<td>PgDn</td>
<td>Cell one full screen down in the same column.</td>
</tr>
<tr>
<td>Ctrl+&rarr; or End, &rarr;</td>
<td>First occupied cell to the right in the same row that is either preceded or followed by a blank cell. If no cell is occupied, the pointer goes to the cell at the very end of the row.</td>
</tr>
<tr>
<td>Ctrl+&larr; or End, &larr;</td>
<td>First occupied cell to the left in the same row that is either preceded or followed by a blank cell. If no cell is occupied, the pointer goes to the cell at the very beginning of the row.</td>
</tr>
<tr>
<td>Ctrl+&uarr; or End, &uarr;</td>
<td>First occupied cell above in the same column that is either preceded or followed by a blank cell. If no cell is occupied, the pointer goes to the cell at the very top of the column.</td>
</tr>
<tr>
<td>Ctrl+&darr; or End, &darr;</td>
<td>First occupied cell below in the same column that is either preceded or followed by a blank cell. If no cell is occupied, the pointer goes to the cell at the very bottom of the column.</td>
</tr>
<tr>
<td>Ctrl+Page Down</td>
<td>Last occupied cell in the next worksheet of that workbook.</td>
</tr>
<tr>
<td>Ctrl+Page Up</td>
<td>Last occupied cell in the previous worksheet of that workbook.</td>
</tr>
</tbody>
</table>
<p><br /><strong>Note:</strong> In the case of those keystrokes that use arrow keys, you must either use the arrows on the cursor keypad or else have the Num Lock disengaged on the numeric keypad of your keyboard.</p>
<p>The keystrokes that combine the Ctrl or End key with an arrow key are among the most helpful for moving quickly from one edge to the other in large tables of cell entries or in moving from table to table in a section of the worksheet that contains many blocks of cells.</p>
<p>When you use Ctrl and an arrow key to move from edge to edge in a table or between tables in a worksheet, you hold down Ctrl while you press one of the four arrow keys (indicated by the + symbol in keystrokes, such as Ctrl+&rarr;).</p>
<p>When you use End and an arrow-key alternative, you must press and then release the End key before you press the arrow key (indicated by the comma in keystrokes, such as End, &rarr;). Pressing and releasing the End key causes the End Mode indicator to appear on the status bar. This is your sign that Excel is ready for you to press one of the four arrow keys.</p>
<p>Because you can keep the Ctrl key depressed as you press the different arrow keys that you need to use, the Ctrl-plus-arrow-key method provides a more fluid method for navigating blocks of cells than the End-then-arrow-key method.</p>
<p>You can use the Scroll Lock key to &#8220;freeze&#8221; the position of the cell pointer in the worksheet so that you can scroll new areas of the worksheet in view with keystrokes such as PgUp (Page Up) and PgDn (Page Down) without changing the cell pointer&#8217;s original position (in essence, making these keystrokes work in the same manner as the scroll bars).</p>
<p>After engaging Scroll Lock, when you scroll the worksheet with the keyboard, Excel does not select a new cell while it brings a new section of the worksheet into view. To &#8220;unfreeze&#8221; the cell pointer when scrolling the worksheet via the keyboard, you just press the Scroll Lock key again.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=TRFfzmNN"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=99Yt7Ubd"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=99Yt7Ubd" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=iT3scDZL"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=iT3scDZL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=9YlSJ4u4"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=9YlSJ4u4" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=9CpnVERP"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/IcEweZpnq3Y" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-12T12:50:41+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/keyboard-shortcuts-for-moving-the-cell-cursor-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/keyboard-shortcuts-for-moving-the-cell-cursor-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>Resize images with the command line in Linux</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/BDhthCTBBY4/</link>
			<description>GIMP can do just about anything to an image but it can be time-consuming to fire it up just to resize an image. For ultra-quick manipulation, consider Imagemagick, a command-line image manipulation program.</description>
			<dc:subject>Linux</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/cbbljzTxQEurIRpME7K0z7LWsfI/0/da"><img src="http://feedads.g.doubleclick.net/~a/cbbljzTxQEurIRpME7K0z7LWsfI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/cbbljzTxQEurIRpME7K0z7LWsfI/1/da"><img src="http://feedads.g.doubleclick.net/~a/cbbljzTxQEurIRpME7K0z7LWsfI/1/di" border="0" ismap="true"></img></a></p> <p>GIMP can do just about anything to an image but it can be time-consuming to fire it up just to resize an image. For ultra-quick manipulation, consider Imagemagick, a command-line image manipulation program.</p>
<p>It doesn&#8217;t come installed by default and you&#8217;ll need to install it via you package manager (search for and install imagemagick). Once installed, the convert command should be used with the addition of the -resize command option. For example, the following will shrink filename.bmp to half its original size:</p>
<p class="code">$ convert -resize 50% filename.bmp filename_small.bmp</p>
<p>The following will enlarge filename.bmp to twice its original size (although there will be an obvious degradation in quality):</p>
<p class="code">$ convert -resize 200% filename.bmp filename_larger.bmp</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=iC9VnMIa"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=BiIRjJoI"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=BiIRjJoI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=3TC52Tvo"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=3TC52Tvo" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=8VgAHGH6"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=8VgAHGH6" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=w1ffEoyQ"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/BDhthCTBBY4" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-12T01:58:56+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/resize-images-with-the-command-line-in-linux/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/resize-images-with-the-command-line-in-linux/</feedburner:origLink></item>
	
		<item>
			<title>Change Gedit printing font in Ubuntu</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/iSq10IUxY_0/</link>
			<description>Gedit shouldn’t really be used for printing stuff out. That kind of thing is better handled by OpenOffice.org. But if you occasionally run off a quick block of text, or look at hard copy of some code, you’ll havenoticed that Gedit always prints in Monospace font, even if you’ve set the screen font to something else in Edit&amp;nbsp;&amp;rarr; Preferences.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/plMgVWGzod4eFN6225ZYn-lmCCw/0/da"><img src="http://feedads.g.doubleclick.net/~a/plMgVWGzod4eFN6225ZYn-lmCCw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/plMgVWGzod4eFN6225ZYn-lmCCw/1/da"><img src="http://feedads.g.doubleclick.net/~a/plMgVWGzod4eFN6225ZYn-lmCCw/1/di" border="0" ismap="true"></img></a></p> <p>Gedit shouldn&#8217;t really be used for printing stuff out. That kind of thing is better handled by OpenOffice.org. But if you occasionally run off a quick block of text, or look at hard copy of some code, you&#8217;ll have noticed that Gedit always prints in Monospace font, even if you&#8217;ve set the screen font to something else in Edit&nbsp;&rarr; Preferences.</p>
<p>To change the printing font, fire up <strong>gconf-editor</strong> and navigate to /apps/gedit-2/preferences/print/fonts. Change the <strong>print_font_body_pango</strong> entry to read whatever you want - use Gedit&#8217;s own font selector dialog to get the font name you should enter (Edit &rarr; Preferences, click Fonts and Colors, and click the Editor Font dropdown list).</p>
<p>For example, to print using a sans-serif font1 at 9 point, you could type Bitsream Vera Sans 9. For a serif font, you could type Times 9. To get a preview of how the new font will look, click File &rarr; Print Preview within Gedit.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=uLOv3WZF"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=rWehBuj3"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=rWehBuj3" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=aJORSz3U"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=aJORSz3U" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=51gng4a0"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=51gng4a0" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=cEjd4AAP"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/iSq10IUxY_0" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-12T01:55:19+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/change-gedit-printing-font-in-ubuntu/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/change-gedit-printing-font-in-ubuntu/</feedburner:origLink></item>
	
		<item>
			<title>Sorting records on multiple fields with data list in Excel 2007</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/GtRWF0IOIWA/</link>
			<description>You need to use more than one field in sorting when the first field you use contains duplicate values and you want a say in how the records with duplicates are arranged. (If you don’t specify another field to sort on, Excel just puts the records in the order in which you entered them.)</description>
			<dc:subject>Office, Excel</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/QO8gn9p7gHebNe_TbDhRWOY4ApM/0/da"><img src="http://feedads.g.doubleclick.net/~a/QO8gn9p7gHebNe_TbDhRWOY4ApM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/QO8gn9p7gHebNe_TbDhRWOY4ApM/1/da"><img src="http://feedads.g.doubleclick.net/~a/QO8gn9p7gHebNe_TbDhRWOY4ApM/1/di" border="0" ismap="true"></img></a></p> <p>You need to use more than one field in sorting when the first field you use contains duplicate values and you want a say in how the records with duplicates are arranged. (If you don&#8217;t specify another field to sort on, Excel just puts the records in the order in which you entered them.)</p>
<p>The best and most common example of when you need more than one field is when sorting a large database alphabetically in last-name order.</p>
<p>Suppose that you have a database that contains several people with the last name Smith,<br />Jones, or Zastrow (as is the case when you work at Zastrow and Sons). If you specify the Last Name field as the only field to sort on (using the default ascending order), all the duplicate Smiths, Joneses, and Zastrows are placed in the order in which their records were originally entered. To better sort these duplicates, you can specify the First Name field as the second field to sort on (again using the default ascending order), making the second field the tie-breaker, so that Ian Smith&rsquo;s record precedes that of Sandra Smith, and Vladimir Zastrow&rsquo;s record comes after that of Mikhail Zastrow.</p>
<p>To sort records in a data list on multiple fields, follow these steps:</p>
<p><strong>1)</strong> Position the cell cursor in one of the cells in the data list table.</p>
<p><strong>2)</strong> If the Home tab on the Ribbon is selected, click Custom Sort on the Sort &amp; Filter button&rsquo;s drop-down list (Alt+HSU). If the Data tab is selected, click the Sort command button (Alt+AS).<br /><em>Excel selects all the records of the database (without including the first row of field names) and opens the Sort dialog box.</em></p>
<p><strong>3)</strong> Click the name of the field you first want the records sorted by in the Sort By drop-down list.<br />If you want the records arranged in descending order, remember also to click the descending sort option (Z to A, Smallest to Largest, or Oldest to Newest) Order drop-down list to the right.</p>
<p><strong>4) </strong>(Optional) If the first field contains duplicates and you want to specify how the records in this field are sorted, click the Add Level button to insert another sort level. Select a second field to sort on in the Then By drop-down list and select either the ascending or descending option in its Order drop-down list to its right.</p>
<p><strong>5)</strong> (Optional) If necessary, repeat Step 4, adding as many additional sort levels as required.</p>
<p><strong>6)</strong> Click OK or press Enter.</p>
<p>Excel closes the Sort dialog box and sorts the records in the data list using the sorting fields in the order of their levels in this dialog box. If you see that you sorted the database on the wrong fields or in the wrong order, click the Undo button on Quick Access toolbar or press Ctrl+Z to immediately restore the database records to their previous order.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=yIBXVgR0"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=178aVzKm"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=178aVzKm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=Z7Fjwhl6"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=Z7Fjwhl6" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=sSKa8T8o"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=sSKa8T8o" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=Hmd4Fitb"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/GtRWF0IOIWA" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-10T15:19:45+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/sorting-records-on-multiple-fields-with-data-list-in-excel-2007/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/sorting-records-on-multiple-fields-with-data-list-in-excel-2007/</feedburner:origLink></item>
	
		<item>
			<title>Build a readahead profile and make Ubuntu boot faster</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/vty8L2pFWlU/</link>
			<description>Ubuntu includes a software called readahead that, according to the official blurb, “allows the user to specify a set of files to be read into the page cache to accelerate first time loading of programs”.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/o3CFdFDWQ8m2EimRheEs6uT4q6g/0/da"><img src="http://feedads.g.doubleclick.net/~a/o3CFdFDWQ8m2EimRheEs6uT4q6g/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/o3CFdFDWQ8m2EimRheEs6uT4q6g/1/da"><img src="http://feedads.g.doubleclick.net/~a/o3CFdFDWQ8m2EimRheEs6uT4q6g/1/di" border="0" ismap="true"></img></a></p> <p>Ubuntu includes a software called <em>readahead</em> that, according to the official blurb, &#8220;allows the user to specify a set of files to be read into the page cache to accelerate first time loading of programs&#8221;.</p>
<p>In other words, it allows Ubuntu to cache frequently accessed files to avoid searching around for them at startup. A default readahead profile is included with Ubuntu but you can create your own, tailored to your system.</p>
<p>Reboot Ubuntu and, at the boot menu, ensure the usual Ubuntu entry is highlighted. Then hit &#8220;e&#8221;. This will let you temporarily edit the boot menu entry.</p>
<p>Use the cursor keys to move the highlight down to the second line that beings kernel and hit &#8220;e&#8221; again. Use the right arrow key to move to the end of the line and, after the words quiet and splash, add the word profile.</p>
<p>Then hit Enter and then &#8220;b&#8221; to boot your computer. Note that the first boot will be slow because the readahead cache will have to be rebuilt. In subsequent boots, however, you should see speed improvements.</p>
<p>I experienced a couple of seconds improvement by building a new readahead profile. This isn&#8217;t a dramatic increase but it was certainly worth doing.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=q2jrl7kR"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=cIOk1UXf"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=cIOk1UXf" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=F2yUAl63"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=F2yUAl63" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=mR1Gu7qU"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=mR1Gu7qU" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=LG8u9VFc"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/vty8L2pFWlU" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-09T21:06:11+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/build-a-readahead-profile-and-make-ubuntu-boot-faster/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/build-a-readahead-profile-and-make-ubuntu-boot-faster/</feedburner:origLink></item>
	
		<item>
			<title>Make Ubuntu boot faster by running boot-time scripts in parallel</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/awFl4hL3Ih0/</link>
			<description>Whenever Ubuntu boots it runs several scripts that start necessary background services. By default these are set to run one-by-one.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/sgc2NNd-fsxHKzOC5NLnmpvrnUc/0/da"><img src="http://feedads.g.doubleclick.net/~a/sgc2NNd-fsxHKzOC5NLnmpvrnUc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/sgc2NNd-fsxHKzOC5NLnmpvrnUc/1/da"><img src="http://feedads.g.doubleclick.net/~a/sgc2NNd-fsxHKzOC5NLnmpvrnUc/1/di" border="0" ismap="true"></img></a></p> <p>Whenever Ubuntu boots it runs several scripts that start necessary background services. By default these are set to run one-by-one.</p>
<p>But if you have a processor with more than one core, such as Intel CoreDuo series or AMD Athlon X2, you can configure Ubuntu to run the scripts in parallel. This way all the cores are utilized and quite a bit of time can be saved at each boot.</p>
<p>To make the change, type the following to open the necessary configuration<br />file in Gedit:</p>
<p class="code">$ gksu gedit /etc/init.d/rc</p>
<p>Look for the line that reads CONCURRENCY=none and change it so it reads CONCURRENCY=shell. Then save the file and reboot your computer.</p>
<p>Using this method I managed to shave a massive 20 seconds off my desktop PC&#8217;s usual start-up time of just under a minute.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=Ik5CBcDA"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=cEjMTlW3"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=cEjMTlW3" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=5EWB2XzS"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=5EWB2XzS" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=brlWRofj"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=brlWRofj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=QxlP800g"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/awFl4hL3Ih0" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-09T21:03:26+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/make-ubuntu-boot-faster-by-running-boot-time-scripts-in-parallel/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/make-ubuntu-boot-faster-by-running-boot-time-scripts-in-parallel/</feedburner:origLink></item>
	
		<item>
			<title>Reducing the boot menu delay in Ubuntu</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/NgUPukB-ra4/</link>
			<description>If you dual-boot Ubuntu and Windows on your computer the boot menu appears for 10 seconds, during which you can select either Windows or Ubuntu. If you only have Ubuntu installed, a prompt appears for three seconds telling you that you can hit a key to see the boot menu.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/9pQGsYhlGxjHWp_qfVqjpdN5aSg/0/da"><img src="http://feedads.g.doubleclick.net/~a/9pQGsYhlGxjHWp_qfVqjpdN5aSg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/9pQGsYhlGxjHWp_qfVqjpdN5aSg/1/da"><img src="http://feedads.g.doubleclick.net/~a/9pQGsYhlGxjHWp_qfVqjpdN5aSg/1/di" border="0" ismap="true"></img></a></p> <p>If you dual-boot Ubuntu and Windows on your computer the boot menu appears for 10 seconds, during which you can select either Windows or Ubuntu. If you only have Ubuntu installed, a prompt appears for threeseconds telling you that you can hit a key to see the boot menu.</p>
<p>This delay can feasibly be reduced to one second, providing you have quick enough reactions - hitting a key during that second will cause the countdown timer to stop so you can make your choice at leisure.</p>
<p>Alternatively, you can configure the system so the boot menu never appears. This will deny access to the other boot menu options but if Ubuntu is the only operating system on your computer then this could be a good arrangement.</p>
<p>Start by opening the boot menu configuration file in Gedit:</p>
<p class="code">$ gksu gedit /boot/grub/menu.lst</p>
<p>Then search for the line that reads timeout 10 and change the 10 to read either 1, for a one second countdown, or 0, to disable the boot menu completely.</p>
<p>Save the file and then reboot to test the settings.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=61nySHHd"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=f8mu8KUq"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=f8mu8KUq" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=KmMM6NGE"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=KmMM6NGE" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=RRZXu9CH"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=RRZXu9CH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=YNTsJjLi"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/NgUPukB-ra4" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-09T21:00:46+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/reducing-the-boot-menu-delay-in-ubuntu/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/reducing-the-boot-menu-delay-in-ubuntu/</feedburner:origLink></item>
	
		<item>
			<title>Stop the cursor blinking in Ubuntu</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/rbj_JMJxUyU/</link>
			<description>I’ve nothing against a blinking cursor myself but some find it distracting. To stop Ubuntu’s block blinking, open gconf-editor and navigate to /desktop/gnome/interface and remove the check from cursor_blink. The log out and back in again. Note that Evolution appears to ignore this setting, but most other applications will now have a still cursor.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/n8_1dgmPJ7t3ILBo3T_RVDKubpA/0/da"><img src="http://feedads.g.doubleclick.net/~a/n8_1dgmPJ7t3ILBo3T_RVDKubpA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/n8_1dgmPJ7t3ILBo3T_RVDKubpA/1/da"><img src="http://feedads.g.doubleclick.net/~a/n8_1dgmPJ7t3ILBo3T_RVDKubpA/1/di" border="0" ismap="true"></img></a></p> <p>I&#8217;ve nothing against a blinking cursor myself but some find it distracting. To stop Ubuntu&#8217;s block blinking, open gconf-editor and navigate to /desktop/gnome/interface and remove the check from cursor_blink. The log out and back in again. Note that Evolution appears to ignore this setting, but most other applications will now have a still cursor.</p>
<p>Alternatively by changing the value in cursor_blink_time, you can simply make it blink more slowly. A value of 5000 equates to fives seconds&ndash;each unit is 1ms. Be aware that a setting such as 5000 means that the cursor will be visible for five seconds at a time and then invisible for the<br />same length of time&#8230;</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=55QOGURs"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=wenl1g0N"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=wenl1g0N" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=yyFcrfyo"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=yyFcrfyo" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=LPkjyro1"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=LPkjyro1" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=uHs9PuXW"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/rbj_JMJxUyU" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-09T20:57:07+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/stop-the-cursor-blinking-in-ubuntu/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/stop-the-cursor-blinking-in-ubuntu/</feedburner:origLink></item>
	
		<item>
			<title>Switch monitor resolutions with a single mouse-click in Ubuntu</title>
			<link>http://feedproxy.google.com/~r/dailygeeks/~3/tEw-KgrdAVk/</link>
			<description>If you have an external monitor or projector that you occasionally attach to a notebook computer, you might be used to switching resolutions on a regular basis. Unlike with Windows, this isn’t just a right-click procedure - you must navigate the System&amp;nbsp;&amp;rarr; Preferences menu.</description>
			<dc:subject>Linux, Ubuntu</dc:subject>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/GGgnn4oJYpwaBJEHjQpTzod6d_E/0/da"><img src="http://feedads.g.doubleclick.net/~a/GGgnn4oJYpwaBJEHjQpTzod6d_E/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GGgnn4oJYpwaBJEHjQpTzod6d_E/1/da"><img src="http://feedads.g.doubleclick.net/~a/GGgnn4oJYpwaBJEHjQpTzod6d_E/1/di" border="0" ismap="true"></img></a></p> <p>If you have an external monitor or projector that you occasionally attach to a notebook computer, you might be used to switching resolutions on a regular basis. Unlike with Windows, this isn&#8217;t just a right-click procedure - you must navigate the System&nbsp;&rarr; Preferences menu.</p>
<p>A good solution is to use Synaptic to search for and install resapplet. For some reason, although it&#8217;s officially a GNOME applet, resapplet doesn&#8217;t appear on the standard applet list. Instead, it must be configured to start at login.</p>
<p>To do this, click System &rarr; Preferences &rarr; Sessions, ensure the Startup Programs tab is selected, and click the Add button. In the Name and Command fields of the dialog that appears, type resapplet. Leave the Comment field blank. Then close the dialog box and log out and back in again.</p>
<p>The new icon will then appear besides NetworkMonitor in the notification area. Clicking it will reveal a list of possible resolutions that you can choose-from.</p>
<p>Incidentally, it should be possible to instantly step up and down resolutions by typing Ctrl + Alt and tapping the + / - keys on the numeric keypad. Unfortunately this doesn&#8217;t work on Ubuntu systems because of the way they graphical subsystem is configured. It may work on other Linux systems, however.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~f/dailygeeks?a=RgpXLgZy"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=8B734YRJ"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=8B734YRJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=AgT4NA5P"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=AgT4NA5P" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=71Yaw1Jq"><img src="http://feeds.feedburner.com/~f/dailygeeks?i=71Yaw1Jq" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/dailygeeks?a=tGEMY3Ja"><img src="http://feeds.feedburner.com/~f/dailygeeks?d=50" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/dailygeeks/~4/tEw-KgrdAVk" height="1" width="1"/>]]></content:encoded>
			<dc:date>2008-11-08T15:32:24+00:00</dc:date>
			<guid isPermaLink="false">http://www.dailygeeks.com/howto/switch-monitor-resolutions-with-a-single-mouse-click-in-ubuntu/</guid>
		<feedburner:origLink>http://www.dailygeeks.com/howto/switch-monitor-resolutions-with-a-single-mouse-click-in-ubuntu/</feedburner:origLink></item>
	
	
    </channel>
</rss>
