<?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>Matthew Steven Kelly</title>
	<atom:link href="http://www.matthewstevenkelly.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.matthewstevenkelly.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 15 May 2012 02:35:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>CompTIA SSL Certificate Error</title>
		<link>http://www.matthewstevenkelly.com/blog/random/comptia-ssl-certificate-error.html</link>
		<comments>http://www.matthewstevenkelly.com/blog/random/comptia-ssl-certificate-error.html#comments</comments>
		<pubDate>Thu, 10 May 2012 02:26:13 +0000</pubDate>
		<dc:creator>Matthew Steven Kelly</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.matthewstevenkelly.com/blog/?p=971</guid>
		<description><![CDATA[Going to https://support.comptia.org gives the following error. You would think that the organization that certifies computer security would have SSL certificates figured out&#8230;]]></description>
			<content:encoded><![CDATA[<p>Going to <a href="https://support.comptia.org" target="_blank">https://support.comptia.org</a> gives the following error. You would think that the organization that certifies computer security would have SSL certificates figured out&#8230;</p>
<p><a href="http://www.matthewstevenkelly.com/blog/wp-content/uploads/2012/05/comptia-ssl-cert.jpg"><img class="alignnone  wp-image-972" title="comptia ssl cert" src="http://www.matthewstevenkelly.com/blog/wp-content/uploads/2012/05/comptia-ssl-cert.jpg" alt="" width="468" height="454" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewstevenkelly.com/blog/random/comptia-ssl-certificate-error.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Checking is a site is malware blacklisted</title>
		<link>http://www.matthewstevenkelly.com/blog/technology/checking-is-a-site-is-malware-blacklisted.html</link>
		<comments>http://www.matthewstevenkelly.com/blog/technology/checking-is-a-site-is-malware-blacklisted.html#comments</comments>
		<pubDate>Mon, 16 Apr 2012 00:09:14 +0000</pubDate>
		<dc:creator>Matthew Steven Kelly</dc:creator>
				<category><![CDATA[Technology and Me]]></category>

		<guid isPermaLink="false">http://www.matthewstevenkelly.com/blog/?p=945</guid>
		<description><![CDATA[Google Safe Browing is a service Google uses in FireFox and Chrome to detect malicious websites: https://developers.google.com/safe-browsing/ Individual sites can be checked by replacing the site=google.com with the site you would like to check: http://www.google.com/safebrowsing/diagnostic?site=google.com]]></description>
			<content:encoded><![CDATA[<p>Google Safe Browing is a service Google uses in FireFox and Chrome to detect malicious websites: <a href="https://developers.google.com/safe-browsing/">https://developers.google.com/safe-browsing/</a></p>
<p>Individual sites can be checked by replacing the site=google.com with the site you would like to check:</p>
<p><a href="http://www.google.com/safebrowsing/diagnostic?site=google.com">http://www.google.com/safebrowsing/diagnostic?site=google.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewstevenkelly.com/blog/technology/checking-is-a-site-is-malware-blacklisted.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First page visit test</title>
		<link>http://www.matthewstevenkelly.com/blog/random/first-page-visit-test.html</link>
		<comments>http://www.matthewstevenkelly.com/blog/random/first-page-visit-test.html#comments</comments>
		<pubDate>Sat, 31 Mar 2012 16:45:13 +0000</pubDate>
		<dc:creator>Matthew Steven Kelly</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.matthewstevenkelly.com/blog/?p=929</guid>
		<description><![CDATA[This page displays the first time any page on www.matthewstevenkelly.com is visited, when the below code is enabled. I have it disabled right now, but if you would like to create a landing page on your site using javascript, simple &#8230; <a href="http://www.matthewstevenkelly.com/blog/random/first-page-visit-test.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This page displays the first time any page on www.matthewstevenkelly.com is visited, when the below code is enabled. I have it disabled right now, but if you would like to create a landing page on your site using javascript, simple add the code below to your page &lt;head&gt; and replace the url= with your sites landing page. You can enable this on an entire site by adding it to the &lt;head&gt; of every page, or just add it to a single page. It uses <a title="W3Schools JavaScript Cookies page" href="http://www.w3schools.com/js/js_cookies.asp" target="_blank">cookies </a>to detect if the site has been visited before.</p>
<p>&lt;script language=&#8221;Javascript&#8221; type=&#8221;text/javascript&#8221;&gt;<br />
&lt;!&#8211;<br />
function GetCookie(name) {<br />
var arg=name+&#8221;=&#8221;;<br />
var alen=arg.length;<br />
var clen=document.cookie.length;<br />
var i=0;<br />
while (i&lt;clen) {<br />
var j=i+alen;<br />
if (document.cookie.substring(i,j)==arg)<br />
return &#8220;here&#8221;;<br />
i=document.cookie.indexOf(&#8221; &#8220;,i)+1;<br />
if (i==0) break;<br />
}<br />
return null;<br />
}<br />
var visit=GetCookie(&#8220;COOKIE1&#8243;);<br />
if (visit==null){<br />
var expire=new Date()+60*60*24*30;<br />
document.cookie=&#8221;COOKIE1=here; expires=&#8221;+expire;<br />
url = &#8220;http://www.matthewstevenkelly.com/blog/random/first-page-visit-test.html&#8221;;<br />
if(document.referrer!=url){window.location = url;}<br />
}<br />
// &#8211;&gt;<br />
&lt;/script&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewstevenkelly.com/blog/random/first-page-visit-test.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>CSV Test</title>
		<link>http://www.matthewstevenkelly.com/blog/random/csv-test.html</link>
		<comments>http://www.matthewstevenkelly.com/blog/random/csv-test.html#comments</comments>
		<pubDate>Sun, 05 Feb 2012 04:00:55 +0000</pubDate>
		<dc:creator>Matthew Steven Kelly</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.matthewstevenkelly.com/blog/?p=885</guid>
		<description><![CDATA[Test file: 1.csvstrlen($ins[1]); // 9strlen(trim($ins[1])); // 7$w = preg_replace(&#8216;/[^0-9\.]/Uis&#8217;, &#8221;, trim($ins[1]));strlen($w); // 4echo $w; // 1.02echo is_numeric($w); // TRUEfloatval($w); // 1.02]]></description>
			<content:encoded><![CDATA[<p>Test file: <a href='http://www.matthewstevenkelly.com/blog/wp-content/uploads/2012/02/1.csv'>1.csv</a><br />strlen($ins[1]); // 9<br />strlen(trim($ins[1])); // 7<br />$w = preg_replace(&#8216;/[^0-9\.]/Uis&#8217;, &#8221;, trim($ins[1]));<br />strlen($w); // 4<br />echo $w; // 1.02<br />echo is_numeric($w); // TRUE<br />floatval($w); // 1.02</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewstevenkelly.com/blog/random/csv-test.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop American Censorship</title>
		<link>http://www.matthewstevenkelly.com/blog/technology/stop-american-censorship.html</link>
		<comments>http://www.matthewstevenkelly.com/blog/technology/stop-american-censorship.html#comments</comments>
		<pubDate>Mon, 02 Jan 2012 15:20:03 +0000</pubDate>
		<dc:creator>Matthew Steven Kelly</dc:creator>
				<category><![CDATA[Technology and Me]]></category>

		<guid isPermaLink="false">http://www.matthewstevenkelly.com/blog/?p=853</guid>
		<description><![CDATA[For more information: http://fightforthefuture.org/pipa/]]></description>
			<content:encoded><![CDATA[<p>For more information: <a href="http://fightforthefuture.org/pipa/">http://fightforthefuture.org/pipa/</a></p>
<p><iframe src="http://americancensorship.org/callwidget" width="475" height="625"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewstevenkelly.com/blog/technology/stop-american-censorship.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PROTECT IP Act Breaks the Internet</title>
		<link>http://www.matthewstevenkelly.com/blog/technology/protect-ip-act-breaks-the-internet.html</link>
		<comments>http://www.matthewstevenkelly.com/blog/technology/protect-ip-act-breaks-the-internet.html#comments</comments>
		<pubDate>Tue, 25 Oct 2011 23:31:49 +0000</pubDate>
		<dc:creator>Matthew Steven Kelly</dc:creator>
				<category><![CDATA[Technology and Me]]></category>

		<guid isPermaLink="false">http://www.matthewstevenkelly.com/blog/?p=867</guid>
		<description><![CDATA[For more information: http://americancensorship.org/ H.R.3261 &#8211; Stop Online Piracy Act S.968 &#8211; PROTECT IP Act of 2011]]></description>
			<content:encoded><![CDATA[<p>For more information: <a href="http://americancensorship.org/">http://americancensorship.org/</a></p>
<ul>
<li><a href="http://www.opencongress.org/bill/112-h3261/show">H.R.3261 &#8211; Stop Online Piracy Act</a></li>
<li><a href="http://www.opencongress.org/bill/112-s968/show">S.968 &#8211; PROTECT IP Act of 2011</a></li>
</ul>
<p><iframe src="http://player.vimeo.com/video/31100268?title=0&#038;byline=0&#038;portrait=0" width="475" height="275" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewstevenkelly.com/blog/technology/protect-ip-act-breaks-the-internet.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The right to petition your government&#8230;</title>
		<link>http://www.matthewstevenkelly.com/blog/community/the-right-to-petition-your-government.html</link>
		<comments>http://www.matthewstevenkelly.com/blog/community/the-right-to-petition-your-government.html#comments</comments>
		<pubDate>Sat, 01 Oct 2011 00:21:06 +0000</pubDate>
		<dc:creator>Matthew Steven Kelly</dc:creator>
				<category><![CDATA[Community Building]]></category>

		<guid isPermaLink="false">http://www.matthewstevenkelly.com/blog/?p=822</guid>
		<description><![CDATA[&#8220;The right to petition your government is guaranteed by the First Amendment to the U.S. Constitution. Throughout our history, Americans have used petitions to organize around issues they care about from ending slavery, to guaranteeing women&#8217;s right to vote, to &#8230; <a href="http://www.matthewstevenkelly.com/blog/community/the-right-to-petition-your-government.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&#8220;The right to petition your government is guaranteed by the First Amendment to the U.S. Constitution. Throughout our history, Americans have used petitions to organize around issues they care about from ending slavery, to guaranteeing women&#8217;s right to vote, to the civil rights movement.&#8221;</p>
<p>So why not sign this one:</p>
<p><a href="https://wwws.whitehouse.gov/petitions#!/petition/revisit-its-decision-retired-space-shuttle-enterprise-and-award-it-national-museum-usaf-oh/gm68DlS3">https://wwws.whitehouse.gov/petitions#!/petition/revisit-its-decision-retired-space-shuttle-enterprise-and-award-it-national-museum-usaf-oh/gm68DlS3</a></p>
<p><a href="https://wwws.whitehouse.gov/petitions#!/petition/revisit-its-decision-retired-space-shuttle-enterprise-and-award-it-national-museum-usaf-oh/gm68DlS3"><img class="alignnone size-full wp-image-823" title="facebook post" src="http://www.matthewstevenkelly.com/blog/wp-content/uploads/2011/10/facebook-post.jpg" alt="" width="483" height="493" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewstevenkelly.com/blog/community/the-right-to-petition-your-government.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visible Vote</title>
		<link>http://www.matthewstevenkelly.com/blog/community/visible-vote.html</link>
		<comments>http://www.matthewstevenkelly.com/blog/community/visible-vote.html#comments</comments>
		<pubDate>Tue, 24 May 2011 01:09:11 +0000</pubDate>
		<dc:creator>Matthew Steven Kelly</dc:creator>
				<category><![CDATA[Community Building]]></category>

		<guid isPermaLink="false">http://www.matthewstevenkelly.com/blog/?p=792</guid>
		<description><![CDATA[Interested in having a more Web 2.0 interface to your elected representatives? I just recently found out about the Visible Vote application and have since loaded it on my phone: http://visiblevote.us/ It is a great application that gives you news about &#8230; <a href="http://www.matthewstevenkelly.com/blog/community/visible-vote.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Interested in having a more Web 2.0 interface to your elected representatives? I just recently found out about the Visible Vote application and have since loaded it on my phone: <a href="http://visiblevote.us/">http://visiblevote.us/</a></p>
<p>It is a great application that gives you news about your national representatives (House and Senate) as well as the ability to vote on specific legislation and polls that Visible Vote then sends tallies to each of the politicians you have loaded. There is even a way to quickly send all of them a message. With all of this being straight from your phone (and Visible Vote has applications for several different handhelds), it&#8217;s easy to send a quick message, or get in a few votes from anywhere!</p>
<p>And just for fun, a few internet related bills before Congress. Your thoughts?</p>
<p><script language="JavaScript" type="text/javascript">var vvRS = function(h){if(document.getElementById) {document.getElementById('vvFrame').style.height = h +'px' ;} else if(document.all) {document.all.vvFrame.style.height = h + 'px';}}</script> <iframe id='vvFrame' name='vvFrame' src="http://app.visiblevote.us/widgetview/load/380" frameborder="0" scrolling="no" height="400" width="435"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewstevenkelly.com/blog/community/visible-vote.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure Facebook Browsing</title>
		<link>http://www.matthewstevenkelly.com/blog/technology/secure-facebook-browsing.html</link>
		<comments>http://www.matthewstevenkelly.com/blog/technology/secure-facebook-browsing.html#comments</comments>
		<pubDate>Tue, 08 Feb 2011 02:06:00 +0000</pubDate>
		<dc:creator>Matthew Steven Kelly</dc:creator>
				<category><![CDATA[Technology and Me]]></category>

		<guid isPermaLink="false">http://www.matthewstevenkelly.com/blog/?p=801</guid>
		<description><![CDATA[Do you ever access facebook from a public Wi-Fi location? You should probably treat Facebook and other social networking sites like you do a bank website, ie. don&#8217;t browse insecurely. Public Wi-Fi networks aren&#8217;t very safe. To enable secure connections &#8230; <a href="http://www.matthewstevenkelly.com/blog/technology/secure-facebook-browsing.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Do you ever access facebook from a public Wi-Fi location? You should probably treat Facebook and other social networking sites like you do a bank website, ie. don&#8217;t browse insecurely. <a href="http://lifehacker.com/#!5576927/how-to-stay-safe-on-public-wi+fi-networks" target="_blank">Public Wi-Fi networks aren&#8217;t very safe.</a></p>
<p>To enable secure connections in Facebook, just hit &#8220;Account&#8221; in the upper-right hand corner of any Facebook window and go to &#8220;<a href="https://www.facebook.com/editaccount.php?ref=mb&amp;drop">Account Settings</a>&#8220;.</p>
<p><a href="https://www.facebook.com/editaccount.php?ref=mb&amp;amp;drop"><img class="alignnone size-full wp-image-802" title="account_security" src="http://www.matthewstevenkelly.com/blog/wp-content/uploads/2011/02/account_security.jpg" alt="" width="435" height="265" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewstevenkelly.com/blog/technology/secure-facebook-browsing.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Picture Perfect Private Information</title>
		<link>http://www.matthewstevenkelly.com/blog/random/picture-perfect-private-information.html</link>
		<comments>http://www.matthewstevenkelly.com/blog/random/picture-perfect-private-information.html#comments</comments>
		<pubDate>Sun, 19 Dec 2010 01:29:59 +0000</pubDate>
		<dc:creator>Matthew Steven Kelly</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Privacy]]></category>

		<guid isPermaLink="false">http://www.matthewstevenkelly.com/blog/?p=807</guid>
		<description><![CDATA[Remember that picture of my dog that supposedly only my friends can see? Now imagine that private (but not really) image had all kinds of information in it, like what could be shown in the picture below. Or imagine if it &#8230; <a href="http://www.matthewstevenkelly.com/blog/random/picture-perfect-private-information.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Remember that <a href="http://www.matthewstevenkelly.com/blog/technology/what-goes-online-stays-online.html" target="_blank">picture of my dog that supposedly only my friends can see</a>?</p>
<p>Now imagine that private (but not really) image had all kinds of information in it, like what could be shown in the picture below. Or imagine if it was taken with <a href="http://articles.cnn.com/2010-10-15/tech/photo.gps.privacy_1_smartphone-exif-gps?_s=PM:TECH" target="_blank">a new smartphone camera</a> that stores personal information like my location in the photos&#8230;</p>
<p>Windows Vista &amp; Windows 7 have a link on the detail tab of every picture property labeled &#8220;Remove Properties and Personal Information&#8221;. You can select one, or several images at a time. If you are posting a picture online, that you want to keep some form of privacy with, I would suggest using this built in Windows feature.</p>
<p>And for all you Micro$oft haters out there <img src='http://www.matthewstevenkelly.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  MAC OSX and Linux both require third party software to remove this personal data.</p>
<p><a href="http://www.matthewstevenkelly.com/blog/wp-content/uploads/2011/02/photo-properties.jpg"><img class="alignnone size-full wp-image-808" title="photo properties" src="http://www.matthewstevenkelly.com/blog/wp-content/uploads/2011/02/photo-properties.jpg" alt="" width="378" height="513" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewstevenkelly.com/blog/random/picture-perfect-private-information.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

