<?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>HuberBlog ::Jason Huber</title>
	<atom:link href="http://huberblog.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://huberblog.com</link>
	<description>This is where Jason puts his stuff of personal interest.</description>
	<lastBuildDate>Wed, 25 Jan 2012 21:13:04 +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>Add an Archive button to outlook 2010</title>
		<link>http://huberblog.com/2012/01/25/add-an-archive-button-to-outlook-2010/</link>
		<comments>http://huberblog.com/2012/01/25/add-an-archive-button-to-outlook-2010/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 21:11:20 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=515</guid>
		<description><![CDATA[I recently moved to a more concise Outlook folder structure: So then I started spending a lot of time simply moving messages from the inbox to the archived folder. Also when I read a message and move it, it was not marked as read. I hated wasting those precious 2 seconds So I googled something [...]]]></description>
			<content:encoded><![CDATA[<p>I recently moved to a more concise Outlook folder structure:<br />
<a href="http://huberblog.com/wp-content/uploads/2012/01/outlookfolders.png"><img src="http://huberblog.com/wp-content/uploads/2012/01/outlookfolders.png" alt="" title="outlookfolders" width="221" height="539" class="alignleft size-full wp-image-516" /></a></p>
<p>So then I started spending a lot of time simply moving messages from the inbox to the archived folder. Also when I read a message and move it, it was not marked as read. I hated wasting those precious 2 seconds <img src='http://huberblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>So I googled something like &#8220;outlook 2010 archive plugin&#8221; and ended up at lifehacker:<br />
<a href="http://lifehacker.com/5175347/add-a-gmail+like-archive-button-to-microsoft-outlook">http://lifehacker.com/5175347/add-a-gmail+like-archive-button-to-microsoft-outlook</a></p>
<p>The lifehacker example was for outlook 2007 and for an inbox with a single folder (one email address).</p>
<p>I created the certificate, I added the developer tools using this link:<br />
<a href="http://msdn.microsoft.com/en-us/library/ee814736.aspx">http://msdn.microsoft.com/en-us/library/ee814736.aspx</a></p>
<p>I enabled Macros using this information:</p>
<p>http://answers.microsoft.com/en-us/office/forum/office_2010-outlook/how-to-enable-macros-in-outlook-2010/791d5b21-c3e9-4e09-89f9-ea53341d7cb0</p>
<p>and I used the following code (worked fine for one folder):<br />
<code><br />
Sub Archive()<br />
Set ArchiveFolder = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderInbox).Folders("Archived")<br />
For Each Msg In ActiveExplorer.Selection<br />
Msg.Move ArchiveFolder<br />
Next Msg<br />
End Sub<br />
</code></p>
<p>Make sure you folder is named &#8220;Archived&#8221; or change the code.</p>
<p>Now what happened to me was, if I archived an email from my devry folder, it went into the sage/archived. That would not do.<br />
Also the messages were still UnRead = true unless I clicked off of them and back on.</p>
<p>So I used this code for my situation:</p>
<p><code><br />
Sub Archive()</p>
<p>           Set Folders = Application.GetNamespace("MAPI").Folders</p>
<p>           For j = 1 To Folders.Count<br />
                If Folders(j).Name = "Jason.Huber@sage.com" Or Folders(j).Name = "jhuber@devry.edu" Then<br />
                    If Folders(j).Name = ActiveExplorer.CurrentFolder.Parent Then<br />
                        Set ArchiveFolder = Folders(j).Folders(2).Folders(1)<br />
                         For Each Msg In ActiveExplorer.Selection<br />
                            Msg.UnRead = False<br />
                            Msg.Move ArchiveFolder<br />
                        Next Msg<br />
                    End If<br />
                End If<br />
           Next j<br />
End Sub<br />
</code></p>
<p>Let me know if it works for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2012/01/25/add-an-archive-button-to-outlook-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLLite resources</title>
		<link>http://huberblog.com/2011/09/27/sqllite-resources/</link>
		<comments>http://huberblog.com/2011/09/27/sqllite-resources/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 20:45:45 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Educational]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=514</guid>
		<description><![CDATA[I had a request from a student to show how to connect to a SQLLite db from C#. It turns out it is pretty straight forward. You just need a few tools. I will list what I find here: .NET ADO SQLLite components: http://sourceforge.net/projects/sqlite-dotnet2/ Great tutorial: http://adodotnetsqlite.sourceforge.net/ SQLLite Browser: http://sourceforge.net/projects/sqlitebrowser/]]></description>
			<content:encoded><![CDATA[<p>I had a request from a student to show how to connect to a SQLLite db from C#. It turns out it is pretty straight forward. You just need a few tools. I will list what I find here:</p>
<p>.NET ADO SQLLite components: http://sourceforge.net/projects/sqlite-dotnet2/<br />
Great tutorial: http://adodotnetsqlite.sourceforge.net/<br />
SQLLite Browser: http://sourceforge.net/projects/sqlitebrowser/</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2011/09/27/sqllite-resources/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Dissertation ideas</title>
		<link>http://huberblog.com/2011/06/11/dissertation-ideas/</link>
		<comments>http://huberblog.com/2011/06/11/dissertation-ideas/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 03:56:29 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=512</guid>
		<description><![CDATA[I think I have a good idea for a dissertation. That isn&#8217;t the point of this post. I was watching this video : http://www.youtube.com/watch?v=81lBL_5xHno and had a thought. Initially the thought was something like &#8220;Books are the original form of distance learning.&#8221; And then I realized that when the press was developed that might not [...]]]></description>
			<content:encoded><![CDATA[<p>I think I have a good idea for a dissertation. That isn&#8217;t the point of this post.</p>
<p>I was watching this video : <a href="http://www.youtube.com/watch?v=81lBL_5xHno">http://www.youtube.com/watch?v=81lBL_5xHno</a> and had a thought.</p>
<p>Initially the thought was something like &#8220;Books are the original form of distance learning.&#8221;</p>
<p>And then I realized that when the press was developed that might not have been the purpose. Perhaps it was. You could read the Bible (and interpret the interpretation, in German I believe, by a Great man &#8211; Martin Luther) without the assistance of a member of the Church. If I remember correctly&#8211;from the dvds i watched&#8211;this was a reason the Church was so against the press.</p>
<p>Anyway. Watch your &#8220;p&#8221;s and &#8220;q&#8221;s.</p>
<p>So are books a form of distance learning? Does the average author of a book of learning intend an instructor to be present when the book us used for learning? I think not.</p>
<p>Certainly some books are meant to be used by an instructor in a classroom, but the vast majority of books going back many, many years are meant to be read by a person intellectually capable of grasping the content within. I do not mean to say that I would not have learned more by attending class under Master Luther rather than &#8220;reading&#8221; the New Testament on my iPod (yes iPod at the time&#8211;old school). I would hope that at least Mathew, Mark , Luke and John in their little nutshell would have written their pieces with the intention that a simple person such as myself could understand what they wrote.</p>
<p>To wrap this up. Books are the original form of distance and time spanning learning. No instructor needed. If you think I can only learn by attending a class where you speak to me you are mistaken. </p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2011/06/11/dissertation-ideas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Suspend your disbelief to be a better learner</title>
		<link>http://huberblog.com/2011/06/01/suspend-your-disbelief-to-be-a-better-learner/</link>
		<comments>http://huberblog.com/2011/06/01/suspend-your-disbelief-to-be-a-better-learner/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 06:07:22 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=511</guid>
		<description><![CDATA[Successful learners try and adapt what they already know to new information being received. Unsuccessful learners try and adapt new information to fit with knowledge they have already mastered. When the latter begins to explore a subject that they have no prior information to check against, they struggle and reject everything about the new subject [...]]]></description>
			<content:encoded><![CDATA[<p>Successful learners try and adapt what they already know to new information being received. Unsuccessful learners try and adapt new information to fit with knowledge they have already mastered. When the latter begins to explore a subject that they have no prior information to check against, they struggle and reject everything about the new subject as being wrong or hard or unecessary. The point is to suspend your disbelief (Pallof and Pratt, 2005) just as you would when watching inception. New information is inception.</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2011/06/01/suspend-your-disbelief-to-be-a-better-learner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Be a noisy learner.</title>
		<link>http://huberblog.com/2011/05/28/be-a-noisy-learner/</link>
		<comments>http://huberblog.com/2011/05/28/be-a-noisy-learner/#comments</comments>
		<pubDate>Sun, 29 May 2011 04:50:48 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huberblog.com/2011/05/28/be-a-noisy-learner/</guid>
		<description><![CDATA[Palloff and Pratt describe successful learners in their book Building Online Learning Communities. They make the point that a noisy learner is a successful learner. I agree. Speak up, get involved, and be loud. This is not a one way street. If all I do is preach and you listen you are sure to learn [...]]]></description>
			<content:encoded><![CDATA[<p>Palloff and Pratt describe successful learners in their book Building Online Learning Communities. They make the point that a noisy learner is a successful learner. </p>
<p>I agree. Speak up, get involved, and be loud. This is not a one way street. If all I do is preach and you listen you are sure to learn less than if you question, challenge, and participate!</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2011/05/28/be-a-noisy-learner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Ask (book)</title>
		<link>http://huberblog.com/2011/01/19/the-ask-book/</link>
		<comments>http://huberblog.com/2011/01/19/the-ask-book/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 17:52:53 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Educational]]></category>
		<category><![CDATA[Interpersonal]]></category>
		<category><![CDATA[books phd motivation]]></category>

		<guid isPermaLink="false">http://huberblog.com/2011/01/19/the-ask-book/</guid>
		<description><![CDATA[I started reading The Ask and found it a bit rough honestly. One thing I noticed. It helped me quit drinking. It also motivated me to get some stuff done. Finished five papers in as many days. I was a bit sick, but used my time effectively. Anyway. Good book!]]></description>
			<content:encoded><![CDATA[<p>I started reading The Ask and found it a bit rough honestly. One thing I noticed. It helped me quit drinking. It also motivated me to get some stuff done. </p>
<p>Finished five papers in as many days. I was a bit sick, but used my time effectively. </p>
<p>Anyway. Good book!</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2011/01/19/the-ask-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mikogo.com is the new dimdim but better</title>
		<link>http://huberblog.com/2011/01/19/mikogo-com-is-the-new-dimdim-but-better/</link>
		<comments>http://huberblog.com/2011/01/19/mikogo-com-is-the-new-dimdim-but-better/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 17:48:06 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Educational]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[teaching sharing screen]]></category>

		<guid isPermaLink="false">http://huberblog.com/2011/01/19/mikogo-com-is-the-new-dimdim-but-better/</guid>
		<description><![CDATA[So I was contacted by a Mikogo.com rep after my dimdim post and I gave it a shot. Mikogo is awesome. It not only allows me to share my screen and give control but also let students share their screens and I take control. Just great. It was fast and clear. I recorded using camtasia [...]]]></description>
			<content:encoded><![CDATA[<p>So I was contacted by a Mikogo.com rep after my dimdim post and I gave it a shot. Mikogo is awesome. </p>
<p>It not only allows me to share my screen and give control but also let students share their screens and I take control. Just great. It was fast and clear. </p>
<p>I recorded using camtasia since the mikogo recording was in a proprietary format, but I did that anyway. </p>
<p>The only drawback and it is MINOR is a lack of built in audio. I had skype, so we used that.  No problem. Thanks Mikogo!</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2011/01/19/mikogo-com-is-the-new-dimdim-but-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dimdim.com is dead? Long live join.me</title>
		<link>http://huberblog.com/2011/01/09/dimdim-com-is-dead-long-live-join-me/</link>
		<comments>http://huberblog.com/2011/01/09/dimdim-com-is-dead-long-live-join-me/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 14:48:37 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Educational]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=506</guid>
		<description><![CDATA[I was shocked and dismayed to see salesforce had furchased dimdim and killed it (of course). I was told that my account would be active until 3/11/11. Whatever. I had been using join.me for some time now. Jane wrote about this today and her list fails to mention join.me which I find to be an [...]]]></description>
			<content:encoded><![CDATA[<p>I was shocked and dismayed to see salesforce had furchased dimdim and killed it (of course). I was told that my account would be active until 3/11/11. Whatever. I had been using join.me for some time now.</p>
<p><a href="http://janeknight.typepad.com/pick/2011/01/alternatives-for-dimdim.html">Jane wrote about this today </a>and her list fails to mention join.me which I find to be an easy and outstanding service.</p>
<p>I use this for face-to-face class meetings! I have students in the classroom that I give the link to so that they can better see the screen. The projectors at my school are top of the line, but cannot adequately display a 1440X900 resolution so that a students 20 feet away can see my code. Their physical machine can easily. Also they can screenshot or record from their local machine if they want (and they do!).</p>
<p>I say get join.me. I might even pay for an account I use it so much.</p>
<p>Jane &#8211; add join.me to the TOP of your list. Most of the other services you have alphabetically listed are worthless.</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2011/01/09/dimdim-com-is-dead-long-live-join-me/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why upgrade to a newer browser?</title>
		<link>http://huberblog.com/2010/11/19/why-upgrade-to-a-newer-browser/</link>
		<comments>http://huberblog.com/2010/11/19/why-upgrade-to-a-newer-browser/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 18:25:36 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Educational]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=505</guid>
		<description><![CDATA[Read this. Well if you cannot read it, then upgrade to a newer browser then read it. http://www.20thingsilearned.com/#/browser-protection/1]]></description>
			<content:encoded><![CDATA[<p>Read this. Well if you cannot read it, then upgrade to a newer browser then read it.</p>
<p>http://www.20thingsilearned.com/#/browser-protection/1</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2010/11/19/why-upgrade-to-a-newer-browser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Set instructor response time expectations early</title>
		<link>http://huberblog.com/2010/11/18/set-instructor-response-time-expectations-early/</link>
		<comments>http://huberblog.com/2010/11/18/set-instructor-response-time-expectations-early/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 03:30:31 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=502</guid>
		<description><![CDATA[When we train someone we want to be as helpful as we can. We jump at every question and quickly respond to chats and emails. Watkins points out in 75 e_learning Activities that this may not be the best approach. On page 29 he notes that as a course progresses the demand on the instructor [...]]]></description>
			<content:encoded><![CDATA[<p>When we train someone we want to be as helpful as we can. We jump at every question and quickly respond to chats and emails. Watkins points out in 75 e_learning Activities that this may not be the best approach. On page 29 he notes that as a course progresses the demand on the instructor is likely to increase as well. </p>
<p>I think this is a great point. A 2 minute response time is unreasonable when you are attending an 8-12 week course. What about a 3 day course packed full of information. You probably expect an answer immediately right?</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2010/11/18/set-instructor-response-time-expectations-early/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A rubric for technical training?</title>
		<link>http://huberblog.com/2010/11/17/a-rubric-for-technical-training/</link>
		<comments>http://huberblog.com/2010/11/17/a-rubric-for-technical-training/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 03:15:36 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Teaching]]></category>
		<category><![CDATA[elt 7003]]></category>
		<category><![CDATA[ncu]]></category>
		<category><![CDATA[sage]]></category>

		<guid isPermaLink="false">http://huberblog.com/2010/11/17/a-rubric-for-technical-training/</guid>
		<description><![CDATA[Conrad and Donaldson (2004, engaging the online learner, pp. 28,29) show a great grading rubric. It is really figure 3.1. Can we use that sort of thing in technical training? Sure! The grading rubric tells the student what is expected of the in the assignment. Lazy students will use it to figure out the minimum [...]]]></description>
			<content:encoded><![CDATA[<p>Conrad and Donaldson (2004, engaging the online learner, pp. 28,29) show a great grading rubric. It is really figure 3.1. </p>
<p>Can we use that sort of thing in technical training? Sure! The grading rubric tells the student what is expected of the in the assignment. Lazy students will use it to figure out the minimum they can do to still get the grade they need, but this isn&#8217;t generally a problem with technical training. Our student are very motivated leathers. </p>
<p>So we create a final hands on project and a rubric and add that to the course. The hands on is probably going to be an analysis project. Why had an analysis project in a technical training course? I propose that after troubleshooting skills, analysis is the area where many developers could really use some help. </p>
<p>We shall see:)</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2010/11/17/a-rubric-for-technical-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Course objectives. Important?</title>
		<link>http://huberblog.com/2010/11/17/course-objectives-important/</link>
		<comments>http://huberblog.com/2010/11/17/course-objectives-important/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 02:40:50 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Teaching]]></category>
		<category><![CDATA[elearning]]></category>
		<category><![CDATA[elt7003]]></category>
		<category><![CDATA[ncu]]></category>

		<guid isPermaLink="false">http://huberblog.com/2010/11/17/course-objectives-important/</guid>
		<description><![CDATA[According to Conrad and Donaldson (2004, engaging the online learner, p. 17) &#8220;Every activity should be scrutinized to determine whether it matches a learning objective.&#8221; They go on to add that activities that do not meet this criteria add confusion and frustration. The learner is left asking &#8220;why did I just waste my time doing [...]]]></description>
			<content:encoded><![CDATA[<p>According to Conrad and Donaldson (2004, engaging the online learner, p. 17) &#8220;Every activity should be scrutinized to determine whether it matches a learning objective.&#8221; They go on to add that activities that do not meet this criteria add confusion and frustration. The learner is left asking &#8220;why did I just waste my time doing that?&#8221;</p>
<p>I agree and at DeVry I wouldn&#8217;t teach something that was not used in the real world by programmers. We are making this same changes elsewhere too. </p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2010/11/17/course-objectives-important/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Security system (cameras)</title>
		<link>http://huberblog.com/2010/08/23/my-security-system-cameras/</link>
		<comments>http://huberblog.com/2010/08/23/my-security-system-cameras/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 14:55:02 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=493</guid>
		<description><![CDATA[So I have iCam and some dlink cameras around my house. I have actually had them a very long time and finally got them working with the iPhone. It is a pretty neat setup and here are the results. I will tell you how I did it after the break. So I needed some iPhone [...]]]></description>
			<content:encoded><![CDATA[<p>So I have iCam and some dlink cameras around my house. I have actually had them a very long time and finally got them working with the iPhone. It is a pretty neat setup and here are the results. I will tell you how I did it after the break.<br />
<a href="http://huberblog.com/wp-content/uploads/2010/08/20100804_iphone-019.png"><img src="http://huberblog.com/wp-content/uploads/2010/08/20100804_iphone-019-e1280955460210.png" alt="" title="20100804_iphone 019" width="960" height="640" class="aligncenter size-full wp-image-494" /></a></p>
<p>So I needed some iPhone software. For that I went to <a href="http://skjm.com/icam/support.php">iCam. </a>I was able to check to see if my cameras were supported before I picked up the app. It works great. </p>
<p>There is a piece of software you need to have running on a pc to publish the feed though, so I have that running on my home server. I actually have one instance per camera running as a service to autostart with the server. I just realized I rebooted it &#8220;the hard way&#8221; and the cameras are up, so cool!</p>
<p>So some iPhone software, an app running on the server and a server. So far so good. I used the same process to run these apps as services as I have for dropbox.</p>
<p>So when we went to vegas I had the cameras wirelessly watching the dog and now I have wired them (it is much faster) directly to the router. It was hot in the attic. </p>
<p>The iCam software can actually turn on and off motion sensing from the iPhones, so you can not only see the motion events that are captured along with a real time video, but also turn off the feature which can also send you push notifications if you want. It is pretty full featured. I only have 2 cameras and have room for 2 more. I will need a new router at that point! The motion events it captures are in jpg, so I have those saved to my dropbox on the homeserver that way my laptop and iPhone get the new pics when there is motion. So I can view the pics that way too. </p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2010/08/23/my-security-system-cameras/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replacing the door actuator (locker) on a 2006 Volvo V70</title>
		<link>http://huberblog.com/2010/08/16/replacing-the-door-actuator-locker-on-a-2006-volvo-v70/</link>
		<comments>http://huberblog.com/2010/08/16/replacing-the-door-actuator-locker-on-a-2006-volvo-v70/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 14:14:54 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=484</guid>
		<description><![CDATA[So the front passenger side door locker never really worked that great on our volvo V70. It finally stopped locking so I had to replace it. $150 and I had it replaced. I had to drill out one rivet that was holding in the window rail at the bottom to get out the actuator. I [...]]]></description>
			<content:encoded><![CDATA[<p>So the front passenger side door locker never really worked that great on our volvo V70.</p>
<p>It finally stopped locking so I had to replace it. $150 and I had it replaced. I had to drill out one rivet that was holding in the window rail at the bottom to get out the actuator. I went to ace and purchased a stainless steel replacement button screw with a locking nut.</p>
<p>The hard part was the heat. It was like 120 in the garage&#8230;.</p>
<p>Anyway here are some pics:</p>

<a href='http://huberblog.com/2010/08/16/replacing-the-door-actuator-locker-on-a-2006-volvo-v70/dscn0860/' title='DSCN0860'><img width="150" height="150" src="http://huberblog.com/wp-content/uploads/2010/08/DSCN0860-150x150.jpg" class="attachment-thumbnail" alt="DSCN0860" title="DSCN0860" /></a>
<a href='http://huberblog.com/2010/08/16/replacing-the-door-actuator-locker-on-a-2006-volvo-v70/dscn0861/' title='DSCN0861'><img width="150" height="150" src="http://huberblog.com/wp-content/uploads/2010/08/DSCN0861-150x150.jpg" class="attachment-thumbnail" alt="DSCN0861" title="DSCN0861" /></a>
<a href='http://huberblog.com/2010/08/16/replacing-the-door-actuator-locker-on-a-2006-volvo-v70/dscn0862/' title='DSCN0862'><img width="150" height="150" src="http://huberblog.com/wp-content/uploads/2010/08/DSCN0862-150x150.jpg" class="attachment-thumbnail" alt="DSCN0862" title="DSCN0862" /></a>
<a href='http://huberblog.com/2010/08/16/replacing-the-door-actuator-locker-on-a-2006-volvo-v70/dscn0863/' title='DSCN0863'><img width="150" height="150" src="http://huberblog.com/wp-content/uploads/2010/08/DSCN0863-150x150.jpg" class="attachment-thumbnail" alt="DSCN0863" title="DSCN0863" /></a>
<a href='http://huberblog.com/2010/08/16/replacing-the-door-actuator-locker-on-a-2006-volvo-v70/dscn0864/' title='DSCN0864'><img width="150" height="150" src="http://huberblog.com/wp-content/uploads/2010/08/DSCN0864-150x150.jpg" class="attachment-thumbnail" alt="DSCN0864" title="DSCN0864" /></a>
<a href='http://huberblog.com/2010/08/16/replacing-the-door-actuator-locker-on-a-2006-volvo-v70/dscn0865/' title='DSCN0865'><img width="150" height="150" src="http://huberblog.com/wp-content/uploads/2010/08/DSCN0865-150x150.jpg" class="attachment-thumbnail" alt="DSCN0865" title="DSCN0865" /></a>

]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2010/08/16/replacing-the-door-actuator-locker-on-a-2006-volvo-v70/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>G1 root with Android 2.1</title>
		<link>http://huberblog.com/2010/08/09/g1-root-with-android-2-1/</link>
		<comments>http://huberblog.com/2010/08/09/g1-root-with-android-2-1/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 14:05:29 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://huberblog.com/?p=481</guid>
		<description><![CDATA[I traded my iPhone 3G for $150 and a well used G1. I only have AT&#038;T so I had to unlock the G1 first here: http://www.unlock-tmobileg1.com/. Within an hour I had my unlock code. I tried to call TMobile and although I was able to give them some story about the phone the email came [...]]]></description>
			<content:encoded><![CDATA[<p>I traded my iPhone 3G for $150 and a well used G1.</p>
<p>I only have AT&#038;T so I had to unlock the G1 first here: <a href="http://www.unlock-tmobileg1.com/">http://www.unlock-tmobileg1.com/</a>. Within an hour I had my unlock code. I tried to call TMobile and although I was able to give them some story about the phone the email came back in the morning telling me I had to have my service for 60 days.</p>
<p>Then I have a problem with the speaker on the phone. I will probably end up replacing the earpiece, but for now I thought I could root it and patch the speaker volume settings. I needed root and I figured I would installed 2.1 at the same time since I was on 1.6. </p>
<p>I followed this: <a href="http://wiki.cyanogenmod.com/index.php?title=Full_Update_Guide_-_HTC_Dream">http://wiki.cyanogenmod.com/index.php?title=Full_Update_Guide_-_HTC_Dream</a> which also includes this: <a href="http://wiki.cyanogenmod.com/index.php?title=DangerSPL_%26_CyanogenMod_5/6">http://wiki.cyanogenmod.com/index.php?title=DangerSPL_%26_CyanogenMod_5/6</a>.</p>
<p>So I can tell you it was a bit scary compared with jailbreaking, but if you follow the directions and be careful to check the antenna version you will be ok. I hope to upgrade to 2.2, but 2.1 is much better than 1.6 for sure.</p>
]]></content:encoded>
			<wfw:commentRss>http://huberblog.com/2010/08/09/g1-root-with-android-2-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

