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

<channel>
	<title>Skyler Call</title>
	<atom:link href="http://www.skylercall.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.skylercall.com</link>
	<description>Husband &#38; Father, IT Specialist, Photographer</description>
	<lastBuildDate>Mon, 05 Dec 2011 21:14:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Posting To &#8216;Public&#8217; In Google Plus</title>
		<link>http://www.skylercall.com/2011/10/posting-to-public-in-google-plus/</link>
		<comments>http://www.skylercall.com/2011/10/posting-to-public-in-google-plus/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 17:04:51 +0000</pubDate>
		<dc:creator>skylercall</dc:creator>
				<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.skylercall.com/?p=523</guid>
		<description><![CDATA[After a long wait of being left out, Google Apps users were finally granted access to Google Plus this week. Imagine my excitement when I heard the news. I have been looking forward to trying out Google&#8217;s attempt at dividing conversations into interest groups known as Circles; something they have pushed since the launch of [...]]]></description>
			<content:encoded><![CDATA[<p><iframe width="413" height="240" src="http://www.youtube.com/embed/ocPeAdpe_A8?rel=0" frameborder="0" allowfullscreen align="right" style="padding-top: 4px; padding-left: 10px;"></iframe>After a long wait of being left out, <a href="http://www.google.com/apps/" target="_blank">Google Apps</a> users were finally granted access to <a href="https://plus.google.com/" target="_blank">Google Plus</a> this week. Imagine my excitement when I heard the news. I have been looking forward to trying out Google&#8217;s attempt at dividing conversations into interest groups known as Circles; something they have pushed since the launch of Google Plus. See the embedded video from YouTube if this is news to you.</p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2011/10/Google-Plus-Post-Public.png" alt="" title="Google-Plus-Post-Public" width="320" class="alignright size-full wp-image-528" /> Unfortunately, I quickly found that many people are posting primarily to the public and not effectively using Circles. I might follow you for a specific reason and don&#8217;t want my time used up sorting though the mess of &#8220;status updates&#8221; and silly posts to get to what I came for. If you are easily offended, do not read the graphic to the right.</p>
<p>I look forward to Google Plus improving as individuals explore its features and find their place in this new community.</p>
<p>* Form pictured was created using <a href="http://www.jotform.com/" target="_blank">JotForm.com</a></p>
<p><script type="text/javascript"><!--
  google_ad_client = "pub-9370590211138523";
  /* 468x60, created 4/8/10 */
  google_ad_slot = "5505018188";
  google_ad_width = 468;
  google_ad_height = 60;
  //-->
</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skylercall.com/2011/10/posting-to-public-in-google-plus/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Restore Trends After Renaming Host in Nagios</title>
		<link>http://www.skylercall.com/2011/08/restore-trends-after-renaming-host-in-nagios/</link>
		<comments>http://www.skylercall.com/2011/08/restore-trends-after-renaming-host-in-nagios/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 03:26:49 +0000</pubDate>
		<dc:creator>skylercall</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.skylercall.com/?p=457</guid>
		<description><![CDATA[Renaming a host in Nagios (changing the value of &#8216;host_name&#8217; inside a .cfg file) breaks the connection to all previous trends for that host and all its services. Nagios keeps all the information about when a host or service is up or down in a separate log file for each day. The log file for [...]]]></description>
			<content:encoded><![CDATA[<p>Renaming a host in Nagios (changing the value of &#8216;host_name&#8217; inside a .cfg file) breaks the connection to all previous trends for that host and all its services. Nagios keeps all the information about when a host or service is up or down in a separate log file for each day. The log file for today is found at /usr/local/nagios/var/nagios.log while the logs for all previous days are in /usr/local/nagios/var/archives/ named nagios-[MM]-[DD]-[YYYY]-00.log.</p>
<p>When you change the host name in your configuration file you must replace all instances of the old host name with the new one in all the log files. To do this you will run the following commands:<br />
<blockquote>sed -i &#8216;s/[old host name];/[new host name];/g&#8217; /usr/local/nagios/var/nagios.log<br />
sed -i &#8216;s/[old host name];/[new host name];/g&#8217; /usr/local/nagios/var/archives/*.log</p>
<p>Example for renaming &#8216;host_name&#8217; from web-server-1 to web-server-2:<br />
sed -i &#8216;s/web-server-1;/web-server-2;/g&#8217; /usr/local/nagios/var/nagios.log<br />
sed -i &#8216;s/web-server-1;/web-server-2;/g&#8217; /usr/local/nagios/var/archives/*.log</p></blockquote>
<p></p>
<p>Below is a Perl script I wrote that makes this easy and quick:</p>
<blockquote><p>#!/usr/bin/perl<br />
use warnings;<br />
use strict;</p>
<p>##&nbsp; This Perl script, written by Skyler Call, prompts the user for the old and new<br />
##&nbsp; host names and corrects all the Nagios log files; thus keeping all the history<br />
##&nbsp; from the old host name</p>
<p># Prompt user to input the old and new host names<br />
my ($oldHostName, $newHostName);<br />
print &#8220;Old Host Name: &#8220;;<br />
chomp($oldHostName = &lt;STDIN&gt;);<br />
print &#8220;New Host Name: &#8220;;<br />
chomp($newHostName = &lt;STDIN&gt;);</p>
<p># Rename host name from old to new in all log files<br />
my $todaysLog = `sed -i &#8220;s/$oldHostName;/$newHostName;/g&#8221; /usr/local/nagios/var/nagios.log`;<br />
print $todaysLog;<br />
my $pastLogs = `sed -i &#8220;s/$oldHostName;/$newHostName;/g&#8221; /usr/local/nagios/var/archives/*.log`;<br />
print $pastLogs;</p>
<p># Alert user that renaming is complete<br />
print &#8220;The old host name, $oldHostName, has been replaced with the new host name, $newHostName, in all Nagios log files\n&#8221;;</p></blockquote>
<p>
<script type="text/javascript"><!--
  google_ad_client = "pub-9370590211138523";
  /* 468x60, created 4/8/10 */
  google_ad_slot = "5505018188";
  google_ad_width = 468;
  google_ad_height = 60;
  //-->
</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skylercall.com/2011/08/restore-trends-after-renaming-host-in-nagios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Motion JPEG Support on Android</title>
		<link>http://www.skylercall.com/2010/11/m-jpeg-support-on-android/</link>
		<comments>http://www.skylercall.com/2010/11/m-jpeg-support-on-android/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 02:24:54 +0000</pubDate>
		<dc:creator>skylercall</dc:creator>
				<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.skylercall.com/?p=431</guid>
		<description><![CDATA[Since as early as February 18, 2008 Android users have been complaining about the lack of M-JPEG support in the built-in browser. Despite the complaints and the lengthy wait, little or nothing has been done to fix it. On October 7, 2010 Mozilla announced the beta release of Firefox for Android. Just as I had [...]]]></description>
			<content:encoded><![CDATA[<p>Since as early as February 18, 2008 Android users have been <a href="http://code.google.com/p/android/issues/detail?id=301" target="_blank">complaining about the lack of M-JPEG support</a> in the built-in browser. Despite the complaints and the lengthy wait, little or nothing has been done to fix it.</p>
<p>On October 7, 2010 Mozilla announced the <a href="http://blog.mozilla.com/blog/2010/10/07/firefox-4-beta-for-android-and-maemo/" target="_blank">beta release of Firefox for Android</a>. Just as I had done months earlier with <a href="http://www.opera.com/mobile/download/">Opera&#8217;s mobile browser</a>, after downloading and installing Firefox on my phone, I went straight to <a href="http://www.livelakeview.com/lakes/deercreek/" target="_blank">one of the many IP cameras I manage</a> to check for M-JPEG support. To my surprise, it worked!</p>
<p>It makes me very happy that someone has finally made it a priority to bring M-JPEG support to <a href="http://www.android.com" target="_blank">Android</a>. iPhone users have had this since possibly its first release. Thank you Mozilla for making this work. I&#8217;ll give you a shot as my primary mobile browser.</p>
<p>Download Mozilla Firefox 4 Beta for Android at <a href="http://www.mozilla.com/m/beta" target="_blank">http://www.mozilla.com/m/beta</a>.<br />
<script type="text/javascript"><!--
  google_ad_client = "pub-9370590211138523";
  /* 468x60, created 4/8/10 */
  google_ad_slot = "5505018188";
  google_ad_width = 468;
  google_ad_height = 60;
  //-->
</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skylercall.com/2010/11/m-jpeg-support-on-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup Linux Server To Amazon S3</title>
		<link>http://www.skylercall.com/2010/10/backup-linux-server-to-amazon-s3/</link>
		<comments>http://www.skylercall.com/2010/10/backup-linux-server-to-amazon-s3/#comments</comments>
		<pubDate>Sat, 30 Oct 2010 04:49:56 +0000</pubDate>
		<dc:creator>skylercall</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.skylercall.com/?p=339</guid>
		<description><![CDATA[I manage a few Linux web servers. Some are for personal use, others for my employer; some I have physical access to, others I don&#8217;t. Despite wishes and even prayers, hardware can and will fail. Data centers can have service outages. It is important to keep an up-to-date, external copy of all your data in [...]]]></description>
			<content:encoded><![CDATA[<p>I manage a few Linux web servers. Some are for personal use, others for my employer; some I have physical access to, others I don&#8217;t. Despite wishes and even prayers, hardware can and will fail. Data centers can have service outages. It is important to keep an up-to-date, external copy of all your data in a secure place for that day when something really bad happens. Below I describe how I use Amazon S3 and s3cmd to keep my servers backed up.</p>
<h3>Amazon S3</h3>
<p>Imagine the data infrastructure obstacles Amazon had to overcome to build the largest online shopping center. Most of us do not have the resources to build and maintain such a reliable and expandable system as they have developed for their own use. Thankfully, for a <a href="http://aws.amazon.com/s3/#pricing" target="_blank">relatively small fee</a>, Amazon provides use of their infrastructure under the name <a href="http://aws.amazon.com/" target="_blank">Amazon Web Services</a>:</p>
<blockquote><p>&#8220;[With Amazon Web Services] you can take advantage of Amazon.com’s global computing infrastructure, that is the backbone of Amazon.com’s multi-billion retail business and transactional enterprise whose scalable, reliable, and secure distributed computing infrastructure has been honed for over a decade.</p>
<p>Using Amazon Web Services, an e-commerce web site can weather unforeseen demand with ease; a pharmaceutical company can “rent” computing power to execute large-scale simulations; a media company can serve unlimited videos, music, and more; and an enterprise can deploy bandwidth-consuming services and training to its mobile workforce.&#8221; &#8211; taken from <a href="http://aws.amazon.com/what-is-aws/" target="_blank">http://aws.amazon.com/what-is-aws/</a></p></blockquote>
<p>The Amazon Web Services product we are taking advantage of as the location of our backup storage is <a href="http://aws.amazon.com/s3/" target="_blank">S3 (Simple Storage Service)</a>. Create an account and then use the <a href="https://console.aws.amazon.com/s3/home" target="_blank">Management Console</a> to create a bucket (container for your storage). You can create as many buckets as you like but the bucket names must be globally unique. I use a specific prefix for all my buckets (such as my initials) and create a bucket for each piece of hardware I want to backup.</p>
<p>The important information you will need to configure your backup tool is your Access Key ID and Secret Access Key. They are found under Account > Security Credentials. Do not allow anyone else to have access to these two keys because with them anyone can access your data stored in S3 and begin racking up a large bill if they like.</p>
<h3>s3cmd</h3>
<p><a href="http://s3tools.org/s3cmd" target="_blank">s3cmd</a> is a free Linux command line tool for uploading and downloading data to and from your Amazon S3 account.</p>
<p><a href="http://s3tools.org/download" target="_blank">Download and install s3tools manually</a> or do what I did and <a href="http://s3tools.org/repositories" target="_blank">add their package repository to your package manager</a> for a much easier install.</p>
<p>After installing s3cmd configure it by running the following command:<br />
<code># s3cmd --configure</code><br />
Enter your Access Key ID and Secret Access Key discussed earlier and use the default settings for the rest of the options unless you know otherwise.</p>
<p>If you haven&#8217;t already created a bucket you can do that now with s3cmd:<br />
<code># s3cmd mb s3://unique-bucket-name</code><br />
List your current buckets to make sure you successfully created one:<br />
<code># s3cmd ls<br />
2010-10-30 02:15  s3://your-bucket-name</code><br />
You can now upload, list, and download content:<br />
<code># s3cmd put somefile.txt s3://your-bucket-name/somefile.txt<br />
somefile.txt -> s3://your-bucket-name/somefile.txt  [1 of 1]<br />
 17835 of 17835   100% in    0s    35.79 kB/s  done<br />
# s3cmd ls s3://your-bucket-name<br />
2010-10-30 02:20     17835   s3://your-bucket-name/somefile.txt<br />
# s3cmd get s3://your-bucket-name/somefile.txt somefile-2.txt<br />
s3://your-bucket-name/somefile.txt -> somefile-2.txt  [1 of 1]<br />
 17835 of 17835   100% in    0s    39.77 kB/s  done<br />
</code><br />
A much better and more advanced method of backing up your data is to use &#8216;sync&#8217; instead of &#8216;put&#8217; or &#8216;get&#8217;. Read more about how I use sync in the next section.</p>
<h3>Automate backup with a shell script and cron job</h3>
<p>Below is a sample of the shell script I wrote to backup one of my servers:<br />
<code>#!/bin/sh<br />
# Syncronize /root with S3<br />
s3cmd sync --recursive /root/ s3://my-bucket-name/root/<br />
# Syncronize /home with S3<br />
s3cmd sync --recursive /home/ s3://my-bucket-name/home/<br />
# Syncronize crontabs with S3<br />
s3cmd sync /var/spool/cron/ s3://my-bucket-name/cron/<br />
# Syncronize /var/www/vhosts with S3<br />
s3cmd sync --exclude 'mydomain.com/some-directory/*.jpg' --recursive /var/www/vhosts/ s3://my-bucket-name/vhosts/<br />
# Syncronize MySQL databases with S3<br />
mysqldump -u root --password=mysqlpassword --all-databases --result-file=/root/all-databases.sql<br />
s3cmd put /root/all-databases.sql s3://my-bucket-name/mysql/<br />
rm -f /root/all-databases.sql</code><br />
I use &#8216;s3cmd sync &#8211;recursive /root/ s3://my-bucket-name/root/&#8217; and &#8216;s3cmd sync &#8211;recursive /home/ s3://my-bucket-name/home/&#8217; to synchronize all data in the local /root and /home directories including their subdirectories with S3. I use &#8216;sync&#8217; instead of &#8216;put&#8217; because I do not always know exactly what files are stored in these folders. I want everything backed up, including any new files created in the future.</p>
<p>With &#8216;s3cmd sync /var/spool/cron/ s3://my-bucket-name/cron/&#8217; I omit &#8216;&#8211;recursive&#8217; because I do not care about any subdirectories (there aren&#8217;t any).</p>
<p>With &#8220;s3cmd sync &#8211;exclude &#8216;mydomain.com/some-directory/*.jpg&#8217; &#8211;recursive /var/www/vhosts/ s3://my-bucket-name/vhosts/&#8221; I synchronize /var/www/vhosts but exclude all jpg files inside a particular directory because they are replaced very frequently by new versions and are unimportant to me once they are a few minutes old.</p>
<p>Using <a href="http://dev.mysql.com/doc/refman/5.5/en/mysqldump.html" target="_blank">mysqldump</a> I export all databases to a text file that can be easily used to recreate them if needed. I upload the newly created file using &#8216;s3cmd put /root/hold-for-S3/all-databases s3://my-bucket-name/mysql/&#8217;.</p>
<p>To read more about sync and its options such as &#8216;&#8211;dry-run&#8217;, &#8216;&#8211;skip-existing&#8217;, and &#8216;&#8211;delete-removed&#8217; read <a href="http://s3tools.org/s3cmd-sync" target="_blank">http://s3tools.org/s3cmd-sync</a>.</p>
<p>Create a cron job to execute your shell script as often as you like. Now you can be less worried about losing all your important data.<br />
<script type="text/javascript"><!--
  google_ad_client = "pub-9370590211138523";
  /* 468x60, created 4/8/10 */
  google_ad_slot = "5505018188";
  google_ad_width = 468;
  google_ad_height = 60;
  //-->
</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skylercall.com/2010/10/backup-linux-server-to-amazon-s3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitor Non-Standard Ports in Nagios</title>
		<link>http://www.skylercall.com/2010/08/monitor-non-standard-ports-in-nagios/</link>
		<comments>http://www.skylercall.com/2010/08/monitor-non-standard-ports-in-nagios/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 20:30:19 +0000</pubDate>
		<dc:creator>skylercall</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.skylercall.com/?p=312</guid>
		<description><![CDATA[I have been playing with Nagios over the last couple days. Aside from the steep learning curve I am quite happy with it. The largest frustration I encountered, however, is that no where in their official documentation does it say anything about monitoring services that are on non-standard ports. After searching for a solution I [...]]]></description>
			<content:encoded><![CDATA[<p>I have been playing with <a href="http://www.nagios.org" target="_blank">Nagios</a> over the last couple days. Aside from the steep learning curve I am quite happy with it. The largest frustration I encountered, however, is that no where in their <a href="http://nagios.sourceforge.net/docs/3_0/toc.html" target="_blank">official documentation</a> does it say anything about monitoring services that are on non-standard ports. After searching for a solution I finally came across a few people talking about defining a custom command like this:</p>
<p><code>define command{<br />
&nbsp;command_name	check_customport<br />
&nbsp;command_line /usr/lib/nagios/plugins/check_tcp -H $HOSTADDRESS$ -p [PORT]<br />
}</code><br />
Using this method required extra definitions in my configuration files and even then my services were reported as working when in fact they were not (although, I may have just figured out why).</p>
<p>There is a much simpler way! I was sure there must be a native command for altering which port Nagios checks. Finally, I found it <a href="http://wiki.nagios.org/index.php/Howtos:checkbyssh_RedHat" target="_blank">buried in their wiki</a>:</p>
<p><code>define service{<br />
&nbsp;use generic-service<br />
&nbsp;host_name remotehost<br />
&nbsp;service_description HTTP<br />
&nbsp;check_command check_http!-p [PORT]<br />
}<br />
</code><br />
It is as simple as appending &#8220;!-p [Your Custom Port Goes Here]&#8221; to the check_command! My Nagios definitions just got a lot simpler.<br />
<script type="text/javascript"><!--
  google_ad_client = "pub-9370590211138523";
  /* 468x60, created 4/8/10 */
  google_ad_slot = "5505018188";
  google_ad_width = 468;
  google_ad_height = 60;
  //-->
</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skylercall.com/2010/08/monitor-non-standard-ports-in-nagios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Helps Me Be More Productive</title>
		<link>http://www.skylercall.com/2010/06/windows-7-helps-me-be-more-productive/</link>
		<comments>http://www.skylercall.com/2010/06/windows-7-helps-me-be-more-productive/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 17:58:58 +0000</pubDate>
		<dc:creator>skylercall</dc:creator>
				<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.skylercall.com/?p=264</guid>
		<description><![CDATA[Forgive me if this is all old news to you. I skipped over Windows Vista so I am not aware if these features are new as of Windows 7 or just new since Windows XP. Also, I am running Windows 7 Professional 64-Bit. Some of these features may not be available in Home or Home [...]]]></description>
			<content:encoded><![CDATA[<p>Forgive me if this is all old news to you. I skipped over Windows Vista so I am not aware if these features are new as of Windows 7 or just new since Windows XP. Also, I am running Windows 7 Professional 64-Bit. Some of these features may not be available in Home or Home Premium editions.</p>
<h3>Sticky Notes</h3>
<p><img class="alignright size-full wp-image-265" title="Sticky-Notes" src="http://www.skylercall.com/wp-content/uploads/2010/06/Sticky-Notes.png" alt="" width="192" height="216" />With Windows XP, throughout the day, I would accumulate many instances of Notepad; each with different notes taken from phone calls, assignments given to me by others in the office, or just little tasks that I did not want to forget. Having so many instances of Notepad open all at once would clutter up the taskbar and also the Alt+Tab window making it more confusing and time-consuming to navigate from one window to another. When it came time to restart my computer for whatever reason I first had to go through all the Notepad instances and save them to my desktop. If my computer ever shutdown unexpectedly due to a crash or power-loss I lost all my unsaved notes from that day.</p>
<p>After installing Windows 7 on my new computer I was quite happy to see a program called Sticky Notes. Sticky Notes solves all the problems I had experienced previously by using Notepad to log all of my notes. The individual notes even grow automatically as I type more and more text in them. If they get too big for my liking I can then make them smaller again and a scrollbar appears. You can also change the color of each note if you wish. The only feature I miss is the ability to change the font size. Sometimes only two words fit on one line before the next gets pushed down which isn&#8217;t aesthetically pleasing.</p>
<h3>Full Date Displayed in Taskbar</h3>
<p>This may sound like something unimportant but I am horrible at keeping track of the current date. I am always amazed when others can easily predict what day of the week some future date will fall on. In Windows XP, unless you make your taskbar at least twice as tall as the default size or move it over to one of the left or right side of your monitor you can only see the time. To see the date you have to hover your mouse over and wait for the tooltip to pop up showing the date (which oddly doesn&#8217;t always work) or you have to double click on the clock to open up the Date and Time Properties window which comes with its own problems. Have you ever spent a moment browsing the calendar and then accidentally clicked OK instead of Cancel? The system date changes!</p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2010/06/Date-and-Time.png" alt="" title="Date-and-Time" class="alignright size-full wp-image-274" />Now with Windows 7 I can see the full date without moving my mouse. If I want to browse the calendar I click it an up pops a non-destructive, read-only calendar! If I absolutely want to change my system date (which I&#8217;ve never wanted to do before but I suppose is necessary for computers that don&#8217;t have access to the internet for an NTP server) I first have to click &#8216;Change date and time settings&#8230;&#8217;.</p>
<h3>Pin Programs to Taskbar</h3>
<p>Access to my favorite and most-used programs is now only one mouse click away thanks to the &#8216;Pin this program to taskbar&#8217; feature. Now if only Microsoft would allow me to pin a folder to it without using <a href="http://www.unawave.de/windows-7-tipps/folder-to-taskbar.html?lang=EN">a silly hack</a>!</p>
<p>And finally, I am allowed to reorder the position of the open applications shown in the taskbar! Yay!</p>
<h3>Better Navigation in Windows Explorer</h3>
<p><img src="http://www.skylercall.com/wp-content/uploads/2010/06/Windows-Explorer.png" alt="" title="Windows-Explorer" width="290" height="69" class="alignright size-full wp-image-288" />This one is a bit difficult for me to explain. When I first started navigating in Windows Explorer I panicked when I couldn&#8217;t find the Up button to jump to the parent folder (Yes, I know. There is a Back button but back isn&#8217;t always up!) but then I found something better. There is an ant trail at the top where you can click on any parent folder. Even better is that each parent folder has an arrow next to it that when clicked drops down to give you access to any of its sub folders. This makes moving around much quicker.</p>
<h3>Configure Schedule in Disk Defragmenter</h3>
<p><img src="http://www.skylercall.com/wp-content/uploads/2010/06/Disk-Defragmenter-300x239.png" alt="" title="Disk-Defragmenter" width="300" height="239" class="alignright size-medium wp-image-303" />Keeping my hard drives fragment-free, optimized for speed and efficiency, is now easier with Windows 7. Back in Windows XP I had to setup a custom Scheduled Task to run Disk Defragmenter on a schedule. Now, setting up the same schedule is easily done using the native Configure Schedule tool within Disk Defragmenter. Click &#8216;Configure Schedule&#8217;, set the frequency, the time of day, and you are done!</p>
<h3>Snipping Tool</h3>
<p>How do you think I got all the nice screenshots for this post? Capturing part of the screen used to mean taking a screenshot, pasting it in Microsoft Paint, saving it, opening the saved image in Adobe Photoshop, cropping it, and saving the final image! That is a lot of steps. So many, that I often avoided providing a screenshot.</p>
<p>Now, with Windows 7 I have Snipping Tool! Snipping Tool allows me to draw a box around an area of the screen and click save. It is that easy! If you don&#8217;t want to draw a rectangle you can use the other snip types, Free-form Snip, Window Snip, and Full-screen Snip. After capturing an image you can draw on it or use a highlighter before saving it. My only complaint is that I haven&#8217;t found a way to get a shot of something that requires control of the mouse to display such as tooltips, drop-down meus, and right-click menus. I also couldn&#8217;t figure out how to get a snip of the tool itself to show you here. Yes, I could open up Paint and then Photoshop but who does that anymore!<br />
<script type="text/javascript"><!--
  google_ad_client = "pub-9370590211138523";
  /* 468x60, created 4/8/10 */
  google_ad_slot = "5505018188";
  google_ad_width = 468;
  google_ad_height = 60;
  //-->
</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skylercall.com/2010/06/windows-7-helps-me-be-more-productive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>East Bay Studios Meetup Group – November Event</title>
		<link>http://www.skylercall.com/2009/11/east-bay-studios-meetup-group-november-event/</link>
		<comments>http://www.skylercall.com/2009/11/east-bay-studios-meetup-group-november-event/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 21:41:31 +0000</pubDate>
		<dc:creator>skylercall</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.skylercall.com/?p=233</guid>
		<description><![CDATA[This month we met to take photos of models at Pete&#8216;s new studio. It gave me a real chance to try out my Westcott Umbrella and recently purchased Canon EOS 7D. Below are some of the photos I took during the event. To view the rest please visit the full set on Flickr.]]></description>
			<content:encoded><![CDATA[<p>This month we met to take photos of models at <a href="http://www.meetup.com/EastBayStudios/members/4506627/" target="_blank">Pete</a>&#8216;s new studio. It gave me a real chance to try out my <a href="http://www.skylercall.com/2009/10/westcott-45-optical-white-satin-umbrella-with-removable-black-cover/" target="_blank">Westcott Umbrella</a> and <a href="http://friendfeed.com/skylercall/e0f12a57/i-just-picked-up-canon-7d" target="_blank">recently purchased</a> <a href="http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&#038;fcategoryid=139&#038;modelid=19356" target="_blank">Canon EOS 7D</a>. Below are some of the photos I took during the event. To view the rest please visit the <a href="http://www.flickr.com/photos/24887904@N02/sets/72157622669387243/" target="_blank">full set on Flickr</a>.</p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/11/CallStudios-0190.jpg" alt="CallStudios-0190" title="CallStudios-0190" width="600" height="391" class="alignnone size-full wp-image-234" /></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/11/CallStudios-0236.jpg" alt="CallStudios-0236" title="CallStudios-0236" width="600" height="880" class="alignnone size-full wp-image-235" /></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/11/CallStudios-0276.jpg" alt="CallStudios-0276" title="CallStudios-0276" width="600" height="863" class="alignnone size-full wp-image-236" /></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/11/CallStudios-0304.jpg" alt="CallStudios-0304" title="CallStudios-0304" width="600" height="888" class="alignnone size-full wp-image-237" /></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/11/CallStudios-0340.jpg" alt="CallStudios-0340" title="CallStudios-0340" width="600" height="393" class="alignnone size-full wp-image-238" /></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/11/CallStudios-0372.jpg" alt="CallStudios-0372" title="CallStudios-0372" width="600" height="401" class="alignnone size-full wp-image-239" /></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/11/CallStudios-0380.jpg" alt="CallStudios-0380" title="CallStudios-0380" width="600" height="848" class="alignnone size-full wp-image-240" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skylercall.com/2009/11/east-bay-studios-meetup-group-november-event/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Westcott 45&#8243; Optical White Satin Umbrella with Removable Black Cover</title>
		<link>http://www.skylercall.com/2009/10/westcott-45-optical-white-satin-umbrella-with-removable-black-cover/</link>
		<comments>http://www.skylercall.com/2009/10/westcott-45-optical-white-satin-umbrella-with-removable-black-cover/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 17:01:29 +0000</pubDate>
		<dc:creator>skylercall</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.skylercall.com/?p=213</guid>
		<description><![CDATA[In the past when I have used an umbrella it has been one I borrowed from my friend Clark Weakley. I recently had my first engagement shoot earlier this month and will hopefully be shooting the bridals, wedding, and reception as well. I decided I really needed to get my own umbrella. Last year when [...]]]></description>
			<content:encoded><![CDATA[<p>In the past when I have used an umbrella it has been one I borrowed from my friend <a href="http://www.meetup.com/provophoto/members/9250754/" target="_blank">Clark Weakley</a>. I recently had my first <a href="http://www.callstudios.com/Weddings/Jessica-and-Adam/Engagements/10005005_dDLj5" target="_blank">engagement shoot</a> earlier this month and will hopefully be shooting the bridals, wedding, and reception as well. I decided I really needed to get my own umbrella. Last year when I attended a <a href="http://www.edpierceseminars.com/" target="_blank">seminar by Ed Pierce</a> (fantastic seminar by the way) all I heard when it came to lighting equipment was <a href="http://www.fjwestcott.com/" target="_blank">Westcott</a> this and Westcott that. So, I decided to buy the <a href="http://www.fjwestcott.com/products/product.cfm?itemnum=2016&#038;tbl=products&#038;head=umbrellas" target="_blank">Westcott 45&#8243; Optical White Satin Umbrella with Removable Black Cover</a>.</p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/10/WestcottUmbrella.jpg" alt="Westcott Umbrella" title="Westcott Umbrella" width="600" height="480" class="alignnone size-full wp-image-216" /></p>
<p>With the black cover on you shoot into the umbrella and the light bounces back at our subject. Remove the cover and you have a semi-transparent shoot-through umbrella. I was worried about how hard it might be to remove and replace the cover but was quite pleased when I saw just how easy it was. The black cover has little metal end caps that slip over the end of each umbrella rod.</p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/10/IMG_4590.jpg" alt="Westcott Umbrella Cover" title="Westcott Umbrella Cover" width="600" height="381" class="alignnone size-full wp-image-221" /></p>
<p>I am very impressed with the construction of this umbrella. Every part of it seems so durable including the solid shaft that runs through my flash bracket.</p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/10/IMG_4593.jpg" alt="Westcott Umbrella Solid Shaft" title="Westcott Umbrella Solid Shaft" width="600" height="451" class="alignnone size-full wp-image-224" /></p>
<p>So far my only complaint about this umbrella is that is comes with the same cheap bag as all the other umbrellas I have seen before. My first time putting the umbrella back into the case I discovered that it already has a hole in it.</p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/10/IMG_4603.jpg" alt="Westcott Umbrella Cheap Case" title="Westcott Umbrella Cheap Case" width="600" height="603" class="alignnone size-full wp-image-228" /><br />
<script type="text/javascript"><!--
  google_ad_client = "pub-9370590211138523";
  /* 468x60, created 4/8/10 */
  google_ad_slot = "5505018188";
  google_ad_width = 468;
  google_ad_height = 60;
  //-->
</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skylercall.com/2009/10/westcott-45-optical-white-satin-umbrella-with-removable-black-cover/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Christiansen Family</title>
		<link>http://www.skylercall.com/2009/10/christiansen-family/</link>
		<comments>http://www.skylercall.com/2009/10/christiansen-family/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 21:57:52 +0000</pubDate>
		<dc:creator>skylercall</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.skylercall.com/?p=204</guid>
		<description><![CDATA[Below are some of the photos I took of my wife&#8217;s parents and her siblings that still live at home. View the full gallery at http://www.callstudios.com]]></description>
			<content:encoded><![CDATA[<p>Below are some of the photos I took of my wife&#8217;s parents and her siblings that still live at home. View the full gallery at <a href="http://www.callstudios.com/Portraits/Christiansen-F/9996566_n97WA" target="_blank">http://www.callstudios.com</a></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/10/IMG_3918.jpg" alt="Christiansen Family" title="Christiansen Family" width="600" height="400" class="alignnone size-full wp-image-205" /></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/10/IMG_4038.jpg" alt="Mark and Jann" title="Mark and Jann" width="600" height="859" class="alignnone size-full wp-image-206" /></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/10/IMG_3948.jpg" alt="Nicole Christiansen" title="Nicole Christiansen" width="600" height="395" class="alignnone size-full wp-image-207" /></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/10/IMG_3886.jpg" alt="Tyler Christiansen" title="Tyler Christiansen" width="600" height="400" class="alignnone size-full wp-image-208" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skylercall.com/2009/10/christiansen-family/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>East Bay Studios Meetup Group &#8211; September Event</title>
		<link>http://www.skylercall.com/2009/09/east-bay-studios-meetup-group-september-event/</link>
		<comments>http://www.skylercall.com/2009/09/east-bay-studios-meetup-group-september-event/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 16:40:25 +0000</pubDate>
		<dc:creator>skylercall</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.skylercall.com/?p=190</guid>
		<description><![CDATA[This month we met outside an abandoned building near the Provo Airport to take photos of models and cars. Below are some of the photos I took during the event. To view the rest please visit the full set on Flickr.]]></description>
			<content:encoded><![CDATA[<p>This month we met outside an abandoned building near the Provo Airport to take photos of models and cars. Below are some of the photos I took during the event. To view the rest please visit the <a href="http://www.flickr.com/photos/24887904@N02/sets/72157622272281979/" target="_blank">full set on Flickr</a>.</p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/09/3927510479_d32fb63813_o.jpg" alt="3927510479_d32fb63813_o" title="3927510479_d32fb63813_o" width="600" height="400" class="alignnone size-full wp-image-191" /></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/09/3927510733_5ea23c3893_o.jpg" alt="3927510733_5ea23c3893_o" title="3927510733_5ea23c3893_o" width="600" height="400" class="alignnone size-full wp-image-192" /></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/09/3927510973_5cc0d2cd9d_o.jpg" alt="3927510973_5cc0d2cd9d_o" title="3927510973_5cc0d2cd9d_o" width="600" height="901" class="alignnone size-full wp-image-193" /></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/09/3927511225_ab915fcbff_o.jpg" alt="3927511225_ab915fcbff_o" title="3927511225_ab915fcbff_o" width="600" height="400" class="alignnone size-full wp-image-194" /></p>
<p><img src="http://www.skylercall.com/wp-content/uploads/2009/09/3928293148_31cdb9e692_o.jpg" alt="3928293148_31cdb9e692_o" title="3928293148_31cdb9e692_o" width="600" height="400" class="alignnone size-full wp-image-195" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skylercall.com/2009/09/east-bay-studios-meetup-group-september-event/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

