<?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>Jeremy Clark Technet.com</title>
	<atom:link href="http://clark-technet.com/feed" rel="self" type="application/rss+xml" />
	<link>http://clark-technet.com</link>
	<description></description>
	<lastBuildDate>Wed, 19 Jun 2013 23:21:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Extended Hiatus</title>
		<link>http://clark-technet.com/2013/06/extended-hiatus</link>
		
		<dc:creator><![CDATA[Jeremy Clark]]></dc:creator>
		<pubDate>Wed, 19 Jun 2013 22:58:07 +0000</pubDate>
				<category><![CDATA[Aside]]></category>
		<category><![CDATA[Featured]]></category>
		<guid isPermaLink="false">http://clark-technet.com/?p=2877</guid>

					<description><![CDATA[I&#8217;ve been quite busy as of late and the reason being larger than project workload and more 9-5 job duties. I&#8217;m still developing with WordPress and learning new tricks that I hope to share soon, just need the time to &#8230; <a href="http://clark-technet.com/2013/06/extended-hiatus">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve been quite busy as of late and the reason being larger than project workload and more 9-5 job duties.  I&#8217;m still developing with WordPress and learning new tricks that I hope to share soon, just need the time to sit down and put the thoughts together.  Also development and support of my Techozoic Fluid theme has suffered, which hopefully will also pick up after finishing a few of the extra projects I have going on.  Just wanted to stay in touch with everyone in this great community.  </p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Passing Additional Parameters to a Filter</title>
		<link>http://clark-technet.com/2013/05/passing-additional-parameters-to-a-filter</link>
		
		<dc:creator><![CDATA[Jeremy Clark]]></dc:creator>
		<pubDate>Fri, 10 May 2013 15:03:56 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://clark-technet.com/?p=2706</guid>

					<description><![CDATA[While working on project an interesting problem arose, needing to pass an additional parameter to a WordPress filter. Normally filters only allow for a set number of parameters, but the particular filter needed an additional parameter that could be passed &#8230; <a href="http://clark-technet.com/2013/05/passing-additional-parameters-to-a-filter">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>While working on project an interesting problem arose, needing to pass an additional parameter to a WordPress filter.  Normally filters only allow for a set number of parameters, but the particular filter needed an additional parameter that could be passed when calling the filter.  </p>
<p>The problem was being able to run a WP_Query for a set number of days passed.  This is normally accomplished with a simple filter that is applied to posts_where.  The problem is the number of days would be variable, since it was being set via a widget option.  To get around this using OOP and create a new class that stores the variable and that will be passed when calling the filter.  While the example below is a specific solution to the problem above it can be adapted for pretty well any filter that needs another parameter that can be set when calling the filter.<br />
<span id="more-2706"></span><br />
<script src="https://gist.github.com/jeremyclark13/5554820.js"></script></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>CloudFlare IP Address in MyHosting VPS Logs</title>
		<link>http://clark-technet.com/2013/04/cloudflare-ip-address-in-myhosting-vps-logs</link>
		
		<dc:creator><![CDATA[Jeremy Clark]]></dc:creator>
		<pubDate>Mon, 22 Apr 2013 19:31:20 +0000</pubDate>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[cloudflare]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[VPS]]></category>
		<guid isPermaLink="false">http://clark-technet.com/?p=2675</guid>

					<description><![CDATA[After setting up a new VPS with MyHosting I noticed in the logs all the IP addresses belonged to CloudFlare. This is of course because CloudFlare proxies all the requests to speed up the site with it&#8217;s CDN. This is &#8230; <a href="http://clark-technet.com/2013/04/cloudflare-ip-address-in-myhosting-vps-logs">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>After setting up a new VPS with <a href="http://affiliates.myhosting.com/scripts/click.php?a_aid=o1178955&#038;a_bid=107347fa">MyHosting</a> I noticed in the logs all the IP addresses belonged to CloudFlare.  This is of course because CloudFlare proxies all the requests to speed up the site with it&#8217;s CDN.  This is of little use when it comes to tracking down any malicious activity.  Luckily there is an Apache module that restores the correct IP address to the log file.  I&#8217;ll outline the process for getting the Apache module setup on the CentOS VPS.<br />
<span id="more-2675"></span><br />
This <a href="https://support.cloudflare.com/entries/22055786-How-do-I-restore-original-visitor-IP-to-Apache-Web-Servers-">guide</a> outlines the process, but the <a href="http://affiliates.myhosting.com/scripts/click.php?a_aid=o1178955&#038;a_bid=107347fa">MyHosting</a> VPS needed a few extra steps.  Namely a few extra packages needed to compile the module from source.  To compile an Apache module the axps command is used.  This isn&#8217;t normally included in a normal CentOS installation, also gcc is needed and again isn&#8217;t included by default.  To install these two open an ssh session as root and use yum.</p>
<pre># yum install httpd-devel gcc</pre>
<p>There will be a few dependices to install as well, after these are installed.  You&#8217;ll need to download the source code of the module to compile it for your system.  In your home directory simply use wget like this.</p>
<pre># wget https://raw.github.com/cloudflare/mod_cloudflare/master/mod_cloudflare.c</pre>
<p>Next is to compile the module itself using this command.</p>
<pre># apxs2 -a -i -c mod_cloudflare.c</pre>
<p>This should finish and should add the LoadModule command to the config file for Apache.  Verify this is so by looking for this line.</p>
<pre>LoadModule cloudflare_module /path/to/modules/mod_cloudflare.so</pre>
<p>After all of these are done, simply restart Apache.</p>
<pre># service restart httpd</pre>
<p>Now verify that the module is working by visiting the site, then looking at the end of the access.log file to see that the IP belongs to your public IP and not to CloudFlare&#8217;s network.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Hosting Changes</title>
		<link>http://clark-technet.com/2013/04/hosting-changes</link>
		
		<dc:creator><![CDATA[Jeremy Clark]]></dc:creator>
		<pubDate>Thu, 18 Apr 2013 19:47:46 +0000</pubDate>
				<category><![CDATA[Aside]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[VPS]]></category>
		<guid isPermaLink="false">http://clark-technet.com/?p=2649</guid>

					<description><![CDATA[After being with Dreamhost for a little under 2 years I&#8217;ve decided to switch over to MyHosting. I&#8217;d had been using Dreamhost&#8217;s VPS service for the past few months as their shared hosting had lead to all of my sites &#8230; <a href="http://clark-technet.com/2013/04/hosting-changes">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p><div id="attachment_2650" style="width: 310px" class="wp-caption alignleft"><img fetchpriority="high" decoding="async" aria-describedby="caption-attachment-2650" src="http://clark-technet.com/wp-content/uploads/2013/04/800px-CERN_Server-300x199.jpg" alt="By Florian Hirzinger – www.fh-ap.com (Own work (Florian Hirzinger)) [CC-BY-SA-3.0 or GFDL], via Wikimedia Commons" width="300" height="199" class="size-medium wp-image-2650" srcset="http://clark-technet.com/wp-content/uploads/2013/04/800px-CERN_Server-300x199.jpg 300w, http://clark-technet.com/wp-content/uploads/2013/04/800px-CERN_Server-150x99.jpg 150w, http://clark-technet.com/wp-content/uploads/2013/04/800px-CERN_Server.jpg 800w" sizes="(max-width: 300px) 100vw, 300px" /><p id="caption-attachment-2650" class="wp-caption-text">By Florian Hirzinger – www.fh-ap.com (Own work (Florian Hirzinger)) [<a href="http://creativecommons.org/licenses/by-sa/3.0">CC-BY-SA-3.0</a> or <a href="http://www.gnu.org/copyleft/fdl.html">GFDL</a>], <a href="http://commons.wikimedia.org/wiki/File%3ACERN_Server.jpg">via Wikimedia Commons</a></p></div></p>
<p>After being with Dreamhost for a little under 2 years I&#8217;ve decided to switch over to <a href="http://affiliates.myhosting.com/scripts/click.php?a_aid=o1178955&#038;a_bid=107347fa">MyHosting</a>.  I&#8217;d had been using Dreamhost&#8217;s VPS service for the past few months as their shared hosting had lead to all of my sites being hacked twice, along with poor performance all around.  Everything started out fine with their VPS, then came the downtime.  I understand the company is growing and some problems might be expected, but on more than one occasion downtime was into the hours.  Even this fact was really the deciding factor, it was performance even on a VPS was poor and was constantly having to reboot.  The prices for VPS memory upgrades were also terrible $25 for 512MB memory this is on top of the normal monthly hosting fee.  </p>
<p>After looking at many, many companies I had a couple in mind.  I finally made the decision to switch to <a href="http://affiliates.myhosting.com/scripts/click.php?a_aid=o1178955&#038;a_bid=107347fa">MyHosting</a>.  I was able to get a VPS with 5 times the memory for much less than I was currently paying.  Although storage and bandwidth are limited with the new hosting the prices for upgrades are reasonable. Currently I&#8217;d nowhere near exceed the current limits anyway.  If your looking for a new host <a href="http://affiliates.myhosting.com/scripts/click.php?a_aid=o1178955&#038;a_bid=107347fa">MyHosting</a>, might be the way to go.  I&#8217;ll update again after breaking in the tires on the new server.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Updated WordPress Twitter Functions</title>
		<link>http://clark-technet.com/2013/03/updated-wordpress-twitter-functions</link>
					<comments>http://clark-technet.com/2013/03/updated-wordpress-twitter-functions#comments</comments>
		
		<dc:creator><![CDATA[Jeremy Clark]]></dc:creator>
		<pubDate>Thu, 07 Mar 2013 19:41:16 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[twitter]]></category>
		<guid isPermaLink="false">http://clark-technet.com/?p=2617</guid>

					<description><![CDATA[Since the retirement of version 1.0 of Twitter&#8217;s API is underway, I&#8217;ve been updating the Twitter integration code in the Techozoic Fluid theme. I don&#8217;t agree with all the changes to the API, especially the requirement that all API requests, &#8230; <a href="http://clark-technet.com/2013/03/updated-wordpress-twitter-functions">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>Since the retirement of version 1.0 of Twitter&#8217;s API is underway, I&#8217;ve been updating the Twitter integration code in the <a href="http://wordpress.org/extend/themes/techozoic-fluid">Techozoic Fluid</a> theme.  I don&#8217;t agree with all the changes to the API, especially the requirement that all API requests, even for public info, must be signed.  Luckily someone has already done the hard work creating a library for signing the requests with the proper oAuth signatures.  The <a href="https://github.com/themattharris/tmhOAuth">tmhOAuth library</a> can be found on Github.  It will be required for the new functions.  </p>
<p>The first step is to register a new Twitter application.  After signing into Twitter visit the <a href="https://dev.twitter.com/apps/">Applications</a> area of Twitter, and create a new application.  After creating the application make sure create the access token at the bottom of the Application screen, this will authorize the application to access your account.  You will now need 4 separate keys to properly sign the API requests.  You&#8217;ll need the Consumer key, Consumer secret, Access token, and Access token secret.  These will be added to an array and passed to the function and in turn passed to the oAuth library to sign the request.  </p>
<p><span id="more-2617"></span></p>
<p>These two functions below can be used to pull your Twitter timeline and automatically convert all links, hashtags, usernames, and media to the proper format using entities.  The same function can also be used to pull a follower count.  Examples of how to use are included in the code below.</p>
<p><script src="https://gist.github.com/jeremyclark13/5110815.js"></script></p>
<hr />
<p><div class="button small left"><a target="_self" class="button gray" href="https://gist.github.com/jeremyclark13/5110815">View on Github</a></div></p>
]]></content:encoded>
					
					<wfw:commentRss>http://clark-technet.com/2013/03/updated-wordpress-twitter-functions/feed</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>Creating Helpful 404 Pages</title>
		<link>http://clark-technet.com/2013/03/creating-more-helpful-404-pages</link>
		
		<dc:creator><![CDATA[Jeremy Clark]]></dc:creator>
		<pubDate>Mon, 04 Mar 2013 19:49:24 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://clark-technet.com/?p=2612</guid>

					<description><![CDATA[While a site owner usually tries to do everything imaginable to create a site without errors, the occasional 404 error will crop up from time to time. Instead of just telling the visitor the page was an error, and increasing &#8230; <a href="http://clark-technet.com/2013/03/creating-more-helpful-404-pages">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>While a site owner usually tries to do everything imaginable to create a site without errors, the occasional 404 error will crop up from time to time.  Instead of just telling the visitor the page was an error, and increasing the bounce rate of the site, give the visitor other reading options.  This is better for the visitor and the site owner.  The visitor will be more likely to stay around if the links are to similar topic to the one they were looking for.  This is were helpful 404 pages come into play.</p>
<p>The code itself is fairly simple and straight forward.  What it does is take the end of the url after the final slash, and strips any extensions like .html, or .php that might have been accidentally added.  It then queries for a post or page or any custom post type that has a title with this string.  If one or more is found it will output it in a list.  If this comes up empty then it will replace any dashes or underscores with spaces and use this as a search string.  This will return a list of entries that contain these words.  Using these two ways some results should be found and give the visitor something else that should be closely related to what they were looking for.</p>
<p><span id="more-2612"></span></p>
<p><script src="https://gist.github.com/jeremyclark13/5084645.js"></script></p>
<p>Idea originally obtained from <a href="http://yoast.com/404-error-pages-wordpress/" title="Yoast">Yoast</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Web Development With Sharefile</title>
		<link>http://clark-technet.com/2013/02/web-development-with-sharefile</link>
		
		<dc:creator><![CDATA[Jeremy Clark]]></dc:creator>
		<pubDate>Tue, 19 Feb 2013 18:35:41 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[tech]]></category>
		<guid isPermaLink="false">http://clark-technet.com/?p=2594</guid>

					<description><![CDATA[In producing, developing or enhancing a company website, there are a number of different issues that can come up. From improving the appearance of a website, to increasing its functional capabilities, to adding web security, there are simply a number &#8230; <a href="http://clark-technet.com/2013/02/web-development-with-sharefile">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>In producing, developing or enhancing a company website, there are a number of different issues that can come up. From improving the appearance of a website, to increasing its functional capabilities, to adding web security, there are simply a number of ways to go about the continual <a href="http://www.htmlgoodies.com/beyond/webmaster/article.php/3897546/5-Web-Development-Tips-for-Increasing-Online-Sales.htm">web development</a> involved in maintaining part of a company online. Naturally, this means that a number of different services may come in handy throughout the process. However, there are also companies and programs that offer various means of web development support within a single package &#8211; for example, consider <a href="http://www.sharefile.com/" rel="nofollow" >ShareFile</a>.</p>
<p>Primarily designed as a support system for the transfer of large or complex files online, ShareFile now offers a bundle of services that, altogether, can significantly enhance the web capability and stability of any business website or company division online. Here are a few words on some of the specific services that are offered. </p>
<p><strong>Large File Sharing</strong><br />
Certain files, from lengthy documents, to video presentations, etc. can be difficult to send by ordinary email, and other services that can help are often insecure. With ShareFile, your company will have the capability to send such files back and forth between employees and clients with ease, allowing for simpler and more efficient communications.</p>
<p><strong>Professional Appearance</strong><br />
With ShareFile services, you will essentially be creating an online environment that is exclusively for your business and its clients. Along with this, ShareFile provides web designers that will work to make any new features included in your account fit in seamlessly with your company&#8217;s existing design features, ultimately resulting in a professional appearance that is easy to use and attractive for your customers and clients.</p>
<p><strong>Flexible Access</strong><br />
Another perk of implementing ShareFile services is that you will gain access to file sharing on the secure network through a number of different devices. From apps and tools on mobile devices, to desktop widgets, ShareFile provides numerous ways to quickly access files without even bothering with a web browser or ordinary email. </p>
<p><strong>Secure Capability</strong><br />
Finally, ShareFile also offers optimal <a href="http://wiki.answers.com/Q/Importance_of_web_security">security for your business</a> related communications and file sharing. From backing up files, to providing customized security information and password-protected file sharing, ShareFile protects your work far more effectively than ordinary email and sharing methods. This not only allows things to run more smoothly, but also provides clients with a vital sense of trust and confidence.</p>
<p>Ultimately, whether or not each of these individual features is necessary depends largely on your company and what needs your online business has. However, with web development methods and technology constantly on the rise, taking advantage of these types of services is often the surest way to establish a functional, professional company website. </p>
<p>
<em>This is a guest post written by Todd Brandt. Todd is a blogger and freelance writer who contributes posts on the topics of web development and Internet security.</em></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Blank Archives After Deactivating Jetpack</title>
		<link>http://clark-technet.com/2013/01/blank-archives-after-deactivating-jetpack</link>
		
		<dc:creator><![CDATA[Jeremy Clark]]></dc:creator>
		<pubDate>Fri, 25 Jan 2013 02:22:00 +0000</pubDate>
				<category><![CDATA[Aside]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[jetpack]]></category>
		<category><![CDATA[theme]]></category>
		<guid isPermaLink="false">http://clark-technet.com/?p=2553</guid>

					<description><![CDATA[One of the latest features I&#8217;ve added to my Techozoic theme was infinite scroll support for the Jetpack plugin.  It&#8217;s a great feature and fairly easy to integrate.  One snag I ran into was after testing with Jetpack enabled and &#8230; <a href="http://clark-technet.com/2013/01/blank-archives-after-deactivating-jetpack">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>One of the latest features I&#8217;ve added to my <a href="http://wordpress.org/extend/themes/techozoic-fluid">Techozoic</a> theme was infinite scroll support for the <a href="http://jetpack.me">Jetpack</a> plugin.  It&#8217;s a great feature and fairly easy to integrate.  One snag I ran into was after testing with Jetpack enabled and releasing the update I had numerous reports of the archive pages being blank.  This was a stumper because I hadn&#8217;t changed anything with the archive pages, and the archives worked perfectly fine on my test site with Jetpack enabled.  I finally figured it out installing the theme on another site, and seeing the problem first hand.  </p>
<p>The root of the problem is the way the infinite scroll uses the <a href="http://codex.wordpress.org/Function_Reference/get_template_part">get_template_part</a> function.  One of the steps to enable infinite scroll support is to make sure that the template part is named content-(post-format).php.  I had a different naming convention before implementing this feature and this was the whole problem,  I had forgotten to change the get_template_part function on the archive page, so it was calling a nonexistent template file.  The infinite scroll module during the ajax request calls the template part using the content-(post-format) name which is way it would work with Jetpack activated. </p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Being Successful in Online Sales</title>
		<link>http://clark-technet.com/2013/01/being-successful-in-online-sales</link>
		
		<dc:creator><![CDATA[Jeremy Clark]]></dc:creator>
		<pubDate>Sat, 19 Jan 2013 19:43:19 +0000</pubDate>
				<category><![CDATA[Internet]]></category>
		<guid isPermaLink="false">http://clark-technet.com/?p=2528</guid>

					<description><![CDATA[Sometimes the road to online sales can be a bumpy one, but there are a few simple steps outlined below that can help you be successful. Get a website you can edit. There are many great eCommerce platforms that make &#8230; <a href="http://clark-technet.com/2013/01/being-successful-in-online-sales">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>Sometimes the road to online sales can be a bumpy one, but there are a few simple steps outlined below that can help you be successful.</p>
<ol>
<li><strong>Get a website you can edit.</strong>  There are many great eCommerce platforms that make it simple to manage every aspect of your online business.</li>
<li><strong>Get targeted traffic.</strong>  A service like Adwords or other online advertising services to gain targeted traffic that will be interested in your business.</li>
<li><strong>Add a form to capture leads.</strong>  A simple contact form or a newsletter subscription form will help keep in touch with customers who might otherwise not come back to the store.</li>
<li><strong>Setup email marketing.</strong>  This and step 3 go hand in hand, it&#8217;s good to keep in touch with potential customers and keep them interested in your products and keep them coming back for repeat sales.</li>
<li><strong>Accept credit card payments.</strong>  It&#8217;s best to always offer choices when it comes to payment types.  Some people might not feel comfortable with one form or another.</li>
<li><strong>Deliver your product.</strong>  Shipping products out timely is equally as important, if customers don&#8217;t receive their order when they expect they are less likely to recommend store to friends and familiar.</li>
<li><strong>Track your results.</strong>  Lastly always keep good records.  If you see one area that isn&#8217;t returning results you&#8217;d like then changes will need to be made.  You don&#8217;t want to overspend on something that isn&#8217;t delivering results.</li>
</ol>
<p><span id="more-2528"></span><br />
<a href="http://webstarts.com/blog/how-to/how-to-make-money-online-2/" rel="nofollow"><img decoding="async" src="http://webstarts.com/blog/wp-content/uploads/2013/01/How-To-Make-Money-Online1.png" style="max-width:100%"/></a><br />Via: <a href="http://webstarts.com" rel="nofollow">WebStarts</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Free Cloud-Based Password Managment</title>
		<link>http://clark-technet.com/2012/12/free-cloud-based-password-managment</link>
					<comments>http://clark-technet.com/2012/12/free-cloud-based-password-managment#comments</comments>
		
		<dc:creator><![CDATA[Jeremy Clark]]></dc:creator>
		<pubDate>Mon, 10 Dec 2012 19:08:12 +0000</pubDate>
				<category><![CDATA[Aside]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[tech]]></category>
		<guid isPermaLink="false">http://clark-technet.com/?p=2455</guid>

					<description><![CDATA[When doing development work for many clients it becomes essential for good password management, traditional pen &#038; paper, web-based service, or software-based. One solution that I&#8217;m currently using mainly because it is free and open-source software is KeePass. I&#8217;m using &#8230; <a href="http://clark-technet.com/2012/12/free-cloud-based-password-managment">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>When doing development work for many clients it becomes essential for good password management,  traditional pen &#038; paper, web-based service, or software-based.  One solution that I&#8217;m currently using mainly because it is free and open-source software is <a href="http://keepass.info/download.html">KeePass</a>.  I&#8217;m using the portable version in my <a href="http://db.tt/Cm6EZbD">Dropbox</a> for maintaining my passwords in multiple locations.  Using this method also allows me to use my Android phone &#038; table, and an app called <a href="http://www.keepassdroid.com/">KeePassDroid</a>, along with the <a href="http://db.tt/Cm6EZbD">Dropbox</a> app to have access remotely.  </p>
]]></content:encoded>
					
					<wfw:commentRss>http://clark-technet.com/2012/12/free-cloud-based-password-managment/feed</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Value of Email Newsletters</title>
		<link>http://clark-technet.com/2012/12/value-of-email-newsletters</link>
		
		<dc:creator><![CDATA[Jeremy Clark]]></dc:creator>
		<pubDate>Mon, 03 Dec 2012 03:34:09 +0000</pubDate>
				<category><![CDATA[Internet]]></category>
		<guid isPermaLink="false">http://clark-technet.com/?p=2442</guid>

					<description><![CDATA[Most of today&#8217;s informal communication is done through the computer and most of that is trough email. It makes sense that businesses would use this tool to communicate with their customers. What is a better medium that allows communication with &#8230; <a href="http://clark-technet.com/2012/12/value-of-email-newsletters">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>Most of today&#8217;s informal communication is done through the computer and most of that is trough email.  It makes sense that businesses would use this tool to communicate with their customers.  What is a better medium that allows communication with so many people with so little effort or cost.  Email marketing is good for businesses, but as some have taken it to extremes with spam it pays to respect the customers and not fill their inbox with unnecessary info.</p>
<p><span id="more-2442"></span></p>
<p><a href="http://www.icontact.com/blog/email-newsletter/" rel="nofollow"><img decoding="async" src="http://www.icontact.com/blog/files/images/EmailNewsletter.jpg" style="max-width:100%"/></a><br />Via: <a href="http://www.icontact.com/" rel="nofollow" >iContact</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Jetpack Infinite Scroll Credit Text</title>
		<link>http://clark-technet.com/2012/11/jetpack-infinite-scroll-credit-text</link>
					<comments>http://clark-technet.com/2012/11/jetpack-infinite-scroll-credit-text#comments</comments>
		
		<dc:creator><![CDATA[Jeremy Clark]]></dc:creator>
		<pubDate>Thu, 29 Nov 2012 16:33:15 +0000</pubDate>
				<category><![CDATA[Aside]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://clark-technet.com/?p=2435</guid>

					<description><![CDATA[In the next version of Techozoic Fluid that is almost ready to be released, support for the Jetpack Infinite Scroll module has been added. After following Otto&#8217;s guide on getting support added, I noticed that the scrolling footer that is &#8230; <a href="http://clark-technet.com/2012/11/jetpack-infinite-scroll-credit-text">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>In the next version of <a href="http://wordpress.org/extend/themes/techozoic-fluid">Techozoic Fluid</a> that is almost ready to be released, support for the <a href="http://jetpack.me/">Jetpack</a> Infinite Scroll module has been added.  After following <a href="http://ottopress.com/2012/jetpack-and-the-infinite-scroll/">Otto&#8217;s guide</a> on getting support added, I noticed that the scrolling footer that is included by default has the standard WordPress credit link.  After reviewing the code I discovered that there was a filter specifically for the credit links, which makes it super simple to change out the text.   </p>
<p><script src="https://gist.github.com/4170117.js"> </script></p>
]]></content:encoded>
					
					<wfw:commentRss>http://clark-technet.com/2012/11/jetpack-infinite-scroll-credit-text/feed</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Options Framework &#038; Theme Customizer</title>
		<link>http://clark-technet.com/2012/11/options-framework-theme-customizer-loop</link>
					<comments>http://clark-technet.com/2012/11/options-framework-theme-customizer-loop#comments</comments>
		
		<dc:creator><![CDATA[Jeremy Clark]]></dc:creator>
		<pubDate>Sat, 17 Nov 2012 00:02:56 +0000</pubDate>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[theme]]></category>
		<guid isPermaLink="false">http://clark-technet.com/?p=2417</guid>

					<description><![CDATA[While working on the next version of Techozoic Fluid I&#8217;ve been incorporating the new theme customizer features of WordPress 3.4. Currently Techozoic uses the Options Framework from Devin Price to handle all the settings pages. The framework is awesome and &#8230; <a href="http://clark-technet.com/2012/11/options-framework-theme-customizer-loop">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			