<?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>Lightning Shock &#187; Crazy Ideas</title>
	<atom:link href="http://www.lightningshock.com/category/my-insanity/crazy-ideas/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lightningshock.com</link>
	<description>(Were you expecting a witty tagline?)</description>
	<lastBuildDate>Fri, 30 Apr 2010 20:31:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to Create and Understand a Simple Database-Driven Website</title>
		<link>http://www.lightningshock.com/2009/09/05/how-to-create-and-understand-a-simple-database-driven-website/</link>
		<comments>http://www.lightningshock.com/2009/09/05/how-to-create-and-understand-a-simple-database-driven-website/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 00:09:29 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Crazy Ideas]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/?p=94</guid>
		<description><![CDATA[Alright, this had been driving me nuts for months, and all the online tutorials and guides sucked ass. And after hours through trial and error coding, I finally discovered the correct portions and amount of code to use. So basically, I&#8217;m going to explain here exactly what you need to do to create a simple [...]]]></description>
			<content:encoded><![CDATA[<p>Alright, this had been driving me nuts for months, and all the online tutorials and guides sucked ass. And after hours through trial and error coding, I finally discovered the correct portions and amount of code to use.</p>
<p>So basically, I&#8217;m going to explain here exactly what you need to do to create a simple PHP / MySQL backed DB-driven website that draws all of the data straight from the database.</p>
<p>An example URL of a page we&#8217;ll create could look like this:</p>
<blockquote><p>http://www.site.com/index.php?id=1<span id="more-94"></span><strong></strong></p></blockquote>
<p><strong>1) Prepare the Front-End Design and Content</strong></p>
<p>First, you&#8217;ll want to make sure that you have the basic design of the site coded. You may use whatever CSS styling you want to, it won&#8217;t make any difference on the backend. (One index.html file is fine, but be sure to rename it as index.php once it goes online.) Also all the information for our website needs to be properly entered into the database. Using a tool such as phpmyadmin will work great to enter the data, however you can use SQL if you wish. For the purpose of keeping this tutorial quick, I&#8217;m going to assume that you already know how to do this.</p>
<p>To keep things extremely simple, we&#8217;ll only need to create one table, I decided to name mine &#8220;page&#8221;. Also include a minimum of two fields (I&#8217;m using three) and two pages to understand what&#8217;s going on. Below is an example of a DB table that you could use:</p>
<p><strong></p>
<table class="wptable rowstyle-alt" id="wptable-2"  cellspacing="1">
	<thead>
	<tr>
		<th class="sortable" style="width:30px" align="center">ID</th>
		<th class="sortable" style="width:50px" align="center">Title</th>
		<th class="sortable" style="width:250px" align="center">Content</th>
	</tr>
	</thead>
	<tr>
		<td style="width:30px" align="center">1</td>
		<td style="width:50px" align="center">Home</td>
		<td style="width:250px" align="center">Welcome to the Homepage.</td>
	</tr>
	<tr>
		<td style="width:30px" align="center">2</td>
		<td style="width:50px" align="center">About</td>
		<td style="width:250px" align="center">A brief description about the site.</td>
	</tr>
</table><p>
</strong></p>
<p>You can use whatever data you wish, however most sites have these pages and that&#8217;s what I have decided to use. Also be sure to set the ID to the primary key, so it&#8217;ll automatically update later when you decide to add more webpages.</p>
<p><strong>2) Connect to the DB and Format the Website Structure<br />
</strong></p>
<p>Alright, next step. After we get all that out of the way, we now need to interact with our database table we just created, so we need to use PHP to configure a connection. You can include this in a few different ways, what I did was create a config.php file and wrote a require_once function to include the data from the PHP file onto my main index.php page.</p>
<p>There&#8217;s plenty of other sites that go into more depth on this, but I&#8217;ll give you an example here. For the config.php file:</p>
<pre>&lt;?php
$username="DB_USERNAME";
$password="DB_PASSWORD";
$database="DB_NAME";
$url="localhost";

$link = mysql_connect($url,$username,$password);

mysql_select_db($database) or die("Unable to select database");

mysql_close();</pre>
<p>?&gt;</p>
<p>And as for the index.php page, I know this probably could have been more securely coded (aka placing the DB retrieval info before the DOCTYPE), but for simplicity&#8217;s sake, here&#8217;s an example file:</p>
<pre>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</pre>
<pre>&lt;html&gt;</pre>
<pre>    &lt;head&gt;</pre>
<pre>        &lt;?php require_once ("config.php"); ?&gt;</pre>
<pre>        &lt;?php require_once ("functions.php"); ?&gt;</pre>
<pre>    &lt;title&gt;</pre>
<pre>    &lt;/title&gt;</pre>
<pre>    &lt;link rel="stylesheet" type="text/css" href="style.css" /&gt;</pre>
<pre>    &lt;/head&gt;</pre>
<pre>    &lt;body&gt;</pre>
<pre>        &lt;?php require_once ("header.php"); ?&gt;</pre>
<pre>        &lt;?php require_once ("content.php"); ?&gt;</pre>
<pre>        &lt;?php require_once ("footer.php"); ?&gt;</pre>
<pre>    &lt;/body&gt;</pre>
<pre>&lt;/html&gt;</pre>
<p>Note this also includes other files, like the header, function, and footer documents, but they aren&#8217;t required to have, they&#8217;re just apart of the design structure.</p>
<p><strong>3) Write the PHP Script</strong></p>
<p>Now all we need to do is get the database to actually read the different DB rows as separate webpages. To do this we will be using the PHP superglobal associative array $_GET, and a mysql_fetch function. If you caught the additional function in the above index.php file, we also included a file called content.php. This is where the script will be stored. First, we need to write some PHP variables:</p>
<pre>$id = $_GET['id'];</pre>
<pre>$query = "SELECT * FROM Page WHERE id='$id'";</pre>
<pre>$results = mysql_query($query, $link) or die(mysql_error());</pre>
<p>If you noticed, we assigned the $id variable to the PHP superglobal $_GET, where we want it to &#8220;get&#8221; the ID from each column and return all the information in that row based upon it&#8217;s ID, and what we tell it to later, which you can tell by the SQL query I wrote for the $query variable. The $results variable basically just combines everything we want it to do and kill it in case there&#8217;s an error, (You can see what we&#8217;re getting from the $link variable in the config.php file).</p>
<p>The $_GET superglobal is also useful for passing variables onto the end of a URL string. Let me try to explain. Since the script is asking for the ID from the page table we created earlier, we can now apprehend a result to the end of the URL via a question mark (?). For example, say we want to fetch the data contained in the first row, we can call upon the ID to fetch us everything we ask for (which is what we&#8217;re going to write next). I know, it sounds confusing, but with more practice, you&#8217;ll eventually get the hang of it.</p>
<p>Now to actually display that data on the webpage, we need to write a while loop using a mysql_fetch_array PHP function:</p>
<pre>while($row = mysql_fetch_array($results))</pre>
<pre>    {</pre>
<pre>    echo "&lt;div id='title'&gt;" . $row['title'] . "&lt;/div&gt; &lt;div id='content'&gt;" . $row['content'];</pre>
<pre>    echo "&lt;/div&gt;&lt;br /&gt;";</pre>
<pre>    }</pre>
<pre>?&gt;</pre>
<p>The while loop basically tells us that &#8220;while&#8221; we are fetching the DB row info, here&#8217;s what we&#8217;re doing with it. In this instance, just echoing the data onto the page. Since the first thing we are asking for is the data contained within the title column, the PHP will display this for us via the $row variable, because it &#8220;fetches&#8221; this specific instance of the array (whatever we ask for when we type the URL address in).</p>
<p>You could also base the URL off of other portions of the DB table if you wanted to, like &#8220;title&#8221; for example. You&#8217;d just have to get the title data via the $_GET superglobal and ask for it when you assign the value to an array via a variable (aka $title = $_GET['title'];) along with altering the other variables appropriately. You can name your variables whatever you wish, I just used $title for convenience.</p>
<p>In addition to the PHP, I&#8217;ve also echoed some div elements which help style the content appropriately through the stylesheet (they&#8217;re not a portion of the tutorial, but you can use whatever CSS properties you desire to apply).</p>
<p>Now after understanding the technical aspects behind the PHP code, we just need to put it all together. Save the following code as content.php:</p>
<pre>&lt;?php</pre>
<pre>$id = $_GET['id'];</pre>
<pre>$query = "SELECT * FROM Entry_Page WHERE id='$id'";</pre>
<pre>$results = mysql_query($query, $link) or die(mysql_error());</pre>
<pre>while($row = mysql_fetch_array($results))</pre>
<pre>    {</pre>
<pre>    echo "&lt;div id='title'&gt;" . $row['title'] . "&lt;/div&gt; &lt;div id='content'&gt;" . $row['content'];</pre>
<pre>    echo "&lt;/div&gt;&lt;br /&gt;";</pre>
<pre>    }</pre>
<pre>?&gt;</pre>
<p><strong>4) Place the Finishing Touches on the Site</strong></p>
<p>And now upload everything to the server, all in the same folder: index.php, config.php, and content.php (also header.php, footer.php, and style.css if you bothered to edit / create them yourself, so the site doesn&#8217;t look like crap).</p>
<p>Now you can access the different pages you created by calling upon the MySQL database via the various URL variables, in essence &#8220;creating the webpages based upon whatever information is stored within the field&#8217;s (ID&#8217;s) row&#8221;.</p>
<p>And there you have it, your very first Database-Driven Website!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2009/09/05/how-to-create-and-understand-a-simple-database-driven-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Great Webmaster Puzzle Challenge</title>
		<link>http://www.lightningshock.com/2009/05/30/the-great-webmaster-puzzle-challenge/</link>
		<comments>http://www.lightningshock.com/2009/05/30/the-great-webmaster-puzzle-challenge/#comments</comments>
		<pubDate>Sat, 30 May 2009 09:17:33 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Cool Sites]]></category>
		<category><![CDATA[Crazy Ideas]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/?p=89</guid>
		<description><![CDATA[After spending tons of fun trying to solve different riddles over at Webmaster-Talk, I decided to take my skills to the next level, and design some puzzles of my own, specifically for website owners and developers. The site consists of five different puzzles. Finishing each will allow you to move onto the next one. The [...]]]></description>
			<content:encoded><![CDATA[<p>After spending tons of fun trying to solve different riddles over at <a href="http://www.webmaster-talk.com/general-discussions/173050-riddle-game.html">Webmaster-Talk</a>, I decided to take my skills to the next level, and design some puzzles of my own, specifically for website owners and developers.<span id="more-89"></span></p>
<p>The site consists of five different puzzles. Finishing each will allow you to move onto the next one. The rules are fairly simple in that respect.</p>
<p>You do not need to have an understanding of HTML, Javascript, or any other coding language to complete the quiz, although they can certainly help.</p>
<p><a href="http://puzzlechallenge.jameslewitzke.com/">Take the Great Webmaster Puzzle Challenge Today!</a></p>
<p>Also, tell me how it went for you, and what you liked and didn&#8217;t like about the test:</p>
<ul>
<li>Were there enough challenges?</li>
<li>Any advantages or disadvantages you could spot?</li>
<li>Was it simply too easy?</li>
</ul>
<p>Comment below and tell me about your experience with this new concept I came up with over the past week.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2009/05/30/the-great-webmaster-puzzle-challenge/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>5 Ways to Piss Off Spammers</title>
		<link>http://www.lightningshock.com/2008/03/11/5-ways-to-piss-off-spammers/</link>
		<comments>http://www.lightningshock.com/2008/03/11/5-ways-to-piss-off-spammers/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 21:51:04 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Crazy Ideas]]></category>
		<category><![CDATA[Manipulation]]></category>
		<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/2008/03/11/5-ways-to-piss-off-spammers/</guid>
		<description><![CDATA[Are you tired of receiving spam? Do you wish there was some techniques you could use to to get revenge on those mealy-mouthed punks? Here&#8217;s five ways I present to have fun at screwing with spammer&#8217;s heads: 5. Respond with false interest Here&#8217;s something to try, if someone just sent you an email claiming you [...]]]></description>
			<content:encoded><![CDATA[<p>Are you tired of receiving spam? Do you wish there was some techniques you could use to to get revenge on those mealy-mouthed punks? Here&#8217;s five ways I present to have fun at screwing with spammer&#8217;s heads:<span id="more-47"></span></p>
<p><strong>5. Respond with false interest</strong></p>
<p>Here&#8217;s something to try, if someone just sent you an email claiming you need Viagra, tell them you would like to place an order on 100 subscriptions to it. And have them send it to a false address, preferably somewhere offshore and remote, so by the time they send it out, it&#8217;ll be to late.</p>
<p>But make sure you don&#8217;t use your real name, credit card numbers, etc. There&#8217;s no way you&#8217;d want them to gain hold of that information.</p>
<p><strong>4. Spam them back</strong></p>
<p>What is the primary reason spammers choose to spam? For money and business reasons. So if you concoct a plan to re-spam them back. Here&#8217;s what to do:</p>
<ul>
<li>If someone places a &#8220;Visit My Website&#8221; Comment on your blog or forum, first get a hold of their IP addresses to make sure it&#8217;s really the site owner or admin spamming you.</li>
<li>Next, do some brief research on what their site is all about</li>
<li>Then, visit their site and do the exact same thing, maybe even double the effort.</li>
</ul>
<p>You should have a ball watching them work fast enough trying to clean everything up.</p>
<p><strong>3. Mock them</strong></p>
<p>Sometimes you may receive spam in a public place on the internet (such as a discussion forum, for example) promoting their product or website. Most of these spam messages will probably contain incoherent phrases in <a href="http://www.webmaster-talk.com/blogging-forum/116922-5-simple-wordpress-plugins-will-get.html">blog plugin posts</a> or <a href="http://www.webmaster-talk.com/ecommerce-and-general-business-forum/122928-create-traffic-to-your-website.html">traffic generation posts</a>.</p>
<p>Note however that this only works with the moderately intelligent spammers, as some just decide to spam and never return.</p>
<p><strong>2. Locate and Destroy Social Manipulators</strong><a href="http://alexandersarchive.wordpress.com/"></a></p>
<p><a href="http://alexandersarchive.wordpress.com/">John Alexander</a> uses <a href="http://www.webmaster-talk.com/general-discussions/89741-digital-point-forums-why-the-hype-3.html#post525607">this method on StumbleUpon</a> and it guarantees to get some pretty nasty replies.</p>
<p>Some people like to spam social media sites for their own benefit with offers like <a href="http://forums.digitalpoint.com/showthread.php?t=647204">&#8220;Stumble You, Stumble Me&#8221;</a> (Which are against their <a href="http://www.stumbleupon.com/faq.html#incentive_pms">Terms of Service</a>, BTW). So why not have some fun and <a href="http://franknittythe2nd.stumbleupon.com/">uncover their evil intentions</a> to the rest of the social community?</p>
<p><strong>1. Expose the Spammers for what they are</strong></p>
<p>Take one of <a href="http://www.walkonmypath.com/we-worship-the-spam-gods/">Adam&#8217;s blog posts</a> for example. He captures the spammer&#8217;s information and finds some <a href="http://www.walkonmypath.com/spam-me-please/">sick, twisted way</a> to turn the tables on them.</p>
<p>This is an excellent way to obtain great thoughts on what to write about on his blog. So its a win-win situation for him, he gets to screw with spammers and have great website content at the same time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2008/03/11/5-ways-to-piss-off-spammers/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>3D Websites &#8211; Will they Happen?</title>
		<link>http://www.lightningshock.com/2008/02/11/3d-websites-will-they-happen/</link>
		<comments>http://www.lightningshock.com/2008/02/11/3d-websites-will-they-happen/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 21:03:25 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Crazy Ideas]]></category>
		<category><![CDATA[Miscellaneous Internet]]></category>
		<category><![CDATA[Random Question]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/2008/02/11/3d-websites-will-they-happen/</guid>
		<description><![CDATA[We always hear about how Virtual Reality is the next step in the Videogame World, or how we all may one day experience holographic movies. But what about interacting with those three-dimensional environments to give and retrieve information? I know I&#8217;m surely not a coding expert (at this present time). This would probably require a [...]]]></description>
			<content:encoded><![CDATA[<p>We always hear about how Virtual Reality is the next step in the Videogame World, or how we all may one day experience holographic movies. But what about interacting with those three-dimensional environments to give and retrieve information?<span id="more-40"></span></p>
<p>I know I&#8217;m surely not a coding expert (at this present time). This would probably require a whole new web browser system, heck, maybe even a whole new markup language to function properly.</p>
<p>I could see the first phase of this project involving just adding new HTML attributes (such as &#8220;depth&#8221;), and HTML elements which could contain different &#8220;sides&#8221; of the 3D projection (like the north side &#8220;title tag&#8221; or maybe they would ad an X,Y,Z &#8220;grid position&#8221;).</p>
<p>One other important revolutionary function I feel would be adding a brand new &#8220;Navigation System&#8221; to the website (which could end up replacing hyperlinks, well at least internally). You&#8217;d navigate by the ways of keyboard arrows (along with four more keys to navigate vertically, and  much like the ways you control character in a first-person shooter videogame. But you&#8217;d still use your mouse to click whichever links, page elements, etc. are visible.</p>
<p><strong>Potential Advantages I can see:</strong></p>
<ul>
<li>Much more space to store, view and access information</li>
<li>It Gives users a whole new perspective (current 2D sites seem a bit plain and boring now, don&#8217;t they?)</li>
<li>Number of options are greatly increased, more freedom to choose what and how you want to design your site</li>
<li>It would be on the &#8220;Cutting-Edge&#8221; of technology</li>
<li>More business opportunities are created (like new advertising venues and fresh ways to communicate with one another)</li>
</ul>
<p><strong>Disadvantages of this Design concept:</strong></p>
<ul>
<li>Very difficult to code and design (from a web developer&#8217;s standpoint, but hey, everyone can learn, right?)</li>
<li>Choosing just how to implement this sort of idea will result in many conflicting ideas (Consistency is important)</li>
<li>Probably tons of wasted space (if we&#8217;re designing in a cube format), most probably won&#8217;t need everything a 3D Website has to offer</li>
<li>Navigation may seem difficult and unnatural for the first few months (or years) of use, new browser applications and improvements would have to be created for them to run properly</li>
</ul>
<p>I realize this idea is kind of &#8220;out there&#8221;, but I still think they&#8217;d be a cool thing to see.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2008/02/11/3d-websites-will-they-happen/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>7 Future &#8220;Star Wars inspired&#8221; Inventions I&#8217;d Like to See</title>
		<link>http://www.lightningshock.com/2008/01/22/7-future-star-wars-inspired-inventions-id-like-to-see/</link>
		<comments>http://www.lightningshock.com/2008/01/22/7-future-star-wars-inspired-inventions-id-like-to-see/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 03:13:25 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Crazy Ideas]]></category>
		<category><![CDATA[How Awesome am I?]]></category>
		<category><![CDATA[Star Wars]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/2008/01/22/7-future-star-wars-inspired-inventions-id-like-to-see/</guid>
		<description><![CDATA[As I was having trouble getting, I decided to get my creative juices flowing. Here&#8217;s seven (possibly crazy) ideas I have to improve our lives and / or entertain everyone: 1. Force Powers How cool would it be to learn different powers? Maybe nothing too extreme, but say we could go on adventures to find [...]]]></description>
			<content:encoded><![CDATA[<p>As I was having trouble getting, I decided to get my creative juices flowing. Here&#8217;s seven (possibly crazy) ideas I have to improve our lives and / or entertain everyone:  <span id="more-34"></span></p>
<p><strong>1. Force Powers</strong></p>
<p>How cool would it be to learn different powers? Maybe nothing too extreme, but say we could go on adventures to find ancient books that would teach us things about the force we cannot comprehend.</p>
<p>The power I&#8217;d like to learn the most would definitely have to be &#8220;Death Field&#8221;. This power was common throughout the KOTOR video game series. Basically what would happen is that when you are near a few enemies, you&#8217;d cast &#8220;Death Field&#8221; and it would deplete your enemies health while simultaneously recharging your own, very neat.</p>
<p><strong>2. Medical Packs</strong></p>
<p>Whenever I would become sick, I could just pull out a medkit, inject the antibodies (or whatever medical resources they&#8217;d contain) into my body and become instantly cured.</p>
<p>You would probably have to carry around more than one, because most medkits probably wouldn&#8217;t heal you completely in one use.</p>
<p><strong>3. Revamped Currency System</strong></p>
<p>Anybody playing KOTOR would know what &#8220;Credits&#8221; are. It&#8217;s a simplified currency system where everything is bought and sold using them. No pointless multiple forms like &#8220;Pennies&#8221;, &#8220;One Dollar Bills&#8221;, &#8220;Five Dollar Bills&#8221;, etc. One standard for the entire galaxy.</p>
<p><strong>4. Personal Shuttle Transport</strong></p>
<p>I&#8217;ve always wanted my own personal air-transportation vehicle. It would make flying over traffic a breeze, be a perfect getaway vehicle (not that I&#8217;m implying you should do anything illegal), and not to mention they&#8217;d be super-cool to fly!</p>
<p>It wouldn&#8217;t have to be too big, maybe something Millennium Falcon-sized, probably a tad smaller. This way I could infiltrate through enemy defenses virtually undetected, I could explore uncharted worlds with the craft&#8217;s lightspeed hyperdrive, and I could bring a small party to travel with me.</p>
<p><strong>5. (Obedient) Droid Servants</strong></p>
<p>Having dirty houses, smudgy windows, and is not something people like to have, but unfortunately, most people have to deal with them due to time constraints in their lives. I&#8217;m also implying &#8220;forever obedient&#8221; machines here because I don&#8217;t want them to turn on us Terminator-Style.</p>
<p>I&#8217;ve dreamed about having my own personal assassin droid like HK-47 from the Knights of the Old Republic Series. He&#8217;d love carnage, obey my every word, and be my own bodyguard. (not like I&#8217;d need one though, due to these following inventions&#8230;&#8230;.)</p>
<p><strong>6. A Lightsaber</strong></p>
<p>I had a dream a while back that I was a lightsaber wielding jedi (or Sith, probably the latter <img src='http://www.lightningshock.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ), and I was a master dualist, no one could match against my skills and prowess. But then I realized, in this universe that we live in, our guns don&#8217;t shoot &#8220;laser beams&#8221; like the blasters in the Star Wars Galaxy do, they shoot actual metal bullets, which leads me to my final invention&#8230;..</p>
<p><strong>7. A Personalized Energy Shield</strong></p>
<p>If I had an invisible metallic energy shield (to protect myself from bullets, swords, etc.) surrounding myself, along with a lightsaber (the only weapon that would theoretically be able to slice through my shield), I&#8217;d be virtually invincible <img src='http://www.lightningshock.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>If you haven&#8217;t noticed, I&#8217;ve been playing Knights of the Old Republic 2 lately, great game.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2008/01/22/7-future-star-wars-inspired-inventions-id-like-to-see/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Does Metallica equal America?</title>
		<link>http://www.lightningshock.com/2008/01/02/does-metallica-equal-america/</link>
		<comments>http://www.lightningshock.com/2008/01/02/does-metallica-equal-america/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 06:30:03 +0000</pubDate>
		<dc:creator>James Lewitzke</dc:creator>
				<category><![CDATA[Cool Sites]]></category>
		<category><![CDATA[Crazy Ideas]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.lightningshock.com/2008/01/02/does-metallica-equal-america/</guid>
		<description><![CDATA[There are many similarities between the Heavy Metal Band and the United States of America. Here is an interesting article I came across that outlined the Rise and Fall of Metallica, and compared it to the Rise and Fall of American Liberties. Have the glory days of America really passed, along with reaching the point [...]]]></description>
			<content:encoded><![CDATA[<p>There are many similarities between the Heavy Metal Band and the United States of America.<span id="more-20"></span></p>
<p><a href="http://www.strike-the-root.com/51/gregory/gregory3.html">Here is an interesting article</a> I came across that outlined the Rise and Fall of Metallica, and compared it to the Rise and Fall of American Liberties.</p>
<p>Have the glory days of America really passed, along with reaching the point of bloviating corruption, as some say Metallica has already?</p>
<p>By no means do I believe that our old society is perfect (Slavery, technology, etc.), however Americans during the eighteenth and nineteenth centuries did have much less restrictions and more freedom than we do now.</p>
<p>Whether or not both of these bodies have really &#8220;changed&#8221; is debatable in and of itself. As the title of the article states, don&#8217;t take the readings TOO seriously, because both Metallica and America have good parts and bad parts. Not to mention I can go on record and say Metallica is my favorite Band.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lightningshock.com/2008/01/02/does-metallica-equal-america/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.756 seconds -->
