<?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>Open Moon Project &#187; Uncategorized</title>
	<atom:link href="http://openmoonproject.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://openmoonproject.com</link>
	<description>Open Moon Project - Open Ideas - Open Achievements</description>
	<lastBuildDate>Sat, 04 Sep 2010 09:37:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Outlook Auto Bcc all messages</title>
		<link>http://openmoonproject.com/uncategorized/outlook-auto-bcc-all-messages/</link>
		<comments>http://openmoonproject.com/uncategorized/outlook-auto-bcc-all-messages/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 12:13:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[but no equivalent for Bcc. This page offers two code samples for adding such an automatic Bcc. Both use the Application.ItemSend event]]></category>
		<category><![CDATA[Outlook has a rule to automatically Cc another person on outgoing messages]]></category>
		<category><![CDATA[which fires whenever a user sends a message or other item. Method #1 (Basic) This version is suitable for Outlook 2003 or later. It uses Outlook objects exclusively and includes error handling to avoi]]></category>

		<guid isPermaLink="false">http://openmoonproject.com/uncategorized/outlook-auto-bcc-all-messages/</guid>
		<description><![CDATA[Outlook has a rule to automatically Cc another person on outgoing messages, but no equivalent for Bcc. This page offers two code samples for adding such an automatic Bcc. Both use the Application.ItemSend event, which fires whenever a user sends a message or other item.
Method #1 (Basic)

This version is suitable for Outlook 2003 or later. It uses Outlook objects exclusively and includes error handling to avoid problems with an invalid Bcc address. Place this VBA code in the built-in ThisOutlookSession module: ]]></description>
			<content:encoded><![CDATA[<h1>Outlook to automatically Bcc all outgoing messages</h1>
<p>Outlook has a rule to automatically Cc another person on outgoing messages, but no equivalent for Bcc. This page offers two code samples for adding such an automatic Bcc. Both use the Application.ItemSend event, which fires whenever a user sends a message or other item.</p>
<h5>Method #1 (Basic)</h5>
<p>This version is suitable for Outlook 2003 or later. It uses Outlook objects exclusively and includes error handling to avoid problems with an invalid Bcc address.</p>
<p>Place this <a href="http://www.outlookcode.com/article.aspx?ID=40">VBA</a> code in the built-in ThisOutlookSession module:</p>
<pre>Private Sub Application_ItemSend(ByVal Item As Object, _
 Cancel As Boolean)
 Dim objRecip As Recipient
 Dim strMsg As String
 Dim res As Integer
 Dim strBcc As String
 On Error Resume Next

 ' #### USER OPTIONS ####
 ' address for Bcc -- must be SMTP address or resolvable
 ' to a name in the address book
 strBcc = "someone@somewhere.dom"

 Set objRecip = Item.Recipients.Add(strBcc)
 objRecip.Type = olBCC
 If Not objRecip.Resolve Then
 strMsg = "Could not resolve the Bcc recipient. " &amp; _
 "Do you want still to send the message?"
 res = MsgBox(strMsg, vbYesNo + vbDefaultButton1, _
 "Could Not Resolve Bcc Recipient")
 If res = vbNo Then
 Cancel = True
 End If
 End If

 Set objRecip = Nothing
End Sub</pre>
<p><span id="more-169"></span></p>
<p>Make sure you substitute the right e-mail address for &#8220;someone@somewhere.dom<a href="mailto:myaddress@mydomain.dom.">.</a>&#8221;</p>
<p>The reason that this method is not suitable for versions earlier than Outlook 2003 is because it will trigger an address book security prompt due to the use of Recipients.Add. You could avoid security prompts by simply setting the Item.Bcc property to the desired address, but that has two problems. First, it would wipe out any Bcc recipients that the user might have already added. Also, in some Outlook configurations, setting Bcc without trying to resolve the address results in an unresolved address, even if you use a proper SMTP address; you&#8217;ll get an error, and Outlook won&#8217;t send the message.</p>
<h5>Method #2 (Redemption) <a name="method3"></a></h5>
<p>This version uses the same basic technique as Method #1, only with the third-party <a href="http://www.dimastr.com/redemption/">Outlook Redemption</a> library to avoid security prompts in versions before Outlook 2003 and, if the recipient cannot be resolved, to display to the user the name resolution dialog.</p>
<pre>Private Sub Application_ItemSend(ByVal Item As Object, _
 Cancel As Boolean)
 ' Requires a reference to
 ' the SafeOutlook library (Redemption.dll)
 Dim objMe As Redemption.SafeRecipient
 Dim sMail As Redemption.SafeMailItem
 On Error Resume Next

 Set sMail = CreateObject("Redemption.SafeMailItem")
 Item.Save
 sMail.Item = Item
 Set objMe = sMail.Recipients.Add("myaddress@mydomain.dom")
 objMe.Type = olBCC
 If Not objMe.Resolve(True) Then
 Cancel = True
 End If

 Set objMe = Nothing
 Set sMail = Nothing
End Sub</pre>
<p>Make sure you substitute the right e-mail address for &#8220;<a href="mailto:myaddress@mydomain.dom.">myaddress@mydomain.dom.</a>&#8220;</p>
]]></content:encoded>
			<wfw:commentRss>http://openmoonproject.com/uncategorized/outlook-auto-bcc-all-messages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>make office 2007 like 2003</title>
		<link>http://openmoonproject.com/uncategorized/make-office-2007-like-2003/</link>
		<comments>http://openmoonproject.com/uncategorized/make-office-2007-like-2003/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 11:50:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://openmoonproject.com/?p=165</guid>
		<description><![CDATA[UBitMenu is a free tool that can emulate the Office 2003 interface in Office 2007 without any performance loss. It’s basically for anyone who can no longer find the same functions in Office 2007 that were easily findable in Office 2003.

What I like about this program is that it does not actually get rid of the ribbon interface, but instead just adds the classic menu as a new ribbon. So you can continuing using the ribbon interface, but when you want to find something quickly the old way, just go to the classic ribbon.

Click on this download link Michelle HERE]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" href="http://www.ubit.ch/software/ubitmenu-languages/" target="_blank">UBitMenu</a> is a free tool that can emulate the Office 2003 interface in Office 2007 without any performance loss. It’s basically for anyone who can no longer find the same functions in Office 2007 that were easily findable in Office 2003.</p>
<p>What I like about this program is that it does not actually get rid of the ribbon interface, but instead just adds the classic menu as a new ribbon. So you can continuing using the ribbon interface, but when you want to find something quickly the old way, just go to the classic ribbon.</p>
<p>Click on this download link Michelle <a rel="nofollow" href="http://www.ubit.ch/software/ubitmenu-languages/" target="_blank">HERE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://openmoonproject.com/uncategorized/make-office-2007-like-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nexus One editing Hosts file</title>
		<link>http://openmoonproject.com/uncategorized/nexus-one-editing-hosts-file/</link>
		<comments>http://openmoonproject.com/uncategorized/nexus-one-editing-hosts-file/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 15:22:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://openmoonproject.com/?p=163</guid>
		<description><![CDATA[Ok your device must be rooted follow androidandme.com then on the device settings, Applications, Unknown sources &#8211; yes Development, USB debugging &#8211; Yes then If your Nexus one is rooted, then adb-windows.exe pull system/etc/hosts hosts modify it adb-windows.exe remount adb-windows.exe push hosts system/etc/hosts If its not rooted, then i doubt you will be able modify [...]]]></description>
			<content:encoded><![CDATA[<p>Ok your device must be rooted</p>
<p>follow androidandme.com</p>
<p>then</p>
<p>on the device settings, Applications,<br />
Unknown sources &#8211; yes<br />
Development, USB debugging &#8211; Yes</p>
<p>then</p>
<p>If your Nexus one is rooted, then</p>
<p>adb-windows.exe pull system/etc/hosts hosts<br />
modify it<br />
adb-windows.exe remount<br />
adb-windows.exe push hosts system/etc/hosts</p>
<p>If its not rooted, then i doubt you will be able modify it.</p>
]]></content:encoded>
			<wfw:commentRss>http://openmoonproject.com/uncategorized/nexus-one-editing-hosts-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thunderbird Labels</title>
		<link>http://openmoonproject.com/uncategorized/thunderbird-labels/</link>
		<comments>http://openmoonproject.com/uncategorized/thunderbird-labels/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 13:56:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://openmoonproject.com/?p=152</guid>
		<description><![CDATA[Thunderbird Labels o update your labels in Thunderbird follow these simple steps. Install Stylish in Thunderbird – Go to https://addons.mozilla.org/en-US/firefox/addon/2108 and download the Stylish extension. Open Thunderbird and go to Tools -&#62; Extensions (v1.5) Tools -&#62; Addons -&#62; Extensions (v2) and click the install button. Browse to where you saved Stylish on your computer. Then [...]]]></description>
			<content:encoded><![CDATA[<p>Thunderbird Labels</p>
<p><strong>o update your labels in Thunderbird follow these simple steps.</strong></p>
<p><strong>Install Stylish in Thunderbird</strong> – Go to <a onclick="javascript:pageTracker._trackPageview('/outgoing/addons.mozilla.org/en-US/firefox/addon/2108');" href="https://addons.mozilla.org/en-US/firefox/addon/2108">https://addons.mozilla.org/en-US/firefox/addon/2108</a> and download the Stylish extension. Open Thunderbird and go to <span style="color: #6589b6;">Tools -&gt; Extensions</span> (v1.5) <span style="color: #6589b6;">Tools -&gt; Addons -&gt; Extensions</span> (v2) and click the <span style="color: #6589b6;">install</span> button. Browse to where you saved Stylish on your computer.  Then restart Thunderbird. <em>Note</em>: If using Firefox, make sure to right click on the Stylish install link and choose <span style="color: #6589b6;">Save Link As…</span> because we don’t want to install it into Firefox.</p>
<p><strong>Create a New Stylish Style</strong> – Open Thunderbird, click on the Stylish icon in the status bar, choose <span style="color: #6589b6;">manage styles</span>, click <span style="color: #6589b6;">write</span> and in the <span style="color: #6589b6;">description</span> field add <span style="color: #6589b6;">TwisterMc’s Labels</span>.</p>
<p><strong>Get the Code</strong> – <a href="http://www.twistermc.com/downloads/twistermc-labels.txt" target="_blank">Click here</a> and copy the code into the big Stylish input box. Make sure that the <span style="color: #6589b6;">Enabled</span> checkbox is checked and hit <span style="color: #6589b6;">Save</span>. Then close the <span style="color: #6589b6;">Manage Styles</span> window.</p>
<p><strong>Refresh</strong> – In order for the labels to appear, close the main inbox window and re-open it, or just restart Thunderbird.</p>
<p><strong>That’s it.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://openmoonproject.com/uncategorized/thunderbird-labels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring NTP Server Windows Server 2008</title>
		<link>http://openmoonproject.com/uncategorized/configuring-ntp-server-windows-server-2008/</link>
		<comments>http://openmoonproject.com/uncategorized/configuring-ntp-server-windows-server-2008/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 06:17:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://openmoonproject.com/?p=142</guid>
		<description><![CDATA[HOW TO SET UP A TIME SERVER in WINDOWS SERVER 2008]]></description>
			<content:encoded><![CDATA[<h1><span style="text-decoration: underline;">HOW TO SET UP A TIME SERVER in WINDOWS SERVER 2008</span></h1>
<p>Sick of being confused about setting up a NTP time server in windows server 2008</p>
<p>Follow this Step by step guide</p>
<p><span style="color: #ff0000;"><strong><span style="text-decoration: underline;">Step 1:</span></strong></span><br />
Net time /setsntp:<br />
W32tm /config /syncfromflags:manual /manualpeerlist:<br />
W32tm /config /reliable:yes<br />
W32tm /config /update<br />
W32tm /resync<br />
Pause<br />
Exit</p>
<p><span style="color: #ff0000;"><strong><span style="text-decoration: underline;">Step 2:</span></strong></span><br />
[HKEY_LOCAL_MACHINE\SYSTEM</p>
<div>\CurrentControlSet\Services\W32Time\Config]<br />
&#8220;AnnounceFlags&#8221;=dword:00000005<br />
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters]<br />
&#8220;Type&#8221;=&#8221;NTP&#8221;<br />
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer]<br />
&#8220;Enabled&#8221;=dword:00000001</p>
<p><span style="text-decoration: underline;"><strong><span style="color: #ff0000;">Step 3:</span></strong></span><br />
Net stop w32time<br />
Net start w32time<br />
Net time<br />
Pause</p>
<p>YOUR DONE :)</p>
<p>NOW IT WILL WORK</p></div>
]]></content:encoded>
			<wfw:commentRss>http://openmoonproject.com/uncategorized/configuring-ntp-server-windows-server-2008/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DKU 5 Driver Winows 7, Vista, Server 2008, 64bit</title>
		<link>http://openmoonproject.com/uncategorized/dku-5-driver-winows-7-vista-server-2008-64bit/</link>
		<comments>http://openmoonproject.com/uncategorized/dku-5-driver-winows-7-vista-server-2008-64bit/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 03:04:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://openmoonproject.com/?p=138</guid>
		<description><![CDATA[DKU 5 Driver windows 7, Vista, Server 2008 I guess you gave upgraded your box to the latest os, and found your non-genuine Nokia DKU 5 cable no longer works and you cant find the driver for it anywhere on line. Most non-genuine DKU 5 cables use the Texas Instrument TUSB3410 RS-232/IR-to-USB converter so after [...]]]></description>
			<content:encoded><![CDATA[<h1>DKU 5 Driver windows 7, Vista, Server 2008</h1>
<p>I guess you gave upgraded your box to the latest os,<br />
and found your non-genuine Nokia DKU 5 cable no longer works<br />
and you cant find the driver for it anywhere on line.</p>
<p>Most non-genuine DKU 5 cables use the Texas Instrument TUSB3410 RS-232/IR-to-USB converter</p>
<p>so after much work</p>
<p>here are the drivers:</p>
<p>and if you get stuck visit: <a href="http://www.multitech.com/en_US/SUPPORT/Updates/Drivers/drivers_by_filename.aspx">http://www.multitech.com/en_US/SUPPORT/Updates/Drivers/drivers_by_filename.aspx</a></p>
<p>search for:  Server 2008 64 bit</p>
]]></content:encoded>
			<wfw:commentRss>http://openmoonproject.com/uncategorized/dku-5-driver-winows-7-vista-server-2008-64bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Very Minimal CentOS Installation</title>
		<link>http://openmoonproject.com/uncategorized/very-minimal-centos-installation/</link>
		<comments>http://openmoonproject.com/uncategorized/very-minimal-centos-installation/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 13:47:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://openmoonproject.com/?p=112</guid>
		<description><![CDATA[Very Minimal CentOS Installation &#8211; we use CENTos for our Moon Rover Any attempt to install CentOS using text-mode or kick-start will result into 340+ packages and lots of useless services. The only way you can achieve a true minimal CentOS is through a manual install process and using graphics mode. Please seek more guidance [...]]]></description>
			<content:encoded><![CDATA[<h2>Very Minimal CentOS Installation &#8211; we use CENTos for our Moon Rover</h2>
<p>Any attempt to install CentOS using text-mode or kick-start will result into 340+ packages and lots of useless services. The only way you can achieve a true minimal CentOS is through a manual install process and using graphics mode.</p>
<p>Please seek more guidance from <a href="http://www.centos.org/docs/5/html/5.2/Installation_Guide/">this manual</a> for topics not covered here.</p>
<p>Checkpoint 1: Start graphics installation by hitting enter on boot prompt.</p>
<p>Checkpoint 2: Pick <strong>Customize now</strong> during package group selection.</p>
<p>Checkpoint 3: De-select everything (Yes, I repeat it! Deselect everything including base).</p>
<p>If you follow the suggested process, you will get a <em>True Minimal CentOS</em> installation with only 148 packages installed (and very few system services).</p>
<p>OTHER VERSION</p>
<p>For my version of the minimal install I:</p>
<p>1. Boot to CD 1<br />
2. Type in &#8220;linux text&#8221; to get the text installation setup<br />
3. Proceed normally with the installation until it asks which packages to install<br />
4. I deselect all of the packages and then click on the &#8220;customize package selection&#8221; check box<br />
5. I then hold down the &#8220;-&#8221; key, which scrolls through all of the package options, and deselects them all for me<br />
6. I finish the install and I am done</p>
<p>7. Then I do a &#8220;yum update&#8221; to get latest<br />
8. Then I do a &#8220;yum install &lt;package&gt;&#8221; for what ever packages I need but didn&#8217;t get during installation.</p>
<p>All of this with only CentOS 5 CD 1.</p>
<p>OR ANOTHER</p>
<p>You can do a minimal install that just requires the first CD by performing the following two steps during the installation:</p>
<ul>
<li>During the category/task selection, deselect all package categories, and choose the &#8220;Customize now&#8221; option at the bottom of screen.</li>
<li>During the customized package selection, deselect everything.</li>
</ul>
<p><img title="&lt;!&gt;" src="http://wiki.centos.org/wiki/modern-CentOS/img/attention.png" alt="&lt;!&gt;" width="15" height="15" /> There are reports that more than CD 1 is required in the following case:</p>
<ul>
<li>If you use some software raid options (this will also require CD 2 and 5)</li>
<li>If you use encrypted filesystems</li>
</ul>
<p>When the <em>anaconda</em> installer notes that additional disks will be required, but you desire a one CD install, the quick answer is one or more of the following approaches:</p>
<ul>
<li>Trim back and do a minimal install. Then once the install is up and running, pull in more packages with <em>yum</em>, and add more options later.</li>
<li>Use the method: linux text ( Note: you cant do a minimal install using the Text mode, you *must* use the GUI mode if you are looking to install the minimal package set)</li>
</ul>
<p>If you want to avoid using more than one CD, but want to install more than just the minimal set of packages, you could also consider doing a network installation. A network installation ISO (called boot.iso) is available from the <em>5/os/&lt;arch&gt;/images/</em> directory on CentOS mirrors.</p>
<p>CUSTOM DVD ISO OF CENTOS</p>
<p>http://lingxiang.tang.googlepages.com/createalesssizecentos5</p>
<p>http://www.centos.org/docs/5/html/Installation_Guide-en-US/ch-kickstart2.html</p>
]]></content:encoded>
			<wfw:commentRss>http://openmoonproject.com/uncategorized/very-minimal-centos-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unified Field Theory and Gravitational Anomaly</title>
		<link>http://openmoonproject.com/uncategorized/unified-field-theory-and-gravitational-anomaly/</link>
		<comments>http://openmoonproject.com/uncategorized/unified-field-theory-and-gravitational-anomaly/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 11:58:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Unified Field Theory]]></category>

		<guid isPermaLink="false">http://openmoonproject.com/uncategorized/unified-field-theory-and-gravitaitonal-anomaly/</guid>
		<description><![CDATA[Unified Field Theory In the middle of the 1800&#8242;s the first successful (classical)  field theory was developed by James Clerk Maxwell . In 1820 Hans Christian Ørsted discovered that electric currents exerted forces on magnets. While in 1831, Michael Faraday made the observation that time-varying magnetic fields could induce electric currents. Until then, electricity and [...]]]></description>
			<content:encoded><![CDATA[<p>Unified Field Theory</p>
<p>In the middle of the 1800&#8242;s the first successful (classical)  field theory was developed by <a title="James Clerk Maxwell" href="http://en.wikipedia.org/wiki/James_Clerk_Maxwell">James Clerk Maxwell</a> .<br />
In 1820 <a title="Hans Christian Ørsted" href="http://en.wikipedia.org/wiki/Hans_Christian_%C3%98rsted">Hans Christian Ørsted</a> discovered that <a title="Electric current" href="http://en.wikipedia.org/wiki/Electric_current">electric currents</a> exerted forces on <a title="Magnet" href="http://en.wikipedia.org/wiki/Magnet">magnets</a>.<br />
While in 1831, <a title="Michael Faraday" href="http://en.wikipedia.org/wiki/Michael_Faraday">Michael Faraday</a> made the observation that time-varying <a title="Magnetic field" href="http://en.wikipedia.org/wiki/Magnetic_field">magnetic fields</a> could induce electric currents.</p>
<p>Until then, electricity and magnetism had been thought of as unrelated phenomena.</p>
<p>First Field Theory &#8211; 1800&#8242;s &#8211; James Clerk Maxwell proposed for electromagnetism,<br />
Second Field Early &#8211; 20th century &#8211; Albert Einstein&#8217;s proposed general theory of relativity &#8211; dealing with gravitation.</p>
<p>The term unified field theory was coined by Einstein, who was attempting to prove that<br />
electromagnetism and gravity were different manifestations of a single fundamental field thus The Unified Field Theory.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="445" height="364" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/4TX7CcAPF44&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="445" height="364" src="http://www.youtube.com/v/4TX7CcAPF44&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>http://www.youtube.com/user/noonscience</p>
<p>When <a href="http://searchcio-midmarket.techtarget.com/sDefinition/0,,sid183_gci332247,00.html">quantum theory</a> entered the picture, the puzzle became more complex.</p>
<p>The <span style="text-decoration: underline;"><strong>theory of relativity</strong></span> explains the nature and behavior of all phenomena on the macroscopic level (things that are visible to the naked eye);</p>
<p><span style="text-decoration: underline;"><strong>Quantum theory</strong></span> explains the nature and behavior of all phenomena on the microscopic (atomic and subatomic) level.<br />
Perplexingly, however, the two theories are incompatible. Unconvinced that nature would prescribe totally different modes of behavior for phenomena that were simply scaled differently, Einstein sought a theory that would reconcile the two apparently irreconcilable theories that form the basis of modern physics.</p>
<p>Although electromagnetism and the strong and weak nuclear forces have long been explained by a single theory known as the <em>standard model</em>, gravitation does not fit into the equation.</p>
<p><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/HaWhWeBxQRQ&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/HaWhWeBxQRQ&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></p>
<p>&#8211;</p>
<p>Gage</p>
<p>&#8211;</p>
<p><a title="Gravitational interaction" href="http://en.wikipedia.org/wiki/Gravitational_interaction">Gravitational interaction</a>: a long-range attractive interaction that acts on <em>all</em> particles with mass. The postulated exchange particle has been named the <a title="Graviton" href="http://en.wikipedia.org/wiki/Graviton">graviton</a>.</p>
<p><span style="text-decoration: underline;"><strong>Gravitational Anomaly</strong></span></p>
<p>ss<span style="text-decoration: underline;"><strong><br />
</strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://openmoonproject.com/uncategorized/unified-field-theory-and-gravitational-anomaly/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Propulsion Systems</title>
		<link>http://openmoonproject.com/uncategorized/propulsion-systems/</link>
		<comments>http://openmoonproject.com/uncategorized/propulsion-systems/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 17:23:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Propulsion Systems]]></category>

		<guid isPermaLink="false">http://openmoonproject.com/uncategorized/propulsion-systems/</guid>
		<description><![CDATA[Propulsion Systems]]></description>
			<content:encoded><![CDATA[<p>Propulsion Systems</p>
]]></content:encoded>
			<wfw:commentRss>http://openmoonproject.com/uncategorized/propulsion-systems/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://openmoonproject.com/uncategorized/hello-world/</link>
		<comments>http://openmoonproject.com/uncategorized/hello-world/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 02:32:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://openmoonproject.com/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://openmoonproject.com/uncategorized/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
