<?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>MakeUseOf &#187; government</title>
	<atom:link href="http://www.makeuseof.com/tags/government/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Fri, 10 Feb 2012 15:30:58 +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>How To Participate In An Internet Blackout (Like The SOPA Protest)</title>
		<link>http://www.makeuseof.com/tag/participate-internet-blackout-sopa-protest/</link>
		<comments>http://www.makeuseof.com/tag/participate-internet-blackout-sopa-protest/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 22:31:30 +0000</pubDate>
		<dc:creator>Angela Alcorn</dc:creator>
				<category><![CDATA[How-To Articles]]></category>
		<category><![CDATA[Wordpress & Blogging]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[protest]]></category>
		<category><![CDATA[SOPA]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98086</guid>
		<description><![CDATA[You may have noticed on January 18th that plenty of big websites participated in an Internet blackout as a protest of the US government’s proposed SOPA legislation. Despite the SOPA plans being dropped for now, there are still numerous similar acts of legislation being proposed. If you’re planning on supporting future protests, you might like to know what Google recommends you do.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/internet-blackout-300x300-shutterstock_81464950.jpg?323f2c" alt="sopa protest">You may have noticed on January 18th that plenty of big websites participated in an <a href="http://www.makeuseof.com/tag/sites-protest-sopapipa-join-protest-news/">Internet blackout as a protest</a> of the US government&#8217;s proposed <a href="http://www.makeuseof.com/tags/sopa/">SOPA</a> legislation. Despite the <a href="http://www.makeuseof.com/tag/sopa-and-pipa-abandoned-after-day-of-internet-activism-news/">SOPA plans being dropped for now</a>, there are still numerous similar acts of legislation being proposed across the world.</p>
<p>If you&#8217;re planning on supporting future protests, or just generally curious, you might like to know what Google recommends you do in order to ensure your search rankings aren&#8217;t affected in any way while you are protesting. We&#8217;ll also let you know the quickest and easiest ways to black out your site.</p>
<h2>Use A 503 HTTP Status Code</h2>
<p>Google representative <a href="https://plus.google.com/115984868678744352358/posts/Gas8vjZ5fmB">Pierre Far suggests</a> that an HTTP status code of 503 is important in order to tell Google that this isn&#8217;t your normal page content. Generally this is used when the site is offline for server updates, but it works equally well for protesting.</p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/internet-blackout-google-advice.png?323f2c" alt="sopa protest"></p>
<p>The reasoning behind this can be seen easily if you consider that Google originally saw that you had a page full of, say, cat pictures and great content about cats. If they then crawl the site and the page says &#8220;We&#8217;re currently participating in an internet blackout as a protest&#8221; it looks to Google as if your page is a pretty awful resource when it comes to cats. Your site would drop in the pagerank system for cat information, which is probably not an ideal situation for your site.</p>
<p>Also, if all of your pages say the same thing, Google is going to think your content is duplicated all over your site and that you&#8217;re some sort of spam site. You really don&#8217;t want this!</p>
<p>Basically, the 503 HTML status says to the crawler &#8220;Hold on, this page is not what it normally is, so come back later&#8221;.</p>
<h2>What Not To Do</h2>
<p>To return the 503 error, it&#8217;s not advised to edit your robots.txt file as a robots.txt file change will ensure your site will not be indexed for a few days afterwards. Changing your DNS settings is also not advised. Basically, don&#8217;t do anything that takes a long time to change, to take effect or to revert.</p>
<h2>Creating A 503 HTML Status Code For Your Site Using PHP</H2></p>
<p>As long as you have access to your root directory for your website, this is a really easy process. Open up your favourite text editor and write this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'HTTP/1.1 503 Service Temporarily Unavailable'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Status: 503 Service Temporarily Unavailable'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Retry-After: 3600'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;!DOCTYPE html&gt;
&lt;html&gt;&lt;head&gt;
&lt;title&gt;503 Service Temporarily Unavailable&lt;/title&gt;
&lt;/head&gt;&lt;body&gt;
&lt;h1&gt;Service Temporarily Unavailable&lt;/h1&gt;
&lt;p&gt;We're currently participating in an internet blackout as a protest. 
Please try again later.&lt;/p&gt;
&lt;/body&gt;&lt;/html&gt;</pre></div></div>

<p>Then save your file as <strong>503.php</strong> and drop it into your site&#8217;s root directory.</p>
<p>Obviously, you can change the human-read text to whatever your message is, including images and regular HTML elements.</p>
<h2>A Quick WordPress Plugin To Black Out Your Site</h2>
<p>For the SOPA blackout there was a handy <a href="http://www.makeuseof.com/tags/wordpress/">WordPress</a> plugin to <a href="http://wordpress.org/extend/plugins/simple-sopa-blackout/">black out your site</a>. However it used a 302 redirect status code rather than the recommended 503 status code. If you want to know more about the SEO effect of using a 302 rather than a 503, read <a href="http://www.mattcutts.com/blog/seo-advice-discussing-302-redirects/">this article by Matt Cutts</a>. </p>
<p>Despite this, if you&#8217;re not bothered by a bit of SEO damage, a plugin like this could allow you to quickly blackout your site without access to your root directory or without the need to learn too much technical detail. </p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/internet-blackout-wordpress-plugin.png?323f2c"></p>
<p>This particular plugin was set to blackout just for the day of January 18th, but for future protests there will no doubt be more plugins available. Just search for one which uses a 503 status and you should be fine. </p>
<p>Let us know what other methods protestors could use on their sites if another Internet blackout is planned.</p>
<p><small>Image Credit: <a rel="nofollow" href="http://www.shutterstock.com/pic-81464950/stock-photo-silhouette-of-street-protestors-with-flags-and-banners.html">ShutterStock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/participate-internet-blackout-sopa-protest/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>9 Strange US Government Efforts To Make Use Of The Internet</title>
		<link>http://www.makeuseof.com/tag/9-strange-government-efforts-internet/</link>
		<comments>http://www.makeuseof.com/tag/9-strange-government-efforts-internet/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 18:01:17 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Offbeat]]></category>
		<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[reference sites]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=86289</guid>
		<description><![CDATA[I just want to make it very clear that I don't intend to make fun of the US Government. I am an upstanding, patriotic citizen of the United States. With that said, I do have a very personal, intense dislike of bureaucracy and lack of common sense. So even though there are plenty of great websites and online resources offered by the US Government, there are also a whole lot of silly online sites as well.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/clown.png?323f2c" alt="us government websites" />I just want to make it very clear that I don&#8217;t intend to make fun of the US Government. I am an upstanding, patriotic citizen of the United States. Honest. In fact, here at MUO we have a very wide assortment of articles that promote some of the best online resources that the US Government has to offer, such as Mark&#8217;s list of <a href="http://www.makeuseof.com/tag/5-smoking-hot-us-government-websites-worth-looking-at/">5 awesome government websites</a>, or my <a href="http://www.makeuseof.com/tag/5-cool-data-apps-mashups-government/">list of data mashups</a> offered at government websites.</p>
<p>With that said, I do have a very personal, intense dislike of bureaucracy and lack of common sense. So even though there are plenty of great websites and online resources offered by the US Government, there are also a whole lot of silly online sites as well. In some cases, the waste of resources is so blatant that US taxpayers should be outraged.</p>
<h2>Entertaining Or &#8220;Educating&#8221; Children?</h2>
<p>If you&#8217;re read the book 1984 by George Orwell, then you know how creepy it is to see any government in the world attempting to &#8220;educate&#8221; children. Visions of brainwashing and propaganda come to mind. Those of you that were students during the Cold War will remember the whole &#8220;Duck and Cover&#8221; campaign.</p>
<p>Well now that there&#8217;s terrorism, hurricanes and pandemic diseases to fear, the US Government is busy getting Americans &#8220;ready&#8221; for any catastrophe with <a href="http://www.ready.gov/">Ready.gov</a>. The creepiest part of the U.S. government site is the &#8220;Ready Kids&#8221; area that educates kids about all of the threats families can face and must be prepared for.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/govsites2.png?323f2c" alt="us government websites" width="507" height="416" /></p>
<p>Yet another government agency that has no clue when it comes to communicating with children is the US Treasury. On the Treasury&#8217;s website for kids called <a href="http://www.treasurydirect.gov/kids/kids.htm">TreasuryDirect Kids</a>, you&#8217;ll find all sorts of explanations and definitions that no child younger than 18 would be likely to even understand.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/govsites3.png?323f2c" alt="government websites" width="552" height="460" /></p>
<p>It seems inconceivable to me that the folks putting together this page truly think it&#8217;s okay to use a phrase like &#8220;inflation-protected securities&#8221; on a website meant for small children to learn about the Treasury. I mean, seriously?</p>
<p>Then there&#8217;s the other extreme over at <a href="http://www.census.gov/schools/census_for_kids/">Census.gov</a>, where the wonderful, intelligent folks that conduct the US Census figured they&#8217;d follow the trend of other government agencies and offer a section of their website for kids as well. There, kids will find a cute little game where they can&#8230;.well&#8230;.count things.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/govsites4.png?323f2c" alt="government websites" width="576" height="426" /></p>
<p>I don&#8217;t know &#8211; that just struck me as really funny.</p>
<p>Finally, one more website for older kids &#8211; college-aged kids to be exact &#8211; is a US Government website called <a href="http://www.collegedrinkingprevention.gov/">CollegeDrinkingPrevention.org</a>. While the concept is commendable, the entire premise of the website is just silly.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/govsites5.png?323f2c" alt="government websites" width="579" height="510" /></p>
<p>Yes, it is a great idea to educate college students about the dangers of drinking too much alcohol, but do you really think college students are going to visit a government website to watch goofy videos, or read a list of &#8220;Fact About Alcohol Poisoning?&#8221;</p>
<h2>Silly &amp; Wasteful Government Websites</h2>
<p>Beyond the sites for kids, there are also lots of US Government websites intended for adults that are just as pointless and silly. One example, from the US Geological Survey is actually kind of scary. The USGS decided to provide a webpage where people could submit ideas about how to solve the Earth&#8217;s problem of over-population.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/govsites6.png?323f2c" alt="federal government websites" width="491" height="496" /></p>
<p>I&#8217;m actually afraid to learn what sort of &#8220;creative&#8221; suggestions people submitted to the USGS using the forms on this website.</p>
<p>Now, here&#8217;s a quick pop quiz. Do you know who prints US currency? The US Federal Reserve? The US Mint? No and no. It&#8217;s actually an obscure agency called the <a href="http://www.bep.treas.gov/home.html">Bureau of Engraving and Printing</a>.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/govsites8.png?323f2c" alt="federal government websites" width="562" height="471" /></p>
<p>This website treats the production of US currency as though it&#8217;s some sort of business &#8211; complete with monthly production reports, and even an online store where you can buy limited edition currency. Seriously.</p>
<p>Then there&#8217;s probably the funniest government website of all, the <a href="http://www.usoge.gov/">Office of Government Ethics</a>. It is the Office that comes up with the ethical rules and guidelines that politicians in the Executive Branch of government must follow.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/govsites9.png?323f2c" alt="federal government websites" width="578" height="440" /></p>
<p>Why is it such a funny site? Simple &#8211; because it&#8217;s one website that you can be sure most US politicians never visit.</p>
<p>Here&#8217;s pop-quiz #2: Do you remember Ronald Reagan&#8217;s famous &#8220;Star Wars&#8221; missile defense initiative? It was the talk of the day in the 1980s, and then as the years passed, you started to hear less and less about it. Well &#8211; just so you know &#8211; the entire initiative is alive and well in the <a href="http://www.mda.mil/">Missile Defense Agency</a>.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/govsites10.png?323f2c" alt="" width="580" height="406" /></p>
<p>The Cold War may be over, but these folks at the DoD are working diligently on next generation interceptor missiles that can take out ballistic missiles. If you are looking to start your own ballistic missile business, the website has an entire &#8220;Business Opportunities&#8221; section, just for you.</p>
<p>The last site I wanted to cover is one that freaked me out a little bit. If you are a fan of Spongebob Squarepants (the popular children&#8217;s cartoon), then you may recall Plankton&#8217;s &#8220;evil plan Z&#8221; to take over the entire world. Well, the Department of Defense &#8220;<a href="http://www.defense.gov/home/features/2009/0109_unifiedcommand/">Unified Command Plan</a>&#8221; webpage looks to me like the US version of that plan.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/govsites11.png?323f2c" alt="us government websites" width="548" height="520" /></p>
<p>You&#8217;ve got the &#8220;combatant commanders&#8221; covering each region of the world. It&#8217;s like one big world map of global domination.</p>
<p>Okay, maybe I&#8217;m being a bit sarcastic and overly critical of these websites. However, in all seriousness, is it really smart to be tossing money and resources into some of these government websites when there are so many major issues facing the country and the world? Shouldn&#8217;t the choice and development of government websites be at least a little bit more efficient and well thought out?</p>
<p>What&#8217;s your opinion about US Government websites, or some examples of silly government websites for your own country? Share your thoughts in the comments section below.</p>
<p><small>Photo credit: <a href="http://www.shutterstock.com/gallery-453337p1.html?cr=00&amp;pl=edit-00" rel="nofollow">Boris15</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/9-strange-government-efforts-internet/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>7 Almost Unknown Google Search Engines You Should Use</title>
		<link>http://www.makeuseof.com/tag/7-almost-unknown-google-search-engines-you-should-use/</link>
		<comments>http://www.makeuseof.com/tag/7-almost-unknown-google-search-engines-you-should-use/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 18:01:12 +0000</pubDate>
		<dc:creator>Ted Nash</dc:creator>
				<category><![CDATA[MakeUseOf Lists]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[patent]]></category>
		<category><![CDATA[search engine]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=9304</guid>
		<description><![CDATA[Last week we covered some fun Google Easter Eggs, that you can find while browsing the site.   This week, to take a more academic approach, we are going to cover 7 almost unknown specialized Google search engines that can be used for specialized consumer and academic research. Also included in this realm, but not [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/googlewall.png?323f2c" border="0" alt="" vspace="5" width="307" height="198" align="left" />Last week we covered some fun <a href="http://www.makeuseof.com/tag/googles-top-10-hidden-treasures/">Google Easter Eggs</a>, that you can find while browsing the site.   This week, to take a more academic approach, we are going to cover 7 almost unknown specialized Google search engines that can be used for specialized consumer and academic research.</p>
<p>Also included in this realm, but not within this post are <a href="http://video.google.com/">Google Video</a>, <a href="http://www.google.com/imghp?hl=en">Pictures</a>, <a href="http://news.google.com/">News</a> and <a href="http://blogsearch.google.com/">Blogs</a> which most users will already be familiar with so we have not included them in the list below.</p>
<h2><a href="http://www.google.com/patents"><strong>Google Patent Search</strong></a></h2>
<p>Its amazing that a database like this exists, but most people don&#8217;t even know about it.   Google has taken it upon themselves to fully index and cross-reference over 7 million patents of past and present.   Complete with drawings, cross references and similarities to other patents, there are many lifetimes of explorations to be had.</p>
<p>For example, you can see Albert Einstein&#8217;s <a href="http://www.google.com/patents?id=zRpsAAAAEBAJ&amp;printsec=abstract&amp;zoom=4&amp;dq=albert+einstein#PPA2,M1" target="_blank">patent application for a blouse</a> or <a href="http://www.google.com/patents?id=PoJZAAAAEBAJ&amp;printsec=abstract&amp;zoom=4&amp;dq=john+logie+baird#PPA3,M1" target="_blank">John Logie Baird&#8217;s application</a> for the device which would later go on to become the world&#8217;s first television set.   There are many more.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/googlepatent.jpg?323f2c" alt="" /></p>
<h2><a href="http://scholar.google.com/"><strong>Google Scholar</strong></a></h2>
<p>Google Scholar is an interesting experiment with mixed results as it can bring you information about books and academic articles related to your topic of deep query.  However sometimes the results that it finds will either be behind an academic password/pay wall or be a link to a book which is not available online. Nevertheless it is a great research point for deep interest on a subject.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/googlescholar.png?323f2c" alt="" /></p>
<h2><a href="http://books.google.com/books"><strong>Google Books</strong></a></h2>
<p>Already known to many, Google Books has taken the liberty to scan and partially make available online thousands of books.   Their system is very interesting as they allow you to view certain pages of a book at any one time (usually about 20% of the book).</p>
<p>However if you <em>really</em> want to see the book and not buy it through one of Google&#8217;s affiliate links then you can reload the page from a different IP address and different sections of the book will show up.   Keep doing this until you get the whole work.   Also note that they have <a href="http://googleblog.blogspot.com/2008/12/search-and-find-magazines-on-google.html" target="_blank">quite the database of magazines</a> as well under similar terms.</p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/googlebooks.png?323f2c" alt="" /></p>
<h2><a href="http://catalogs.google.com/catalogs"><strong>Google Catalogs</strong></a></h2>
<p>Yes they are mad information monsters.  Google has went ahead and scanned almost every print catalog they can find.   Need to check that Sears Catalog and don&#8217;t have your copy handy?  Don&#8217;t worry Google has it all ready for you online.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/googlecatalog.jpg?323f2c" alt="" /></p>
<h2><a href="http://www.google.com/products"><strong>Google Products</strong></a></h2>
<p>Yes, Google has a price comparison engine as well.   Enter any product that you are looking for and Google will show you hundreds of places to buy it and the lowest price.  They just want the whole pie.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/googleproducts.png?323f2c" alt="" /></p>
<h2><a href="http://www.google.com/options/universities.html"><strong>Google University Search</strong></a></h2>
<p>Not as much as a custom database as the others, but more of a help for students and faculty.  Google University Search allows easy filtering and searching of resources from various US Universities.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/googleuni.jpg?323f2c" alt="" /></p>
<h2><a href="http://www.google.com/unclesam">US Government Search</a></h2>
<p>Not of much use to our friends overseas, though don&#8217;t worry, I am sure they are indexing as we speak.  Google has a specially filtered US Government search engine to help you find that information you need without all the noise.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/12/googlegoverment.jpg?323f2c" alt="" /></p>
<p>What sources do <strong>you</strong> use (can be non-Google) to research and find specialty information?   Do you use a source that does the job better than the engines mentioned above?    If so please leave it in the comment section.</p>
<p>Google picture by <strong><a href="http://www.flickr.com/photos/33718099@N00/2095542063/" target="_blank">Gonzalo FernÃ¡ndez</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/7-almost-unknown-google-search-engines-you-should-use/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>5 smoking-hot US Government Websites Worth Looking At</title>
		<link>http://www.makeuseof.com/tag/5-smoking-hot-us-government-websites-worth-looking-at/</link>
		<comments>http://www.makeuseof.com/tag/5-smoking-hot-us-government-websites-worth-looking-at/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 23:20:16 +0000</pubDate>
		<dc:creator>Mark O'Neill</dc:creator>
				<category><![CDATA[MakeUseOf Lists]]></category>
		<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[reference sites]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/tag/5-smoking-hot-us-government-websites-worth-looking-at/</guid>
		<description><![CDATA[OK, you can quit yawning. As soon as you heard the phrase &#8220;US Government websites&#8221;, you probably thought I was going to take you on a riveting ride through the complexities of the Internal Revenue Service. Au contraire, mon ami. Perhaps you didn&#8217;t realise until now that there are actually some really smoking hot websites [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2007/10/us-government.jpg?323f2c" alt="white-house-logo.jpg" align="left" /> OK, you can quit yawning. As soon as you heard the phrase &#8220;US Government websites&#8221;, you probably thought I was going to take you on a riveting ride through the complexities of the <a href="http://www.irs.gov">Internal Revenue Service</a>. Au contraire, mon ami. Perhaps you didn&#8217;t realise until now that there are actually some really smoking hot websites built and maintained by the US Federal Government with your tax dollars.</p>
<p><strong>1.</strong>  <a href="http://www.fbi.gov">Federal Bureau of Investigation</a></p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2007/10/fbilogo.thumbnail.gif?323f2c" alt="fbilogo.gif" align="left" border="0" />Being a true-crime fan, the FBI website is a regular stop for me. Not only does the FBI use their site as a recruitment tool but they also discuss closed cases and they take you &#8220;behind the scenes&#8221; so to speak to let you see how the Feds cracked the case. <a href="http://www.fbi.gov/page2/oct07/familysecrets100107.htm">Here</a> is a good example.</p>
<p>You can also learn about the <a href="http://www.fbi.gov/aboutus.htm">various FBI departments</a>, the <a href="http://www.fbi.gov/fbihistory.htm">history of the FBI</a>, and of course view the famous <a href="http://www.fbi.gov/wanted.htm">Most Wanted Lists</a>.</p>
<p>But what really makes the FBI website stand out is how much you can download. Scattered throughout the site are PDF downloads of cases, forensic science subjects and much more. All now we need is a FBI badge generator and an alien costume and we can play Mulder and Scully!</p>
<p><strong>2.</strong> <a href="http://www.cia.gov">Central Intelligence Agency</a></p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2007/10/cialogo.thumbnail.gif?323f2c" alt="cialogo.gif" align="left" border="0" /> At first glance, you might think there isn&#8217;t much to the CIA website but there are some interesting sections.</p>
<p>For example, take a <a href="https://www.cia.gov/about-cia/virtual-tour/virtual-tour-flash/index.html">virtual tour through CIA Headquarters</a>, view an <a href="https://www.cia.gov/about-cia/virtual-tour/kryptos/index.html">encrypted monument at Langley</a> to see if you can break the code, go on a <a href="https://www.cia.gov/about-cia/cia-museum/cia-museum-tour/index.html">virtual tour around the CIA Museum</a>, but the best feature of all is the annually updated <a href="https://www.cia.gov/library/publications/the-world-factbook/index.html">CIA World Factbook</a>.  Never be bad at geography ever again.    You can even download a copy of the Factbook free of charge.</p>
<p>But if you&#8217;re looking for files on who killed JFK, you&#8217;ll be disappointed.</p>
<p><strong>3.</strong>  <a href="http://www.loc.gov">Library of Congress</a></p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2007/10/loclogo.gif?323f2c" alt="loclogo.gif" align="left" border="1" />One of the most famous libraries in the world and now it&#8217;s online.   Browse through documents and collections.   <a href="http://memory.loc.gov/ammem/index.html">&#8220;American Memory&#8221;</a> provides access to documents, maps, audio, video and photos.  Search through <a href="http://thomas.loc.gov/">past and current legislation</a> making its way through Congress.  Oh and if you&#8217;re planning a personal visit to the LOC, check out what they are <a href="http://www.loc.gov/exhibits/">currently exhibiting</a>.</p>
<p><strong>4.</strong>  <a href="http://www.archives.gov">National Archives</a></p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2007/10/national-archives.jpg?323f2c" alt='National Archives' align="left" /> For those with an interest in history, this site is a must-go-to. The amount of information available here to view and to download is just staggering. So it&#8217;s impossible to cover it all here. A few highlights though -</p>
<p>View and download a high-resolution scan of the <a href="http://www.archives.gov/national-archives-experience/charters/declaration.html">Declaration of Independence</a> and the <a href="http://www.archives.gov/national-archives-experience/charters/constitution.html">US Constitution</a>.</p>
<p>Make online visits to the <a href="http://www.archives.gov/presidential-libraries/">Presidential Libraries</a>, view the <a href="http://www.archives.gov/executive/">documents of the White House</a> and subscribe by RSS feed to <a href="http://www.archives.gov/historical-docs/todays-doc/">&#8220;Document of the Day&#8221;</a>.</p>
<p><strong>5.</strong>  <a href="http://www.nasa.gov">NASA</a></p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2007/10/nasa.gif?323f2c" alt="nasa.gif" align="left" > As well as a true-crime fan, I am also a Trekkie, so NASA is another of my favourite websites. View the <a href="http://www.nasa.gov/multimedia/mmgallery/index.html">Interactive Features</a> section to see space-related material including photos, slide shows, videos and podcasts.  Subscribe by RSS feed to <a href="http://www.nasa.gov/rss/image_of_the_day.html">&#8220;NASA Image of the Day&#8221;</a>, view the <a href="http://www.nasa.gov/worldbook/index.html">NASA World Book</a> and read up on <a href="http://www.nasa.gov/missions/highlights/index.html">past and current missions</a>. One small step for me, one big download for my PC.</p>
<p>Do you have a favourite government website not included in the list above? Tell us about it in the comments!</p>
<div align="right">Posted by <a href="http://www.betterthantherapy.net/">Mark O&#8217;Neill</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/5-smoking-hot-us-government-websites-worth-looking-at/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (Requested URI is rejected)
Database Caching 1/25 queries in 0.251 seconds using apc
Object Caching 395/455 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-10 15:59:40 -->
