<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>wrighters.net &#187; howto</title>
	<atom:link href="http://www.wrighters.net/blog/articles/category/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wrighters.net/blog</link>
	<description>some writing about some things</description>
	<lastBuildDate>Tue, 31 Jan 2012 12:30:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Syncing google contacts on  iOS</title>
		<link>http://www.wrighters.net/blog/articles/2011/01/20/syncing-google-contacts-on-ios/</link>
		<comments>http://www.wrighters.net/blog/articles/2011/01/20/syncing-google-contacts-on-ios/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 04:11:59 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[gadgets]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[techie]]></category>
		<category><![CDATA[iphone ios ipad]]></category>

		<guid isPermaLink="false">http://www.wrighters.net/blog/?p=197</guid>
		<description><![CDATA[I use my google account to keep my addresses synced up between all my devices.  I realized that I was creating contacts on my iPhone or iPad and they weren&#8217;t showing up in my address book on my mac or in my google account.  A simple google search didn&#8217;t seem to turn up what the…]]></description>
			<content:encoded><![CDATA[<p>I use my google account to keep my addresses synced up between all my devices.  I realized that I was creating contacts on my iPhone or iPad and they weren&#8217;t showing up in my address book on my mac or in my google account.  A simple google search didn&#8217;t seem to turn up what the issue was, and then after poking around a bit I realized what was going on.  By default, when you connect your google account to your iOS device, it appears that it creates new contacts on the device, and not on your google account.</p>
<p>It was pretty easy to fix.  Just go to the Settings app&#8230;</p>
<p><a href="http://www.wrighters.net/blog/wp-content/uploads/2011/01/20110119-101335.jpg"><img title="20110119-101335.jpg" src="http://www.wrighters.net/blog/wp-content/uploads/2011/01/20110119-101335-200x300.jpg" alt="" width="200" height="300" /></a></p>
<hr />
Tap on Mail, Contacts, Calendars.  Then scroll down to the Contacts section.</p>
<p><a href="http://www.wrighters.net/blog/wp-content/uploads/2011/01/20110119-101417.jpg"><img title="20110119-101417.jpg" src="http://www.wrighters.net/blog/wp-content/uploads/2011/01/20110119-101417-200x300.jpg" alt="" width="200" height="300" /></a></p>
<p>Tap on Default Account, and make sure it&#8217;s set to your gmail contacts account, not &#8216;On My iPhone&#8217;.  Contacts should now sync to your gmail account immediately when you update or add them.</p>
<p><a href="http://www.wrighters.net/blog/wp-content/uploads/2011/01/20110119-101356.jpg"><img class="alignleft size-medium wp-image-195" title="20110119-101356.jpg" src="http://www.wrighters.net/blog/wp-content/uploads/2011/01/20110119-101356-200x300.jpg" alt="" width="200" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wrighters.net/blog/articles/2011/01/20/syncing-google-contacts-on-ios/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Easy way to combine pdf files into one</title>
		<link>http://www.wrighters.net/blog/articles/2010/03/13/easy-way-to-combine-pdf-files-into-one/</link>
		<comments>http://www.wrighters.net/blog/articles/2010/03/13/easy-way-to-combine-pdf-files-into-one/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 20:08:46 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[techie]]></category>

		<guid isPermaLink="false">http://www.wrighters.net/blog/?p=164</guid>
		<description><![CDATA[This is a bit of a techie post, but I wanted to document how I do this since it seems to come up once or twice a year and I always forget the steps. I had to submit a form via email to get reimbursed for my flex spending account and had to include scanned…]]></description>
			<content:encoded><![CDATA[<p>This is a bit of a techie post, but I wanted to document how I do this since it seems to come up once or twice a year and I always forget the steps.</p>
<p>I had to submit a form via email to get reimbursed for my flex spending account and had to include scanned copies of my receipts.  I wanted to send this as one file, but couldn&#8217;t remember how to combine the tiff files that my scanner software generated into one file.  If you do a google search, you end up finding little utilities for windows or a tutorial of how to use Adobe Acrobat to accomplish this.  Using a mac or linux machine, this is pretty straightforward with some free software.</p>
<p>You need ImageMagick and ghostscript installed.  For the mac, the easiest thing is to use the wonderful <a href="http://darwinports.com/">Darwin ports</a> to do this.  To do this with ports is easy:</p>
<pre>$ sudo port install ImageMagick ghostscript</pre>
<p>Then, if you have tiff files (or other formats) from your scanner you want to convert them to pdf.  This is easy using the ImageMagick convert tool.  For example:</p>
<pre>$ convert filename.tiff filename.pdf</pre>
<p>The convert command determines the format based on the file suffix, so this will convert the tiff file to a pdf.  It really is a swiss army knife of tools and this is just one of the most basic things you can do with it.</p>
<p>Then, take the multiple pdfs and combine them into one using ghostscript:</p>
<pre>$ gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=combined.pdf file1.pdf file2.pdf</pre>
<p>Tada!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wrighters.net/blog/articles/2010/03/13/easy-way-to-combine-pdf-files-into-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

