<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>modify &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/modify/</link>
	<description>Feed of posts on WordPress.com tagged "modify"</description>
	<pubDate>Sat, 17 May 2008 09:51:56 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Working with DDDW Properties]]></title>
<link>http://pbbraindump.wordpress.com/?p=66</link>
<pubDate>Wed, 14 May 2008 02:10:54 +0000</pubDate>
<dc:creator>rick130</dc:creator>
<guid>http://pbbraindump.wordpress.com/?p=66</guid>
<description><![CDATA[In script, how do I get the display value from a dddw?The following example returns the display valu]]></description>
<content:encoded><![CDATA[<h3><a name="_Toc198004826">In script, how do I get the display value from a dddw?</a>The following example returns the display value for the dept_id column for the current row:</h3>
<p>[sourcecode language='vb']String ls_rownum., ls_return</p>
<p>ls_rownum =  String(dw_1.GetRow( ))<br />
ls_return = dw_1.Describe(“Evaluate(‘LookUpDisplay(dept_id)’,” + ls_rownum + “)”)[/sourcecode]</p>
<p class="script" style="padding-left:30px;">Another Example:</p>
<p>[sourcecode language='vb']astr_parms.s_worker_nm = dw_1.Describe(“Evaluate(LookUpDisplay(day2_off_wrkr_id)’, 1”)[/sourcecode]</p>
<p class="script">
<p class="MsoNormal">One more example</p>
<p class="MsoNormal">
<p>[sourcecode language='vb']s_res_nm = dw_res_grp.Describe("Evaluate('LookUpDisplay(res_grp_id) ', 1)" )<br />
ls_pos_nm = dw_pos.Describe("Evaluate('LookUpDisplay(pos_rsrc_id) ', 1)" )<br />
ls_pos_nm = ls_res_nm + " / " + ls_pos_nm[/sourcecode]</p>
<h3><a name="_Toc198004827">In the ItemChanged event, I want to Reject the value of a column with a DDDW and allow the focus to change.<span> </span>But Return 2 does not seem to work.</a></h3>
<p class="MsoNormal">Return 2 is changing the column item back to the original value, but the Display Item does not change.<span> </span>The DataWindow has rejected the value, but it is still displaying the changed value.<span> </span>Here is script which deals with this problem:</p>
<p class="MsoNormal">ItemChanged event:</p>
<p class="script">
<p>[sourcecode language='vb']Integer li_rc</p>
<p>If data<> is_normal_trade_on_shift then<br />
   li_rc = MessageBox(“Warning”, “~”” + istr_emp.trade_off_shift + &<br />
                ‘”shift normally trades with “’ + is_normal_trade_on_shift + ‘” shift “, &<br />
                Information!, OkCancel!, 1)<br />
   If li_rc = 2 then // reject the value, allow focus to change<br />
      This.event Post ue_refresh_display()<br />
      Return 2<br />
   End if<br />
End if</p>
<p>Wf_EmployeeFilter(data)<br />
Wf_ShiftOrLocationChange()</p>
<p>Return 0[/sourcecode]</p>
<p>Ue_RefreshDisplay event:</p>
<p>[sourcecode language='vb']String ls_shift</p>
<p>ls_shift = this.GetItemString(1, “shft_cd”)<br />
This.SetItem(1, “shft_cd”, ls_shift)[/sourcecode]</p>
<p class="script">
<h3><a name="_Toc198004828">How do I dynamically change a dddw properties?</a></h3>
<p class="MsoNormal">Peter Louis wrote an interesting user object for holding a simple datawindow with two colums, one for string, the other for a long.<span> </span>This function sets the dw and its associated dddw for either the String column or the long column.<span> </span>The column not being used is turned invisible.</p>
<p>[sourcecode language='vb']/////////////////////////////////////////////////////////////////////<br />
//<br />
//Event/Function: of_set_datawindow<br />
/<br />
//Access:          Public<br />
//<br />
//Arguments:        al_data_type  {Use the “Long” or “String” column}<br />
//                  as_dw             (The name of the dddw)<br />
//                  as_data_col    (The id  column of the dddw)<br />
//                  as_display_col (The display  column of the dddw)<br />
//                  ab_filter_required<br />
//                  as_err_msg<br />
//<br />
//Returns:          true if successful.<br />
//<br />
//Description:    sets the datawindow.<br />
//<br />
//////////////////////////////////////////////////////////////////////<br />
//<br />
//   Revision History<br />
//<br />
// date      by   Comment<br />
// --------  ---  ----------------------------------------------------<br />
// 08/26/02  pl    Created.<br />
//////////////////////////////////////////////////////////////////////</p>
<p>boolean lb_return = true<br />
string  ls_result, ls_filter<br />
datawindowchild ldwc</p>
<p>if al_data_type = icl_datatype_string then<br />
   is_column = "string"<br />
   is_data_col = as_data_col<br />
   dw_generic.Modify("long.visible = 0" )<br />
elseif al_data_type = icl_datatype_long then<br />
   is_column = "long"<br />
   is_data_col = as_data_col<br />
   dw_generic.Modify("string.visible = 0" )<br />
else<br />
   as_err_msg = "of_set_datawindow: The specified data type is not supported."<br />
   lb_return = false<br />
end if</p>
<p>if lb_return then<br />
   is_display_col = as_display_col<br />
   is_dw_object = as_dw</p>
<p>   dw_generic.InsertRow(0)<br />
   dw_generic.SetItem(1, "enabled", 1)</p>
<p>   // static style<br />
   dw_generic.Modify(is_column + ".dddw.Required=No" )<br />
   dw_generic.Modify(is_column + ".dddw.AllowEdit=No" )<br />
   dw_generic.Modify(is_column + ".dddw.Line=10" )<br />
   dw_generic.Modify(is_column + ".dddw.ShowList=No" )<br />
   dw_generic.Modify(is_column + ".dddw.UseAsBorder=Yes" )<br />
   dw_generic.Modify(is_column + ".dddw.VScrollBar=Yes" )</p>
<p>   ls_result = dw_generic.Modify(is_column + ".dddw.name = '" + is_dw_object + "'" )</p>
<p>   if ls_result <> "" then<br />
      lb_return = false<br />
      as_err_msg = "of_set_datawindow: Failed to set the dddw.name: " + ls_result<br />
   end if<br />
end if</p>
<p>if lb_return then<br />
   ls_result = dw_generic.Modify(is_column + ".dddw.datacolumn = '" + is_data_col + "'" )</p>
<p>   if ls_result <> "" then<br />
      lb_return = false<br />
      as_err_msg = "of_set_datawindow: Failed to set the dddw.datacolumn:  " + ls_result<br />
   end if<br />
end if</p>
<p>if lb_return then<br />
   ls_result = dw_generic.Modify(is_column + ".dddw.displaycolumn  = '" + is_display_col + "'" )</p>
<p>   if ls_result <> "" then<br />
      lb_return = false<br />
      as_err_msg = "of_set_datawindow: Failed to set the dddw.displaycolumn:  " + ls_result<br />
   end if<br />
end if</p>
<p>if lb_return then<br />
   dw_generic.GetChild(is_column, ldwc)</p>
<p>   if not IsValid(ldwc) then<br />
      lb_return = false<br />
      as_err_msg = "of_set_datawindow: Failed to obtain the child datawindow."<br />
   end if<br />
end if</p>
<p>if lb_return then<br />
   if ldwc.SetTransObject(SQLCA) <> 1 then<br />
      lb_return = false<br />
      as_err_msg = "of_set_datawindow: Failed to set the transaction object."<br />
   end if<br />
end if</p>
<p>if lb_return then<br />
   if ldwc.Retrieve() = -1 then<br />
      lb_return = false<br />
      as_err_msg = "of_set_datawindow: Failed to retrieve the child datawindow."<br />
   end if<br />
end if</p>
<p>if lb_return then<br />
   if ab_filter_required then<br />
      ib_filter_required = true</p>
<p>      ls_filter = is_data_col + " <> " + is_data_col</p>
<p>      if ldwc.SetFilter(ls_filter) = -1 then<br />
         lb_return = false<br />
         as_err_msg = "of_set_datawindow: Failed to set filter string."<br />
      end if</p>
<p>      if lb_return then<br />
         if ldwc.Filter() = -1 then<br />
            lb_return = false<br />
            as_err_msg = "of_set_datawindow: Failed to filter the dddw."<br />
         end if<br />
      end if<br />
   end if<br />
end if</p>
<p>return lb_return[/sourcecode]</p>
<p class="script">
<h3><a name="_Toc198004829">Dot Notation<br />
</a></h3>
<p>[sourcecode language='vb']ls_data = dw_bd_job.Object.bd_tp_cd.dddw.lines<br />
MessageBox("", ls_data)</p>
<p>dw_bd_job.Object.bd_tp_cd.dddw.lines = 5[/sourcecode]</p>
<h3><a name="_Toc198004830">What are the DDDW properties?</a></h3>
<ul>
<li>AllowEdit</li>
<li>AutoHScroll</li>
<li>Case</li>
<li>DataColumn</li>
<li>DisplayColumn</li>
<li>HScrollBar</li>
<li>HSplitScroll</li>
<li>Limit</li>
<li>Line</li>
<li>Name</li>
<li>NilIsNull</li>
<li>PercentWidth</li>
<li>Required</li>
<li>ShowList</li>
<li>UseAsBorder</li>
</ul>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Yeti truth or myth gyan dot com revealed. by Rohit Sharma]]></title>
<link>http://gyandotcom.wordpress.com/?p=115</link>
<pubDate>Mon, 12 May 2008 13:57:19 +0000</pubDate>
<dc:creator>gyandotcom by Rohit Sharma</dc:creator>
<guid>http://gyandotcom.wordpress.com/?p=115</guid>
<description><![CDATA[Watch the Video of Yeti

Yeti really exists in himalyas check it out your self.
The Himalaya Mountai]]></description>
<content:encoded><![CDATA[<p>Watch the Video of Yeti</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/2q-GnNZ1jpE'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/2q-GnNZ1jpE&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p><img class="alignnone" src="http://thenetweekly.net/wp-content/uploads/2007/12/yeti_lg.jpg" alt="" />Yeti really exists in himalyas check it out your self.</p>
<p align="left">The Himalaya Mountains, the highest range on Earth, have been referred to as the "roof of the world." If that is so, there is a mystery called the <em>Yeti</em> in our attic. In Tibetan the word means "magical creature" and truly it is a seemingly supernatural enigma in the shape of a hairy, biped creature that resembles a giant ape.</p>
<p align="left">The Himalayas lie on the border between India, Nepal, and Tibet (now part of China). They are remote and forbidding. Large stretches around these rough valleys and peaks are uninhabited. The tallest mountain in the world, Everest, 29,028 feet high, lies half in Nepal, half in China. It is from Nepal, though, that most attempts to climb Everest, and the surrounding mountains, are made.</p>
<p align="left">In Katmandu, the capitol of Nepal, a visitor finds himself immersed in the Yeti legend. He is a commercial money maker for the tourist industry (there's even a Hotel named the "Yak and the Yeti") as well as legend, religion and fantasy to some of the Neplaese people.</p>
<p align="left">The first reliable report of the Yeti appeared in 1925 when a Greek photographer, <strong>N. A. Tombazi</strong>, working as a member of a British geological expedition in the Himalayas, was shown a creature moving in the distance across some lower slopes. The creature was almost a thousand feet away in a narea with an altitude of around 15,000 feet.</p>
<p align="left">"Unquestionably, the figure in outline was exactly like a human being, walking upright and stopping occasionally to uproot or pull at some dwarf rhododendron bushes," said Tombazi, "It showed up dark against the snow and, as far as I could make out wore no clothes."</p>
<p align="left">The creature disappeared before Tombazi could take a photograph and was not seen again. The group was descending, though, and the photographer went out of his way to see the ground were he had spotted the creature. Tombazi found footprints in the snow. <img class="alignnone" src="http://img.dailymail.co.uk/i/pix/2007/12_01/bigfootDM0212_468x679.jpg" alt="yeti" /></p>
<p align="left">"They were similar in shape to those of a man, but only six to seven inches long by four inches wide at the broadest part of the foot. The marks of five distinct toes and the instep were perfectly clear, but the trace of the heel was indistinct..."</p>
<p align="left">There were 15 prints to be found. Each was one and one half to two feet apart. Then Tombazi lost the trail in thick brush. When the locals were asked to name the beast he'd seen they told him it was a "Kanchenjunga demon." Tombazi didn't think he'd seen a demon, but he couldn't figure out what the creature was either. Perhaps he'd seen a wandering Buddhist or Hindu ascetic or hermit. As the years went by though and other Yeti stories surfaced, Tombazi began to wonder if he'd seen one too.</p>
<p align="left">Yeti reports usually come in the form of tracks found, pelts offered, shapes seen at a distance, or rarely, actual face-to-face encounters with the creatures. Face to face encounters never come with researchers looking for the Yeti, but with locals who stumble into the creature during their daily lives.</p>
<p align="left">Some of the best tracks ever seen were found and photographed by British mountaineers <strong>Eric Shipton</strong> and <strong>Micheal Ward</strong> in 1951. They found them on the southwestern slopes of the Menlung Glacier, which lies between Tibet and Nepal, at an altitude of 20,000 feet. Each print was thirteen inches wide and some eighteen inches long. The tracks seemed fresh and Shipton and Ward followed the trail for a mile before it disappeared in hard ice. <img src="http://img.dailymail.co.uk/i/pix/2007/12_01/gatesDM0212_468x702.jpg" border="1" alt="Josh Gates" width="468" height="702" /></p>
<p align="left">Some scientists that viewed the photographs could not identify the tracks as from any known creature. Others, though, felt it was probably the trail of a languar monkey or red bear. They noted the tracks in snow, melted by the sun, can change shape and grow larger. Even so, the bear/monkey theory seems unlikely as both of these animals normally move on all four feet. The tracks were clearly that of a biped.</p>
<p align="left">Shipton's and Ward's reputations argue against a hoax on their part and the remoteness and height of the trail's location argues against them being hoaxed.</p>
<p align="left">Shipton's footprints were not the first or last discovered by climbers among the Himalayas. Even <strong>Sir Edmund Hillary</strong> and his Sherpa guide, Tenzing Norgay, on their record ascent to the top of Mount Everest, in 1953, found giant foot prints on the way up.</p>
<p align="left">One of the more curious reports of a close encounter with a Yeti occurred in 1938. Captain d'Auvergue, the curator of the Victoria Memorial in Calcutta, India, was traveling the Himalayas by himself when he became snowblind. As he neared death from exposure he was rescued by a nine foot tall Yeti that nursed him back to health until d'Auvergue was able to return home by himself.</p>
<p align="left">In many other stories, though, the Yeti hasn't been so benign. One Sherpa girl, who was tending her yaks, described being surprised by a large ape-like creature with black and brown hair. It started to drag her off, but seemed to be startled by her screams and let her go. It then savagely killed two of her yaks. She escaped with her life and the incident was reported to the police, who found footprints.</p>
<p align="left">Several expeditions have been organized to track down the Yeti, but none have found more than footprints and questionable artifacts like scalps and hides. The London <em>Daily Mail</em> sent an expedition in 1954. American oil men Tom Slick and F. Kirk Johnson financed trips in 1957, 58, and 59. Probably the most well-known expedition went in 1960.</p>
<p align="left">Sir Edmund Hillary, the same man that had first climbed Everest in 1953, lead the 1960 trip in association with <strong>Desmond Doig</strong>. The expedition was sponsored by the <em>World Book Encyclopedia</em> and was well outfitted with trip-wire cameras, as well as timelapse and infrared photography. Despite a ten-month stay the group failed to find any convincing evidence of the existence of the Yeti. The artifacts they examined, two skins and a scalp, turned out to belong to two blue bears and a serow goat. <img src="http://www.kumuka.com/venture/june05/images/pic_fact.jpg" alt="" /><img src="http://img.dailymail.co.uk/i/pix/2007/09_04/yeti2L2609_468x322.jpg" alt="" /></p>
<p align="left">At the time Hillary and Doig wrote off the Yeti as legend. Later, though, Doig decided that the expedition hadbeen too big and clumsy. They didn't see a Yeti, he agreed, but nor did they observe such animals like the snow leopard which was known to exist. <img src="http://www.sepiamutiny.com/sepia/images/YetiMandir_new.jpg" alt="" />Yeti Mandir in Himalyas.</p>
<p align="left"><img src="http://www.ufonet.be/RESIMLER/yeti/images/bigfoot10_jpg.jpg" alt="" /><img src="http://www.geocities.com/digitalcosmicworm/bigfoot1.jpg" alt="" /></p>
<p align="left">After spending thirty years in the Himalayas Doig believes that the Yeti is actually exist. the three animals who attack in himalyas are  the first is what the Sherpas call the "dzu teh." Large shaggy animals that often attack cattle. Diog thinks this is probably the Tibetan blue bear. A creature so rare it is known only in the west through a few skins, bones and a skull. The second type, called "thelma," is probably a gibbon (a known type of ape) that Diog thinks may live as far north as Nepal, though it's never been spotted past the Brahmaputra River in India. The third Yeti, "mih teh," is the true abominable snowman of legend. A savage ape, covered with black or red hair that lives at altitudes of up to 20,000 feet.</p>
<p align="left">So far there is no firm evidence to support the existence of the Yeti, but there is no way show that he doesn't exist either. If he indeed lives in the barren, frozen, upper reaches of the Himalayas where few men dare to tread, he may find his refuge safe for a long time to come.</p>
<p align="left"><a href="http://www.youtube.com/watch?v=2q-GnNZ1jpE"></a></p>
<p align="left">For Gyandotcom by Rohit Sharma</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[(Important) Global Warming some true 50 facts. by Rohit Sharma]]></title>
<link>http://gyandotcom.wordpress.com/2008/04/25/important-global-warming-some-true-50-facts-by-rohit-sharma/</link>
<pubDate>Fri, 25 Apr 2008 14:14:58 +0000</pubDate>
<dc:creator>gyandotcom by Rohit Sharma</dc:creator>
<guid>http://gyandotcom.wordpress.com/2008/04/25/important-global-warming-some-true-50-facts-by-rohit-sharma/</guid>
<description><![CDATA[Top 50 Things To Do To Stop Global Warming by Rohit Sharma
Global Warming is a dramatically urgent a]]></description>
<content:encoded><![CDATA[<p><span style="font-size:x-small;"><strong>Top 50 Things To Do To Stop Global Warming by Rohit Sharma</strong></p>
<p>Global Warming is a dramatically urgent and serious problem. We don't need to wait for governments to find a solution for this problem: each individual can bring an important help adopting a more responsible lifestyle: starting from little, everyday things. It's the only reasonable way to save our planet, before it is too late.</p>
<p>Here is a list of 50 simple things that everyone can do in order to fight against and reduce the Global Warming phenomenon: some of these ideas are at no cost, some other require a little effort or investment but can help you save a lot of money, in the middle-long term!</p>
<p><strong>Replace a regular incandescent light bulb with a compact fluorescent light bulb (cfl)</strong></p>
<p>CFLs use 60% less energy than a regular bulb. This simple switch will save about 300 pounds of carbon dioxide a year.</p>
<p><strong>Install a programmable thermostat</strong></p>
<p>Programmable thermostats will automatically lower the heat or air conditioning at night and raise them again in the morning. They can save you Rs4800 a year on your energy bill.</p>
<p>Move your thermostat down 2° in winter and up 2° in summer</p>
<p>Almost half of the energy we use in our homes goes to heating and cooling. You could save about 2,000 pounds of carbon dioxide a year with this simple adjustment.</p>
<p>Clean or replace filters on your furnace and air conditioner</p>
<p>Cleaning a dirty air filter can save 350 pounds of carbon dioxide a year.</p>
<p>Choose energy efficient appliances when making new purchases</p>
<p>Look for the Energy Star label on new appliances to choose the most energy efficient products available.</p>
<p>Do not leave appliances on standby</p>
<p>Use the "on/off" function on the machine itself. A TV set that's switched on for 3 hours a day (the average time Europeans spend watching TV) and in standby mode during the remaining 21 hours uses about 40% of its energy in standby mode.</p>
<p>Wrap your water heater in an insulation blanket</p>
<p>You’ll save 1,000 pounds of carbon dioxide a year with this simple action. You can save another 550 pounds per year by setting the thermostat no higher than 50°C.</p>
<p>Move your fridge and freezer</p>
<p>Placing them next to the cooker or boiler consumes much more energy than if they were standing on their own. For example, if you put them in a hot cellar room where the room temperature is 30-35ºC, energy use is almost double and causes an extra 160kg of CO2 emissions for fridges per year and 320kg for freezers.</p>
<p>Defrost old fridges and freezers regularly</p>
<p>Even better is to replace them with newer models, which all have automatic defrost cycles and are generally up to two times more energy-efficient than their predecessors.</p>
<p>Don't let heat escape from your house over a long period</p>
<p>When airing your house, open the windows for only a few minutes. If you leave a small opening all day long, the energy needed to keep it warm inside during six cold months (10ºC or less outside temperature) would result in almost 1 ton of CO2 emissions.</p>
<p>Replace your old single-glazed windows with double-glazing</p>
<p>This requires a bit of upfront investment, but will halve the energy lost through windows and pay off in the long term. If you go for the best the market has to offer (wooden-framed double-glazed units with low-emission glass and filled with argon gas), you can even save more than 70% of the energy lost.</p>
<p>Get a home energy audit</p>
<p>Many utilities offer free home energy audits to find where your home is poorly insulated or energy inefficient. You can save up to 30% off your energy bill and 1,000 pounds of carbon dioxide a year. Energy Star can help you find an energy specialist.</p>
<p>Cover your pots while cooking</p>
<p>Doing so can save a lot of the energy needed for preparing the dish. Even better are pressure cookers and steamers: they can save around 70%!</p>
<p>Use the washing machine or dishwasher only when they are full</p>
<p>If you need to use it when it is half full, then use the half-load or economy setting. There is also no need to set the temperatures high. Nowadays detergents are so efficient that they get your clothes and dishes clean at low temperatures.</p>
<p>Take a shower instead of a bath</p>
<p>A shower takes up to four times less energy than a bath. To maximise the energy saving, avoid power showers and use low-flow showerheads, which are cheap and provide the same comfort.</p>
<p>Use less hot water</p>
<p>It takes a lot of energy to heat water. You can use less hot water by installing a low flow showerhead (350 pounds of carbon dioxide saved per year) and washing your clothes in cold or warm water (500 pounds saved per year) instead of hot.</p>
<p>Use a clothesline instead of a dryer whenever possible</p>
<p>You can save 700 pounds of carbon dioxide when you air dry your clothes for 6 months out of the year.</p>
<p>Insulate and weatherize your home</p>
<p>Properly insulating your walls and ceilings can save 25% of your home heating bill and 2,000 pounds of carbon dioxide a year. Caulking and weather-stripping can save another 1,700 pounds per year. Energy Efficient has more information on how to better insulate your home.</p>
<p>Be sure you’re recycling at home</p>
<p>You can save 2,400 pounds of carbon dioxide a year by recycling half of the waste your household generates.</p>
<p>Recycle your organic waste</p>
<p>Around 3% of the greenhouse gas emissions through the methane is released by decomposing bio-degradable waste. By recycling organic waste or composting it if you have a garden, you can help eliminate this problem! Just make sure that you compost it properly, so it decomposes with sufficient oxygen, otherwise your compost will cause methane emissions and smell foul.</p>
<p>Buy intelligently</p>
<p>One bottle of 1.5l requires less energy and produces less waste than three bottles of 0.5l. As well, buy recycled paper products: it takes less 70 to 90% less energy to make recycled paper and it prevents the loss of forests worldwide.</p>
<p>Choose products that come with little packaging and buy refills when you can</p>
<p>You will also cut down on waste production and energy use... another help against global warming.</p>
<p>Reuse your shopping bag</p>
<p>When shopping, it saves energy and waste to use a reusable bag instead of accepting a disposable one in each shop. Waste not only discharges CO2 and methane into the atmosphere, it can also pollute the air, groundwater and soil.</p>
<p>Reduce waste</p>
<p>Most products we buy cause greenhouse gas emissions in one or another way, e.g. during production and distribution. By taking your lunch in a reusable lunch box instead of a disposable one, you save the energy needed to produce new lunch boxes.</p>
<p>Plant a tree</p>
<p>A single tree will absorb one ton of carbon dioxide over its lifetime. Shade provided by trees can also reduce your air conditioning bill by 10 to 15%. The Arbor Day Foundation has information on planting and provides trees you can plant with membership.</p>
<p>Switch to green power</p>
<p>In many areas, you can switch to energy generated by clean, renewable sources such as wind and solar. In some of these, you can even get refunds by government if you choose to switch to a clean energy producer, and you can also earn money by selling the energy you produce and don't use for yourself.</p>
<p>Buy locally grown and produced foods</p>
<p>The average meal in the United States travels 1,200 miles from the farm to your plate. Buying locally will save fuel and keep money in your community.</p>
<p>Buy fresh foods instead of frozen</p>
<p>Frozen food uses 10 times more energy to produce.</p>
<p>Seek out and support local farmers markets</p>
<p>They reduce the amount of energy required to grow and transport the food to you by one fifth. Seek farmer’s markets in your area, and go for them.</p>
<p>Buy organic foods as much as possible</p>
<p>Organic soils capture and store carbon dioxide at much higher levels than soils from conventional farms. If we grew all of our corn and soybeans organically, we’d remove 580 billion pounds of carbon dioxide from the atmosphere!</p>
<p>Eat less meat</p>
<p>Methane is the second most significant greenhouse gas and cows are one of the greatest methane emitters. Their grassy diet and multiple stomachs cause them to produce methane, which they exhale with every breath.</p>
<p>Reduce the number of miles you drive by walking, biking, carpooling or taking mass transit wherever possible</p>
<p>Avoiding just 10 miles of driving every week would eliminate about 500 pounds of carbon dioxide emissions a year! Look for transit options in your area.</p>
<p>Start a carpool with your coworkers or classmates</p>
<p>Sharing a ride with someone just 2 days a week will reduce your carbon dioxide emissions by 1,590 pounds a year. eRideShare.com runs a free service connecting north american commuters and travelers.</p>
<p>Don't leave an empty roof rack on your car</p>
<p>This can increase fuel consumption and CO2 emissions by up to 10% due to wind resistance and the extra weight - removing it is a better idea.</p>
<p>Keep your car tuned up</p>
<p>Regular maintenance helps improve fuel efficiency and reduces emissions. When just 1% of car owners properly maintain their cars, nearly a billion pounds of carbon dioxide are kept out of the atmosphere.</p>
<p>Drive carefully and do not waste fuel</p>
<p>You can reduce CO2 emissions by readjusting your driving style. Choose proper gears, do not abuse the gas pedal, use the engine brake instead of the pedal brake when possible and turn off your engine when your vehicle is motionless for more than one minute. By readjusting your driving style you can save money on both fuel and car mantainance.</p>
<p>Check your tires weekly to make sure they’re properly inflated</p>
<p>Proper tire inflation can improve gas mileage by more than 3%. Since every gallon of gasoline saved keeps 20 pounds of carbon dioxide out of the atmosphere, every increase in fuel efficiency makes a difference!</p>
<p>When it is time for a new car, choose a more fuel efficient vehicle</p>
<p>You can save 3,000 pounds of carbon dioxide every year if your new car gets only 3 miles per gallon more than your current one. You can get up to 60 miles per gallon with a hybrid! You can find information on fuel efficiency on FuelEconomy and on GreenCars websites.</p>
<p>Try car sharing</p>
<p>Need a car but don’t want to buy one? Community car sharing organizations provide access to a car and your membership fee covers gas, maintenance and insurance. Many companies – such as Flexcar - offer low emission or hybrid cars too! Also, see ZipCar.</p>
<p>Try telecommuting from home</p>
<p>Telecommuting can help you drastically reduce the number of miles you drive every week. For more information, check out the Telework Coalition.</p>
<p>Fly less</p>
<p>Air travel produces large amounts of emissions so reducing how much you fly by even one or two trips a year can reduce your emissions significantly. You can also offset your air travel carbon emissions by investingin renewable energy projects.</p>
<p>Encourage your school or business to reduce emissions</p>
<p>You can extend your positive influence on global warming well beyond your home by actively encouraging other to take action.</p>
<p>Join the virtual march</p>
<p>The Stop Global Warming Virtual March is a non-political effort to bring people concerned about global warming together in one place. Add your voice to the hundreds of thousands of other people urging action on this issue.</p>
<p>Encourage the switch to renewable energy</p>
<p>Successfully combating global warming requires a national transition to renewable energy sources such as solar, wind and biomass. These technologies are ready to be deployed more widely but there are regulatory barriers impeding them. U.S. citizens, take action to break down those barriers with Vote Solar.</p>
<p>Protect and conserve forest worldwide</p>
<p>Forests play a critial role in global warming: they store carbon. When forests are burned or cut down, their stored carbon is release into the atmosphere - deforestation now accounts for about 20% of carbon dioxide emissions each year. Conservation International has more information on saving forests from global warming.</p>
<p>Consider the impact of your investments</p>
<p>If you invest your money, you should consider the impact that your investments and savings will have on global warming.</p>
<p>Make your city cool</p>
<p>Cities and states around the country have taken action to stop global warming by passing innovative transportation and energy saving legislation. If you're in the U.S., join the cool cities list.</p>
<p>Tell Congress to act</p>
<p>The McCain Lieberman Climate Stewardship and Innovation Act would set a firm limit on carbon dioxide emissions and then use free market incentives to lower costs, promote efficiency and spur innovation. Tell your representative to support it.</p>
<p>Make sure your voice is heard!</p>
<p>Americans must have a stronger commitment from their government in order to stop global warming and implement solutions and such a commitment won’t come without a dramatic increase in citizen lobbying for new laws with teeth.</p>
<p></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Jaycar Smart Fuel Mixture Display for Fuel Injected Cars ]]></title>
<link>http://joe282828.wordpress.com/?p=72</link>
<pubDate>Fri, 18 Apr 2008 04:43:31 +0000</pubDate>
<dc:creator>joe282828</dc:creator>
<guid>http://joe282828.wordpress.com/?p=72</guid>
<description><![CDATA[Good morning all,
 
Now I know that two weeks ago I said there would be a shiny new intake ready fo]]></description>
<content:encoded><![CDATA[<p><a href="http://joe282828.wordpress.com/files/2008/04/p3210091.jpg"></a>Good morning all,</p>
<p> </p>
<p>Now I know that two weeks ago I said there would be a shiny new intake ready for all of you to see this week, but the adaptor plate still hasn't arrived so we had to jump to plan B. Plan B, as you may have figured out for the title, was to install Jaycar's Smart Fuel Mixture Display for Fuel Injected Cars. Basically a big complicated way of saying Air-Fuel Ratio Gauge.</p>
<p> </p>
<p>This particular gauge is not only a DIY install but a whole DIY expierence, you physically have to assemble the circuit board yourself (small lie, you can buy them pre-made but they are over double the price and really isn't all that hard to make).  The kit is bought from Jaycar for just under $30 and as long as you have minimal soldering skills and can read instructions, even you can assemble it. No it isn't as accurate as the brand name gauges, it isn't as pretty and it doesn't have some of the other fancy features, but it does cost 10% of the price and it still does the same basic job. The Jaycar gauge has an array of 10 LEDs, which run from yellow (rich/too much fuel) to green (Air/Fuel ratio of roughly 14.7:1) to red (lean/not enough fuel).</p>
<p> </p>
<p>The gauge reads from the stock oxygen sensor in the exhaust. Obviously enough, after gasses are expelled from the engine they travel through the exhaust and as they run past the oxygen sensor, it reads the gasses and knows how much air and how much fuel was used. The computer that controlls the car (the ECU) can then adjust the injectors to vary the fuel levels.</p>
<p>Below is a quote from AutoSpeed's atricle on Air/Fuel Ration Gauges that does a much better job of explaining why monitoring your air/fuel ratios is a useful thing way better than I ever could.</p>
<blockquote><p>The main reason for installing an in-car air-fuel ratio gauge is to be alerted if the engine is running lean at high load. In these conditions, the chance of detonation increases, exhaust gas temperature shoots through the roof and you can expect broken valves, damaged spark plugs, damaged pistons, blown head gaskets, melted cat converters – all sorts of nasties.</p>
<p style="clear:both;"> </p>
<p>On the other hand, an overly rich mixture can also cause damage. In extreme cases, this can cause accelerated bore wear, spark plugs will get covered in carbon and you can expect poor fuel consumption.</p></blockquote>
<blockquote><p>Excessively lean or rich mixtures can also cause drivability problems.</p></blockquote>
<p>See, knowing = good</p>
<p> </p>
<p>So, the first stage is to assemble the kit and like I said earlier, it really isn't that hard. If you've ever used a soldering iron before, you can probably manage this. I won't go into the details on how assemble it, just follow the instructions and you should be right. The only difference I'd suggest is not directly mounting the LEDs to the board. Instead get some extra wires to extend the LEDs, that way you can put them where ever you like and board where ever it fits. The only catch is that each wire must retain the same order, otherwise the LEDs won't work. I used a strip of rainbow wire simply because it makes keeping the order a whole load easier. </p>
<p> </p>
<p>The gauge needs four inputs; 12v+ power, a ground, the signal from the oxygen sensor and the load sensor. The power and ground should both be fairly self explainatory and we've already explained what the oxygen sensor does, but what about the load sensor?</p>
<p>Jaycar currently produces two Air/Fuel ratio gauges, the basic model and the smart one. The basic model still has the same 10 LEDs but the Smart version also includes an auto-dimming feature for night time driving and a lean out alarm. The alarm sounds when the car is running lean under full load, which can cause a whole world of problems. This where the engine load sensor comes in.</p>
<p> </p>
<p>The power and ground wires were both tapped into at the cigeratte lighter, but there are so many options for these two you can get them from almost anywhere. The two sensors were both taken from the ECU itself. Find a wiring diagram/ECU pinout for your car and then back probe the ECU with a multimeter to make sure you have the correct wires. Once you're sure you have the right wires, strip off a small piece of the shielding and tap into the signal here. You can get the signal right from the sensor itself but I thought it would be easier to get them both from the ECU.</p>
<p> </p>
<p>Now comes time for testing and adjusting. I'm sure you could do this by yourself but seriously, I had a friend to help me and it still sucked, GET SOMEONE TO HELP YOU. Connect everything up but make sure the board is within reach, grab a screwdriver and go for a drive. Again, I'm not going to go into detail here, just follow the instructions. It should only take you a few minutes of driving and adjusting after the car has warmed up.</p>
<p> </p>
<p>Once it's all adjusted and working correctly, you can put it all back together. You can put the LED's almost anywhere you want but I chose to drill 10 individual holes in the plastic trim piece just above the steering collumn and mount them there. That way it's nice and visible but not incredibly in your face and there was room just under the steering collum to mount the board.</p>
<p> </p>
<p>And there we have it folks, one Air/Fuel Ratio gauge, installed and working for under $30. While technically it took me two days (as you can see in the photos below) I didn't start until about 4pm on the first day. If you started nice and early you should be able to knock the whole thing over in a day.</p>
<p> </p>
<p>Have fun kiddies, Joe</p>
<p> </p>
<p>Side note: I also threw in a small switch on the power wire. While the gauge will spend the vast majority of the time on, I thought having the option of turning it off would be a useful thing. I bought a simple backlit button switch from Jaycar because it suited where I wanted to put it, but any kind of switch would be fine.</p>
<p> </p>
<p> </p>
[gallery]
]]></content:encoded>
</item>
<item>
<title><![CDATA[हिन्दी का मान या अपमान।]]></title>
<link>http://gyandotcom.wordpress.com/?p=109</link>
<pubDate>Thu, 17 Apr 2008 14:53:47 +0000</pubDate>
<dc:creator>gyandotcom by Rohit Sharma</dc:creator>
<guid>http://gyandotcom.wordpress.com/?p=109</guid>
<description><![CDATA[हिन्दी का मान या अपमान।
गुवाहाटी मे बा]]></description>
<content:encoded><![CDATA[<p><strong><span style="font-size:large;">हिन्दी का मान या अपमान।</p>
<p></span><span style="font-size:large;">गुवाहाटी मे बालाजी का बहुत ही भ्व्य मन्दिर हे।</p>
<p>जहाँ रोज़ कई लोग दर्शन करने आते हे। ये भ्व्य मन्दिर कई वर्ष</p>
<p> पुराना हें। ओर जितना पुराना ये भ्व्य मन्दिर हें। उतना ही</p>
<p>पुराना ये नोटिस बोर्ड भी हें। आप स्वंय देखे। लेकिन मन्दिर</p>
<p>प्रशासन को इस की कोइ फ़िक्र नही।</p>
<p>Balaji Temple Guwahati<a href="http://gyandotcom.files.wordpress.com/2008/04/p4120044.jpg"><img class="alignnone size-medium wp-image-113" src="http://gyandotcom.wordpress.com/files/2008/04/p4120044.jpg" alt="" width="225" height="300" /></a></p>
<p>Main Enterance gate<a href="http://gyandotcom.files.wordpress.com/2008/04/p4120069.jpg"><img class="alignnone size-medium wp-image-112" src="http://gyandotcom.wordpress.com/files/2008/04/p4120069.jpg" alt="" width="225" height="300" /></a><a href="http://gyandotcom.files.wordpress.com/2008/04/p4120068.jpg"><img class="alignnone size-medium wp-image-111" src="http://gyandotcom.wordpress.com/files/2008/04/p4120068.jpg?w=400" alt="" width="400" height="300" /></a>Entrnce gate Hoarding</p>
<p><a href="http://gyandotcom.files.wordpress.com/2008/04/p4120022.jpg"><img class="alignnone size-full wp-image-110" src="http://gyandotcom.wordpress.com/files/2008/04/p4120022.jpg" alt="" /></a></p>
<p><strong><font size="5">Zoom of the mistake</p>
<p>पहली प्राथमिकता अन्ग्रेजी</p>
<p>को दी गई। क्योन्कि अब हम अब अन्ग्रेजी प्रधान देश के वासी</p>
<p>हें शायद इसिलिये। दुसरी प्राथमिकता असमीया भाषा की ।</p>
<p>लेकिन देश की राष्ट्र भाषा का इस तरह</p>
<p><span style="font-size:large;">अपमान</span><span style="font-size:large;font-family:Mangal;">)</span></p>
<p><span style="font-size:large;">आप स्वंय ही देखे ओर हमे बताये। क्या ये अनुचित हें।</p>
<p>by Rohit Sharma</p>
<p> </p>
<p></span><span style="font-size:large;font-family:Mangal;"> </p>
<p></span></p>
<p></font><span style="font-size:large;font-family:Mangal;">(</span><span style="font-size:large;">मान</span><span style="font-size:large;font-family:Mangal;">-</span><span style="font-size:large;">स्म्मान या </span></strong></span></strong></p>
<p><span style="font-size:large;font-family:Mangal;">(</span><span style="font-size:large;">मान</span><span style="font-size:large;font-family:Mangal;">-</span><span style="font-size:large;">स्म्मान या </span></p>
<p><span style="font-size:large;">अपमान</span><span style="font-size:large;font-family:Mangal;">)</span></p>
<p><span style="font-size:large;">आप स्वंय ही देखे ओर हमे बताये। क्या ये अनुचित हें।</p>
<p>by Rohit Sharma</p>
<p> </p>
<p></span><span style="font-size:large;font-family:Mangal;"> </p>
<p></span></p>
<p> </p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Devastation Predictions year 2012,  Article by Rohit Sharma]]></title>
<link>http://gyandotcom.wordpress.com/?p=108</link>
<pubDate>Mon, 14 Apr 2008 12:05:27 +0000</pubDate>
<dc:creator>gyandotcom by Rohit Sharma</dc:creator>
<guid>http://gyandotcom.wordpress.com/?p=108</guid>
<description><![CDATA[ 
Devastation Predictions


­Nostrad­amus
Michel de Nostredame, also known as Nostradamus, was a ]]></description>
<content:encoded><![CDATA[<p><span style="font-family:Arial;"> </span></p>
<p><span style="font-size:xx-small;color:#000099;"><span style="font-size:medium;"><span style="color:#000090;">Devastation Predictions</span></span><br />
</span></p>
<div style="padding-left:10px;float:right;width:150px;text-align:center;"><img class="article" src="http://static.howstuffworks.com/gif/nostradamus-intro.jpg" alt="nostradamus" width="150" height="228" /><br />
­<span class="caption">Nostrad­amus</span></div>
<p><span style="font-size:x-small;">Michel de Nostredame, also known as Nostradamus, was a 16th-century physician who also had a penchant for writing. He penned a series of prophecies, focusing prima­rily on wars, disasters and destruction. Using metaphors and mystery, Nostradamus wrote these prophecies as <strong>quatrains</strong>, or four-line verses. His followers say he predicted the rise of Hitler, the Apollo moon landing and the attacks on Sept. 11, 2001. His critics say his writings are nothing more than ancient horoscopes, written to tell of events that undoubtedly will occur again and again. To find out more about Nostradamus and his prophecies, read our article on</span></p>
<p>Will the world really end in 2012?</p>
<p><img class="article" src="http://static.howstuffworks.com/gif/world-end-in-2012-1.jpg" alt="Seattle sinks" width="400" height="265" /></p>
<p>There have been countless theories throughout time about how the world will end and how -- or if -- life will cease to exist. At the turn of the 21st century, theory claimed that the y2kbug was only a small part of the impending devastation: The new century would bring about total destruction, and no one would survive. Others believe that earth is slated for another ice age, which will kill off all living things. And according to astronomers, billions of years from now, the will become a red giant, expanding to a size larger than the Earth's orbit and consuming the Earth in the process. Even if the planet somehow survives, the sun will eventually shrink, becoming a white dwarf and gradually cooling off until it can no longer warm anything in the solar system.</p>
<p align="center">An apocalyptic view of Seattle sinking into the Puget Sound -- will something like this happen in 2012?</p>
<p>In 2006, Mel Gibson released a movie about the Mayan civilization. "Apocalypto" follows one man's journey from slavery back to his family. During the course of the movie, a young woman prophesizes that a man will bring an end to the Mayans and wipe out their civilization. In the real world, some theorists don't believe a man will be the end of the Mayans -- instead, a celestial event will be the cause. The Mayan calendar even gives us a date for this theoretical event: Dec. 21, 2012.</p>
<p>How did the Mayans develop a calendar that could predict the end of the world? How does the mayan calanderwork? Do the Mayans really believe we have only four years left on Earth, and if so, why is Dec. 21, 2012, doomsday? the end is near.</p>
<p> </p>
<p>for more read my post the end of days 2012</p>
<p>The Mayans have a complex system of calendars, and each calendar has a different purpose. There are thought to be 20 calendars in use, though only 15 have been revealed to the public. The Mayans keep the other five a secret within their culture. Some of the more commonly known mayan calander are:</p>
<p>The Tzolk'in Calendar - Used primarily in crop rotation, this calendar allows one 260-day period to ready the land and one 260-day period to grow and harvest the corn.</p>
<p>The Haab Calendar - This calendar lasts 360 days, with a 5-day period called the wayeb. Close to the Gregorian calendar we use today, this calendar follows the cycle of the Sun</p>
<p>The Calendar Round - The Calendar Round gave the Mayans a way to record history in longer increments. It's a combination of the Tzolk'in and Haab calendars and goes through about 52 years.</p>
<p>Fifty-two years was longer than the Mayans' average life span at the time of the Calendar Round's creation. However, Mayan historians wanted to create a calendar that could be used to record history for centuries. This led to the <strong>Long Count</strong> calendar. The Long Count incorporates an era called the <strong>Great Cycle</strong>, which lasts approximately 5,125.36 years The idea that the world is on its way to an end comes from the Long Count.</p>
<p>Sometime during the e Mayans stopped using the Long Count -- at least as far as the Spanish were concerned. A Mayan historian began recording events on both the Long Count and Gregorian calendars. Scholars then compared the dates on both calendars and confirmed the beginning of the current Great Cycle as August 13, 3114 B.C., making the end of the fourth Great Cycle -- you guessed it -- December 21, 2012. Theorists believe this is the day that the world will end, and all living things on earth will die.</p>
<p><img class="article" src="http://static.howstuffworks.com/gif/world-end-in-2012-2.jpg" alt="Iced Earth" width="400" height="400" /></p>
<p align="center">The end of the world may resemble another ice age.</p>
<p>However, the Mayans themselves don't actually believe that the world is going to end at the end of this cycle. In fact, they believe that it's a time of great celebration and luck when the planet lasts through a full Great Cycle. After all, we've made it safely through three other Great Cycles, and the world is still turning.</p>
<p>What makes this cycle so different, some believe, is that it ends on a winter solstice. On this particular winter solstice, the sun will align with the center of the milkyway. This particular event happens only every 26,000 years or so But is this celestial occurrence really going to end the world and kill us all? Probably not. Many scholars see this theory as extremists trying to cash in on the fears of others .So what will happen on Dec. 21, 2012? It's likely that the day will pass with no major event happening at all. People may not even realize it's the projected doomsday, although that's unlikely considering how much press it's likely to garner. We'll just have to wait and see what happens -- and hopefully i will update this article on Dec. 22, 2012.</p>
<p> </p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The End of the World December 12-12-2012]]></title>
<link>http://gyandotcom.wordpress.com/?p=94</link>
<pubDate>Mon, 07 Apr 2008 06:19:25 +0000</pubDate>
<dc:creator>gyandotcom by Rohit Sharma</dc:creator>
<guid>http://gyandotcom.wordpress.com/?p=94</guid>
<description><![CDATA[


December 12-12-2012
End of Days


By Rohit Sharma


Over 200 predictions and counting!
 
 


Ye]]></description>
<content:encoded><![CDATA[<div><strong></strong></div>
<div><strong><span style="text-decoration:underline;"></span></strong></div>
<p><strong><span style="text-decoration:underline;"><span style="font-size:x-large;"></p>
<p align="center">December 12-12-2012</p>
<p align="center">End of Days</p>
<div></div>
<p></span></span><span style="font-size:medium;"></p>
<p align="center">By Rohit Sharma</p>
<div></div>
<p><span style="font-size:medium;"></p>
<p align="center">Over 200 predictions and counting!</p>
<p> </p>
<p> </p>
<p></span></span></p>
<p align="center"><span style="font-size:x-large;color:#ff0000;font-family:Times;"><br />
</span><span style="font-size:medium;font-family:Times;">Yes the end is coming, but all human predictions are wrong!</span></p>
<p> </p>
<p> </p>
<p></strong></p>
<p> </p>
<p>Mathew 24:35-36 "Heaven and earth will pass away, but My words shall not pass away. <strong><span style="color:#ff0000;">But of that day and hour no one knows</span></strong>, not even the angels of heaven, nor the Son, but the Father alone." <span style="color:#ff0000;">Jesus Christ</span>.</p>
<div><span style="color:#0000ff;">An untold number of people have tried to predict the Lord's return by using elaborate time tables. Most date setters do not realize mankind has not kept an unwavering record of time. Anyone wanting to chart for example 100 BC to 2000 AD would have contend with the fact 46 BC was 445 days long, there was no year 0 BC, and in 1582 we switched from Julian Years (360 days) to Gregorian (365 days). Because most prognosticators are not aware of all these errors, from the get go their math is already off by several years.</span></div>
<div></div>
<p><span style="color:#0000ff;"></p>
<div><strong></strong></div>
<div><strong></strong></div>
<p></span><strong><span style="font-size:medium;"></p>
<p align="center"> </p>
<p align="center">Will the world end in Dec 12-12-2012? No, it won’t.<br />
Will there be a major cataclysm in 2012? Quite possibly.</p>
<p align="center">This page examines some of the significances behind the date of December 12, 2012.</p>
<p align="center">We are currently in a period of eleven years all of which have a day with the last two digits of the year repeated three times in mm/dd/yy form (or dd/mm/yy or yy/mm/dd). So May 5, 2005 was 05/05/05; June 6, 2006 will be 06/06/06; July 7, 2007 will be 07/07/07, etc. So what's going to happen on December 12, 2012?</p>
<p align="justify">December 12, 2012 is 6 years, 6 months, 6 days from June 6, 2006, or 6/6/6 (or 2381 days)</p>
<p align="justify">December 12, 2012 is 7 years from December 12, 2005 (or 2557 days). Are we now in the Seven Year Tribulation Period?</p>
<p align="justify">December 12, 2012 is 11 years, 3 months, 1 day from September 11, 2001 (or 4110 days)</p>
<p align="justify"> </p>
<div><strong></strong></div>
<div><strong></strong></div>
<p><strong></p>
<p align="center">Why 2012?</p>
<p align="justify">THE HOW AND WHY OF THE MAYAN END DATE IN DEC 12-12-2012 A.D</p>
<p>.</p>
<div><strong></strong></div>
<div><strong></strong></div>
<p></strong><strong></p>
<p align="justify">Midnight ¾ April 5 , 2008.</p>
<p align="justify">Monday, April 07, 2008 The Logic behind.</p>
<p> </p>
<p> </p>
<p></strong></span></strong></p>
<p align="justify">Why did the ancient Mayan or pre-Maya choose December 21st, 2012 A.D., as the end of their Long Count calendar? This article will cover some recent research. Scholars have known for decades that the 13-baktun cycle of the Mayan "Long Count" system of timekeeping was set to end precisely on a winter solstice, and that this system was put in place some 2300 years ago. This amazing fact - that ancient Mesoamerica- can sky watchers were able to pinpoint a winter solstice far off into the future - has not been dealt with by Mayanists. And why did they choose the year 2012? One immediately gets the impression that there is a very strange mystery to be confronted here. I will be building upon a clue to this mystery reported by epigrapher Linda Schele in Maya Cosmos (1994). Visionary Perspectives and Calendar Studies (Borderlands Science and Research Foundation, 1994).</p>
<div><strong></strong></div>
<div><strong></strong></div>
<p><strong></p>
<p align="justify">The Mayan Long Count</p>
<p> </p>
<p> </p>
<p></strong></p>
<p align="justify">Just some basics to get us started. The Maya were adept sky watchers. Their Classic Period is thought to have lasted from 200 A.D. to 900 A.D., but recent archeological findings are pushing back the dawn of Mayan civilization in Mesoamerica. Large ruin sites indicating high culture with distinctly Mayan antecedents are being found in the jungles of Guatemala dating back to before the Common Era. And even before this, the Olmec civilization flourished and developed the sacred count of 260 days known as the tzolkin. The early Maya adopted two different time keeping systems, the "Short Count" and the Long Count. The Short Count derives from combining the tzolkin cycle with the solar year and the Venus cycle of 584 days. In this way, "short" periods of 13, 52 and 104 years are generated. Unfortunately, we won't have occasion to dwell on the properties of the so-called Short Count system here. The Long Count system is somewhat more abstract, yet is also related to certain astronomical cycles. It is based upon nested cycles of days multiplied at each level by that key Mayan number, twenty:</p>
<p> </p>
<div><strong></strong></div>
<div><strong></strong></div>
<p><strong><span style="font-size:medium;font-family:Courier New;"></p>
<p align="justify">Number of Days / Term</p>
<p align="justify">1 / Kin (day)</p>
<p align="justify">20 / Uinal</p>
<p align="justify">360 / Tun</p>
<p align="justify">7200 / Katun</p>
<p align="justify">144000 / Baktun</p>
<div></div>
<p></span></strong><span style="font-size:medium;"></p>
<p align="justify">Notice that the only exception to multiplying by twenty is at the tun level, where the uinal period is instead multiplied by 18 to make the 360-day tun. The Maya employed this counting system to track an unbroken sequence of days from the time it was inaugurated. The Mayan scholar Munro Edmonson believes that the Long Count was put in place around 355 B.C. This may be so, but the oldest Long Count date as yet found corresponds to 32 B.C. We find Long Count dates in the archeological record beginning with the baktun place value and separated by dots. For example: 6.19.19.0.0 equals 6 baktuns, 19 katuns, 19 tuns, 0 uinals and 0 days. Each baktun has 144000 days, each katun has 7200 days, and so on. If we add up all the values we find that 6.19.19.0.0 indicates a total of 1007640 days have elapsed since the Zero Date of 0.0.0.0.0. The much discussed 13-baktun cycle is completed 1872000 days (13 baktuns) after 0.0.0.0.0. This period of time is the so called Mayan "Great Cycle" of the Long Count and equals 5125.36 years.</p>
<p align="justify">But how are we to relate this to a time frame we can understand? How does this Long Count relate to our Gregorian calendar? This problem of correlating Mayan time with "western" time has occupied Mayan scholars since the beginning. The standard question to answer became: what does 0.0.0.0.0 (the Long Count "beginning" point) equal in the Gregorian calendar? When this question is answered, archeological inscriptions can be put into their proper historical context and the end date of the 13-baktun cycle can be calculated. After years of considering data from varied fields such as astronomy, ethnography, archeology and iconography, J. Eric S. Thompson determined that 0.0.0.0.0 corresponded to the Julian date 584283, which equals August 11th, 3114 B.C. in our Gregorian calendar. This means that the end date of 13.0.0.0.0, some 5125 years later, is December 21st, 2012 A.D.1</p>
<p align="justify">The relationship between the Long Count and Short Count has always been internally consistent (both were tracked alongside each other in an unbroken sequence since their conception). Now it is very interesting to note that an aspect of the "Short Count", namely, the sacred tzolkin count of 260 days, is still being followed in the highlands of Guatemala. As the Mayan scholar Munro Edmonson shows in The Book of the Year, this last surviving flicker of a calendar tradition some 3000 years old supports the Thompson correlation of 584283. Edmonson also states that the Long Count was begun by the Maya or pre-Maya around 355 B.C., but there is reason to believe that the Long Count system was being perfected for at least 200 years prior to that date.</p>
<p align="justify">The point of interest for these early astronomers seems to have been the projected end date in 2012 A.D., rather than the beginning date in 3114 B.C. Having determined the end date in 2012 (for reasons we will come to shortly), and calling it 13.0.0.0.0, they thus proclaimed themselves to be living in the 6th baktun of the Great Cycle. The later Maya certainly attributed much mythological significance to the beginning date, relating it to the birth of their deities, but it now seems certain that the placement of the Long Count hinges upon its calculated end point. Why did early Mesoamerican sky watchers pick a date some 2300 years into the future and, in fact, how did they pinpoint an accurate winter solstice? With all these considerations one begins to suspect that, for some reason, the ancient New World astronomers were tracking precession.</p>
<div><strong></strong></div>
<div><strong></strong></div>
<p><strong></p>
<p align="justify">The Precession</p>
<p> </p>
<p> </p>
<p></strong></p>
<p align="justify">The precession of the equinoxes, also known as the Platonic Year, is caused by the slow wobbling of the earth's polar axis. Right now this axis roughly points to Polaris, the "Pole Star," but these changes slowly over long periods of time. The earth's wobble causes the position of the seasonal quarters to slowly process against the background of stars. For example, right now, the winter solstice position is in the constellation of Sagittarius. But 2000 years ago it was in Capricorn. Since then, it has processed backward almost one full sign. It is generally thought that the Greek astronomer Hipparchus was the first to discover precession around 128 B.C. Yet scholarship indicates that more ancient Old World cultures such as the Egyptians and Babylonians also knew about the precession.</p>
<p align="justify">I have concluded that even cultures with simple horizon astronomy and oral records passed down for a hundred years or so, would notice the slow shifting of the heavens. For example, imagine that you lived in an environment suited for accurately demarcated horizon astronomy. Even if this wasn't the case, you might erect monoliths to sight the horizon position of, most likely, the dawning winter solstice sun. This position in relation to background stars could be accurately preserved in oral verse or wisdom teachings, to be passed down for centuries. Since precession will change this position at the rate of 1 degree every 72 years, within the relatively short time of 100 years or so, a noticeable change will have occurred. The point of this is simple. To early cultures attuned to the subtle movements of the sky, precession would not have been hard to notice.</p>
<p>The Maya are not generally credited with knowing about the precession of the equinoxes. But considering everything else we know about the amazing sophistication of Mesoamerican astronomy, can we realistically continue to deny them this? Many of the as yet undeciphered hieroglyphs may ultimately describe processional myths. Visionary Perspectives and Calendar Studies, the Long Count is perfectly suited for predicting future seasonal quarters, indefinitely, and precession is automatically accounted for. Some of the most incredible aspects of Mayan cosmo-conception are just now being discovered. As was the case with the state of Egyptology in the 1870's, we still have a lot to learn. In addition, Mayanists like Gordon Brothers ton (The Book of the Fourth World) considers processional knowledge among Mesoamerican cultures to be more than likely.</p>
<div><span style="font-size:x-small;font-family:Arial;"> </span></div>
<div></div>
<p></span><span style="font-size:x-small;font-family:Arial;"></p>
<div><strong></strong></div>
<div><strong></strong></div>
<p></span><strong><span style="font-size:medium;"></p>
<p align="justify"> </p>
<p align="justify"> <a href="http://gyandotcom.files.wordpress.com/2008/04/diag11.gif"><img class="alignnone size-full wp-image-96" src="http://gyandotcom.wordpress.com/files/2008/04/diag11.gif" alt="" width="432" height="642" /></a></p>
<div><strong></strong></div>
<p><strong><span style="font-size:medium;"></p>
<p align="justify"> </p>
<p align="justify">The Sacred Tree</p>
<p> </p>
<p> </p>
<p></span></strong></span></strong></p>
<p> </p>
<div></div>
<p><span style="font-size:medium;"></p>
<p align="justify">We are still trying to answer these questions: What is so important about the winter solstice of 2012 and, exactly how were calculations made so accurately, considering that precession should make them exceedingly difficult?</p>
<p align="justify">If we make a standard horoscope chart for December 21st, 2012 A.D., nothing very unusual appears. In this way I was led astray in my search until Linda Schele provided a clue. Probably the most exciting breakthrough is her identification of the astronomical meaning of the Mayan Sacred Tree. Drawing from an impressive amount of iconographic evidence, and generously sharing the process by which she arrived at her discovery, the Sacred Tree is found to be none other than the crossing point of the ecliptic with the band of the Milky Way. Indeed, the Milky Way seems to have played an important role in Mayan imagery. For example, an incised bone from 8th century Tikal depicts a long sinking canoe containing various deities. This is a picture of the night sky and the canoe is the Milky Way, sinking below the horizon as the night progresses, and carrying with it deities representing the nearby constellations. The incredible Mayan site of Palanquin is filled with Sacred Tree motifs and references to astronomical events suggested that the Sacred Tree referred to the ecliptic. Apparently that was only part of the picture, for the Sacred Tree that Pacal ascends in death is more than just the ecliptic, it is the sacred doorway to the underworld. The crossing point of Milky Way and ecliptic is this doorway and represents the sacred source and origin. In the following diagram of the well known sarcophagus carving, notice that the Milky Way tree serves as an extension of Pacal's umbilicus. The umbilicus is a human being's entrance into life, and entrance into death as well:<a href="http://gyandotcom.files.wordpress.com/2008/04/chart1.gif"><img class="alignnone size-full wp-image-97" src="http://gyandotcom.wordpress.com/files/2008/04/chart1.gif" alt="" /></a></p>
<div><span style="font-size:medium;"> </span></div>
<p><span style="font-size:medium;"> </p>
<p></span></span></p>
<p> </p>
<p align="center"> </p>
<p align="center"> </p>
<div><span style="font-size:x-small;font-family:Arial;"> </p>
<p></span></div>
<div><span style="font-size:x-small;font-family:Arial;"></span></div>
<p><span style="font-size:x-small;font-family:Arial;"><span style="font-size:x-small;font-family:Arial;"></p>
<p align="center"> </p>
<p> </p>
<p> </p>
<p></span></span></p>
<p align="center"> </p>
<p align="center">
<div><span style="font-size:medium;"><span style="font-family:Times New Roman;">Chart 1.</span></span></div>
<p><span style="font-size:medium;"></p>
<p align="justify">Here is a full view of the sky at noon on December 21st, 2012 A.D. The band of the Milky Way can be seen stretching from the lower right to the upper left. The more or less vertical dotted line indicates the Galactic Equator. The planets can be seen tracing a roughly horizontal path through the chart, indicating the ecliptic. The sun, quite strikingly, is dead center in the Sacred Tree. Let's look closer.</p>
<p> </p>
<p> </p>
<p></span></p>
<div></div>
<p> </p>
<div><span style="font-size:x-small;font-family:Arial;"></span></div>
<p><span style="font-size:x-small;font-family:Arial;"><span style="font-size:x-small;font-family:Arial;"></p>
<p align="center"> </p>
<p> </p>
<p> </p>
<p></span></span>
</p>
<p align="center"><a href="http://gyandotcom.files.wordpress.com/2008/04/chart21.gif"><img class="alignnone size-full wp-image-100" src="http://gyandotcom.wordpress.com/files/2008/04/chart21.gif" alt="" /></a><a href="http://gyandotcom.files.wordpress.com/2008/04/chart31.gif"><img class="alignnone size-full wp-image-101" src="http://gyandotcom.wordpress.com/files/2008/04/chart31.gif" alt="" /></a> </p>
<p align="center">
<div><span style="font-size:medium;"><span style="font-family:Times New Roman;">Chart 3.</span></span></div>
<p><span style="font-size:medium;"></p>
<p align="justify">The field is now reduced to a 5-degree span, what astrology considers to be within conjunction. The dot to the lower right of the sun is the star 4 Sgr. Amazingly, the Sun is right on target. We couldn't have hoped for a closer conjunction. 1 day before or after will remove the sun a noticeable distance from the crossing point. December 21st, 2012 (13.0.0.0.0 in the Long Count) therefore represents an extremely close conjunction of the winter solstice sun with the crossing point of Galactic Equator and the ecliptic, what the ancient Maya recognized as the Sacred Tree. It is critical to understand that the winter solstice sun rarely conjuncts the Sacred Tree. In fact, this is an event that has been coming to resonance very slowly over thousands and thousands of years. What this might mean astrologically, how this might effect the "energy weather" on earth, must be treated as a separate topic.</p>
<p align="justify">But I should at least mention in passing that this celestial convergence appears to parallel the accelerating pace of human civilization. It should be noted that because precession is a very slow process, similar astronomical alignments will be evident on the winter solstice dates within perhaps 5 years on either side of 2012. However, the accuracy of the conjunction of 2012 is quite astounding, beyond anything deemed calculable by the ancient Maya, and serves well to represent the perfect mid-point of the process.</p>
<p align="justify">Let's go back to the dawn of the Long Count and try to reconstruct what may have been happening.</p>
<div><strong></strong></div>
<div><strong></strong></div>
<p><strong></p>
<p align="justify">Why</p>
<p>: Winter Solstice Sun Conjuncts the Sacred Tree in 2012 A.D.</p>
<p align="justify">First, the tzolkin count originated among the Olmec at least as early as 679 B.C. (see Edmondson’s Book of the Year). We may suspect that astronomical observations were being made from at least that point. The tzolkin count has been followed unbroken since at least that time, up to the present day, demonstrating the high premium placed by the Maya upon continuity of tradition. In this way, star records, horizon positions of the winter solstice sun, and other pertinent observations could also have been accurately preserved. As suggested above, precession can be noticed by way of even simple horizon astronomy in as little time as 100 to 150 years. (Hipparchus, the alleged "discoverer" of precession among the Greeks, compared his own observations with data collected only 170 years before his time.) Following Edmonson, the Long Count system may have appeared as early as 355 B.C. Part of the reason for implementing the Long Count system, as I will show, was probably to calculate future winter solstice dates.</p>
<p align="justify">We must assume that even at this early point in Mesoamerican history, the crossing point of ecliptic and Milky Way was understood as the "Sacred Tree". Since the Sacred Tree concept is intrinsically tied into the oldest Mayan Creation Myths, this is not improbable. At the very least, the "dark rift" was already a recognized feature. Early sky watchers of this era (355 B.C.) would then observe the sun to conjunct the dark ridge in the Milky Way on or around November 18th.5 this would be easily observed in the pre-dawn sky as described above: the Milky Way points to the rising sun on this date.</p>
<p align="justify">Over a relatively short period of time, as an awareness of precession was emerging, this date was seen to slowly approach winter solstice, a critical date in its own right in early Mayan cosmo-conception. At this point, precession and the rate of precession was calculated, the Long Count was perfected and inaugurated, and the appropriate winter solstice date in 2012 A.D. was found via the Long Count in the following way.</p>
<div><strong></strong></div>
<div><strong></strong></div>
<p></strong><strong></p>
<p align="justify">How:</p>
<p>Long Count and Seasonal Quarters</p>
<p align="justify">Long Count Katun beginnings will conjunct sequential seasonal quarters every 1.7.0.0.0 days (194400 days). This is an easily tracked Long Count interval. Starting with the katun beginning of 650 B.C.:</p>
<p align="justify">Long Count Which Quarter? Year</p>
<p align="justify">6.5.0.0.0 Fall 650 B.C.</p>
<p align="justify">7.12.0.0.0 Winter 118 B.C.</p>
<p align="justify">8.19.0.0.0 Spring 416 A.D.</p>
<p align="justify">10.6.0.0.0 Summer 948 A.D.</p>
<p align="justify">11.13.0.0.0 Fall 1480 A.D.</p>
<p align="justify">13.0.0.0.0 Winter 2012 A.D.</p>
<div><strong></strong></div>
<div><strong></strong></div>
<p></strong><strong></p>
<p align="justify">Note</p>
<p>that the last date is not only a katun beginning, but a baktun beginning as well. It is, indeed, the end date of 2012.6</p>
<p align="justify">The Long Count may have been officially inaugurated on a specific date in 355 B.C., as Edmonson suggests, but it must have been formulated, tried, tested, and proven before this date. This may well have taken centuries, and the process no doubt paralleled (and was perhaps instigated by) the discovery of precession. The Long Count system automatically accounts for precession in its ability to calculate future seasonal quarters - a property which shouldn't be underestimated.</p>
<div><strong></strong></div>
<div><strong></strong></div>
<p></strong><strong></p>
<p align="justify">Summary</p>
<p> </p>
<p> </p>
<p></strong></p>
<p align="justify">This has been my attempt to fill a vacuum in Mayan Studies, an answer to the why and how of the end date of the 13-baktun cycle of the Mayan Long Count. The solution requires a shift in how we think about the astronomy of the Long Count end date. The strange fact that it occurs on a winter solstice immediately points us to possible astronomical reasons, but they are not obvious. We also shouldn't forget the often mentioned fact that the 13-baktun cycle of some 5125 years is roughly 1/5th of a processional cycle. This in itself should have been suggestive of a deeper mystery very early on. Only with the recent identification of the astronomical nature of the Sacred Tree has the puzzle revealed its fullness. And once again we are amazed at the sophistication and vision of the ancient New World astronomers, the descendants of whom still count the days and watch the skies in the remote outback’s of Guatemala.</p>
<p align="justify">This essay is not contrived upon sketchy evidence. It basically rests upon two facts:</p>
<p align="justify">1) The well known end date of the 13-baktun cycle of the Mayan Long Count, which is December 21st, 2012 A.D. and</p>
<p align="justify">2) The astronomical situation on that day. Based upon these two facts alone, the creators of the Long Count knew about and calculated the rate of precession over 2300 years ago. I can conceive of no other conclusion. To explain this away as "coincidence" would only obscure the issue.</p>
<p align="justify">For early Mesoamerican sky watchers, the slow approach of the winter solstice sun to the Sacred Tree was seen as a critical process, the culmination of which was surely worthy of being called 13.0.0.0.0, the end of a World Age. The channel would then be open through the winter solstice doorway, up the Sacred Tree, the Xibalba be , to the center of the churning heavens, the Heart of Sky.</p>
<p> </p>
<p> </p>
<p></span></p>
<div><strong></strong></div>
<div><strong><span style="text-decoration:underline;"></span></strong></div>
<p><strong><span style="text-decoration:underline;"><span style="font-size:x-large;"></p>
<p align="justify">2004 and 2012 Transits of</p>
<p align="justify">Venus</p>
<p> </p>
<p> </p>
<p></span></span></strong></p>
<div></div>
<p><span style="font-size:medium;"></p>
<p align="justify">Transits of Venus across the disk of the Sun are among the rarest of planetary alignments. Indeed, only six such events have occurred since the invention of the telescope (1631, 1639, 1761, 1769, 1874 and 1882). The next two transits of Venus will occur on 2004 June 08 and 2012 June 06.</p>
<p align="justify">The principal events occurring during a transit are characterized by contacts. The event begins with contact <strong>I</strong> which is the instant when the planet's disk is externally tangent with the Sun. The entire disk of the Venus is first seen at contact II when the planet is internally tangent with the Sun. During the next several hours, Venus gradually traverses the solar disk at a relative angular rate of approximately 4 arc-min/hr. At contact III, the planet reaches the opposite limb and is once again internally tangent with the Sun. The transit ends at contact IV when the planet's limb is externally tangent to the Sun. Contacts I and II define the phase called ingress while contacts III and IV are known as egress. Greatest transit is the instant of minimum angular separation between Venus and the Sun as seen from Earth's geocenter.(<span style="text-decoration:underline;">Low Res</span> or <span style="text-decoration:underline;">High Res</span>) illustrates the geocentric observing geometry of each transit across the Sun (celestial north is up). The 2004 transit crosses the Sun's southern hemisphere while the 2012 event crosses the northern hemisphere. The position of Venus at each contact is shown along with its path as a function of Universal Time. Each transit lasts over six hours. The apparent semi-diameters of Venus and the Sun are 29 arc-seconds and 945 arc-seconds respectively. This 1:32.6 diameter ratio results in an effective 0.001 magnitude drop in the Sun's integrated magnitude due to the transit. Geocentric contact times and instant of greatest transit appear to the left corners of (<span style="text-decoration:underline;">Low Res</span> or <span style="text-decoration:underline;">High Res</span>).</p>
<p align="justify"> </p>
<div><strong></strong></div>
<div><strong></strong></div>
<p><strong></p>
<p align="justify">Geographic Visibility of 2004 June 08</p>
<p> </p>
<p> </p>
<p></strong></p>
<p align="justify">The global visibility of the 2004 transit is illustrated with the world map in Figure 2 (<span style="text-decoration:underline;">Low Res</span> or <span style="text-decoration:underline;">High Res</span>). The entire transit (all four contacts) is visible from Europe, Africa (except western parts), Middle East, and most of Asia (except eastern parts). The Sun sets while the transit is still in progress from Australia, Indonesia, Japan, Philippines, Korea, easternmost China and Southeast Asia. Similarly, the Sun rises with the transit already in progress for observers in western Africa, eastern North America, the Caribbean and most of South America. None of the transit will be visible from southern Chile or Argentina, western North America, Hawaii or New Zealand.</p>
<p align="justify">The horizontal parallax of Venus (~ 30 arc-secs) introduces a topocentric correction of up to ±7 minutes with respect to the geocentric contact times for observers at different geographic locations. Topocentric contact times (Universal Time) and corresponding altitudes of the Sun are presented for over one hundred cities in <strong>Geographic Visibility of 2012 June 06</strong></p>
<p align="justify">The global visibility of the 2012 transit is (<span style="text-decoration:underline;">Low Res</span> or <span style="text-decoration:underline;">High Res</span>). The entire transit (all four contacts) is visible from northwestern North America, Hawaii, the western Pacific, northern Asia, Japan, Korea, eastern China, Philippines, eastern Australia, and New Zealand. The Sun sets while the transit is still in progress from most of North America, the Caribbean, and northwest South America. Similarly, the transit is already in progress at sunrise for observers in central Asia, the Middle East, Europe, and eastern Africa,. No portion of the transit will be visible from Portugal or southern Spain, western Africa, and the southeastern 2/3 of South America.</p>
<p align="justify">The horizontal parallax of Venus (~ 30 arc-secs) introduces a topocentric correction of up to ±7 minutes with respect to the geocentric contact times for observers at different geographic locations. Topocentric contact times (Universal Time) and corresponding altitudes of the Sun are presented for over one hundred cities.</p>
<div><strong></strong></div>
<div><strong></strong></div>
<p><strong></p>
<p align="justify">Frequency of Transits</p>
<p> </p>
<p> </p>
<p></strong></p>
<p align="justify">Transits of Venus are only possible during early December and early June when Venus's orbital nodes pass across the Sun. If Venus reaches inferior conjunction at this time, a transit will occur. Transits show a clear pattern of recurrence at intervals of 8, 121.5, 8 and 105.5 years. The next pair of Venus transits occur over a century from now on 2117 Dec 11 and 2125 Dec 08.</p>
<p align="justify">Edmund Halley first realized that transits of Venus could be used to measure the Sun's distance, thereby establishing the absolute scale of the solar system from Kepler's third law. Unfortunately, his method proved impractical since contact timings of the desired accuracy are impossible due to the effects of atmospheric seeing and diffraction. Nevertheless, the 1761 and 1769 expeditions to observe the transits of Venus gave astronomers their first good value for the Sun's distance.</p>
<p align="justify">The planet Mercury can also transit the Sun. Since Mercury orbits the Sun more quickly than does Venus, it undergoes transits much more frequently. There are about 13 or 14 transits of Mercury each century. All Mercury transits fall within several days of 8 May and 10 November. During November transits, Mercury is near perihelion and exhibits a disk only 10 arc-seconds in diameter. By comparison, the planet is near aphelion during May transits and appears 12 arc-seconds across. However, the probability of a May transit is smaller by a factor of almost two. Mercury's slower orbital motion at aphelion makes it less likely to cross the node during the critical period. November transits recur at intervals of 7, 13, or 33 years while May transits recur only over the latter two intervals. The next two transits of Mercury are on 2003 May 07 , 2006 and Nov 2008.</p>
<p> </p>
<p> </p>
<p></span></p>
<div><strong></strong></div>
<div><strong></strong></div>
<p><strong></p>
<p align="justify">By Rohit Sharma</p>
<div></div>
<p></strong><span style="font-size:medium;font-family:Arial;"></p>
<p align="justify"> </p>
<div></div>
<p></span><span style="font-size:medium;"></p>
<p align="justify"> </p>
<p align="justify"> </p>
<div><span style="font-size:x-small;font-family:Arial;"> </span></div>
<div><span style="font-size:x-small;font-family:Arial;"> </span></div>
<p></span><span style="font-size:x-small;font-family:Arial;"> </p>
<p></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The Old Warhorse]]></title>
<link>http://jdmasia.wordpress.com/?p=240</link>
<pubDate>Sat, 05 Apr 2008 04:17:17 +0000</pubDate>
<dc:creator>Leon</dc:creator>
<guid>http://jdmasia.wordpress.com/?p=240</guid>
<description><![CDATA[I was going through a DVD last night that is literally filled with nothing but photos from when I wa]]></description>
<content:encoded><![CDATA[<p>I was going through a DVD last night that is literally filled with nothing but photos from when I was back home in Australia. I didn't think I actually had any photos of any of my old cars when I found a couple of pics of my RPS13 I took a few days after buying it.</p>
<p style="text-align:center;"><img class="alignnone size-full wp-image-241" src="http://jdmasia.wordpress.com/files/2008/04/180-6.jpg" alt="" width="408" height="295" /></p>
<p>I know it's nothing special to look at as it was 100% stock standard when I bought it with the only modifications being seriously faded paint because it had been left sitting in the sun for the 2 years since it'd been imported into Australia (if you could call that a modification).</p>
<p>But the reason I spent my cash on the thing is that it had only 60,000 kays on the clock, had only one Japanese owner before I'd bought it from the importer and apart from the sunbeaten paint, was in pristine condition.</p>
<p>I know many people who won't even consider buying an import unless it's already been modified to save them some money, however I'm the total opposite. I won't even think about spending money on a vehicle that I intend to modify unless it's exactly as it left the factory.</p>
<p>The reason for this is simple enough, especially if you've seen the way that many cars are modified in Australia. Think ill-fitting and horrendously-styled bodykits that look as if they were installed on the car by a schizophrenic octopus, cheap home garage installed parts that work about as reliably as a government employee, and hastily-applied budget canary yellow or purple paintjobs that do nothing for the car apart from making it look like...well, shit.</p>
<p>If I modify a car, I want to do it once, do it right, and do it the way I want to do it.</p>
<p>The fact is, I could deal with a little sun-damaged paint (which you can clearly see in the photos) but apart from that it was perfect. I mean, look at how clean the engine bay is! And that's after it had been sitting in a car yard for two years.</p>
<p>Sadly, I never got the chance to modify this precious as at the time, I was in some severe financial shit (thanks, GE Finance) and had to sell it to pay off some debts. Hopefully the guy who bought it did it proud, however I lost contact with him so I never did find out what the fate of my old workhorse was.</p>
<p>Anyway, that's a little of my motoring history with some photos attached for those of you who have the attention span of a gnat, can't read, or just like pretty shapes and colours.</p>
<p><strong>- Leon.</strong></p>
<p style="text-align:center;"><a href="http://jdmasia.files.wordpress.com/2008/04/180-1.jpg"><img class="alignnone size-thumbnail wp-image-242" src="http://jdmasia.wordpress.com/files/2008/04/180-1.jpg" alt="" width="128" height="96" /></a><a href="http://jdmasia.files.wordpress.com/2008/04/180-2.jpg"><img class="alignnone size-thumbnail wp-image-244" src="http://jdmasia.wordpress.com/files/2008/04/180-2.jpg" alt="" width="128" height="96" /></a><a href="http://jdmasia.files.wordpress.com/2008/04/180-3.jpg"><img class="alignnone size-thumbnail wp-image-245" src="http://jdmasia.wordpress.com/files/2008/04/180-3.jpg" alt="" width="128" height="96" /></a><a href="http://jdmasia.files.wordpress.com/2008/04/180-4.jpg"><img class="alignnone size-thumbnail wp-image-246" src="http://jdmasia.wordpress.com/files/2008/04/180-4.jpg" alt="" width="128" height="96" /></a><a href="http://jdmasia.files.wordpress.com/2008/04/180-7.jpg"><img class="alignnone size-thumbnail wp-image-247" src="http://jdmasia.wordpress.com/files/2008/04/180-7.jpg" alt="" width="128" height="92" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[सब कुछ बना लिया हमने पर देश बनाना भूल गए. by Rohit Sharma]]></title>
<link>http://gyandotcom.wordpress.com/?p=93</link>
<pubDate>Wed, 02 Apr 2008 09:09:52 +0000</pubDate>
<dc:creator>gyandotcom by Rohit Sharma</dc:creator>
<guid>http://gyandotcom.wordpress.com/?p=93</guid>
<description><![CDATA[सब कुछ बना लिया हमने पर देश बनाना भूल ग]]></description>
<content:encoded><![CDATA[<p><font size="4" color="#ff0000">सब</font><font size="4" color="#ff0000" face="Arial"> </font><font size="4" color="#ff0000">कुछ</font><font size="4" color="#ff0000" face="Arial"> </font><font size="4" color="#ff0000">बना</font><font size="4" color="#ff0000" face="Arial"> </font><font size="4" color="#ff0000">लिया</font><font size="4" color="#ff0000" face="Arial"> </font><font size="4" color="#ff0000">हमने</font><font size="4" color="#ff0000" face="Arial"> </font><font size="4" color="#ff0000">पर</font><font size="4" color="#ff0000" face="Arial"> </font><font size="4" color="#ff0000">देश</font><font size="4" color="#ff0000" face="Arial"> </font><font size="4" color="#ff0000">बनाना</font><font size="4" color="#ff0000" face="Arial"> </font><font size="4" color="#ff0000">भूल</font><font size="4" color="#ff0000" face="Arial"> </font><font size="4" color="#ff0000">गए।</font></p>
<p><font size="4" face="Arial"></font><font size="4">रेल</font><font size="4" face="Arial">,</font><font size="4">सडक</font><font size="4" face="Arial">, </font><font size="4">पुल</font><font size="4" face="Arial">, </font><font size="4">बाँध</font><font size="4" face="Arial"> </font><font size="4">बनाये</font><font size="4" face="Arial">, </font><font size="4">उद्योगो</font><font size="4" face="Arial"> </font><font size="4">के</font><font size="4" face="Arial"> </font><font size="4">जाल</font><font size="4" face="Arial"> </font><font size="4">बिछाऐ।</font><font size="4">अस्त्र</font><font size="4" face="Arial"> </font><font size="4">शस्त्र</font><font size="4" face="Arial"> </font><font size="4">हथियार</font><font size="4" face="Arial"> </font><font size="4">बनाये</font><font size="4" face="Arial">, </font><font size="4">भव्य</font><font size="4" face="Arial"> </font><font size="4">भवन</font><font size="4" face="Arial"> </font><font size="4">भंडार</font><font size="4" face="Arial"> </font><font size="4">बनाये।धन</font><font size="4" face="Arial">-</font><font size="4">दोलत</font><font size="4" face="Arial"> </font><font size="4">की</font><font size="4" face="Arial"> </font><font size="4">दोड</font><font size="4" face="Arial"> </font><font size="4">में</font><font size="4" face="Arial">, </font><font size="4">घर</font><font size="4" face="Arial"> </font><font size="4">परिवार</font><font size="4" face="Arial"> </font><font size="4">बचाना</font><font size="4" face="Arial"> </font><font size="4">भूल</font><font size="4" face="Arial"> </font><font size="4">गए</font><font size="4" face="Arial"> </font></p>
<p><font size="4">सब</font><font size="4" face="Arial"> </font><font size="4">कुछ</font><font size="4" face="Arial"> </font><font size="4">बना</font><font size="4" face="Arial"> </font><font size="4">लिया</font><font size="4" face="Arial"> </font><font size="4">हमने</font><font size="4" face="Arial"> </font><font size="4">पर</font><font size="4" face="Arial"> </font><font size="4">देश</font><font size="4" face="Arial"> </font><font size="4">बनाना</font><font size="4" face="Arial"> </font><font size="4">भूल</font><font size="4" face="Arial"> </font><font size="4">गए।</font></p>
<p><font size="4" face="Arial"></font><font size="4">गाँव</font><font size="4" face="Arial"> </font><font size="4">की</font><font size="4" face="Arial"> </font><font size="4">सौंधी</font><font size="4" face="Arial"> </font><font size="4">मिट्टी</font><font size="4" face="Arial"> </font><font size="4">छोडी</font><font size="4" face="Arial">, </font><font size="4">शहर</font><font size="4" face="Arial"> </font><font size="4">के</font><font size="4" face="Arial"> </font><font size="4">पत्थर</font><font size="4" face="Arial"> </font><font size="4">चुनने</font><font size="4" face="Arial"> </font><font size="4">में।</font><font size="4">बरगद</font><font size="4" face="Arial">, </font><font size="4">नीम</font><font size="4" face="Arial"> </font><font size="4">की</font><font size="4" face="Arial"> </font><font size="4">छांव</font><font size="4" face="Arial"> </font><font size="4">छोडी</font><font size="4" face="Arial"> </font><font size="4">कोरे</font><font size="4" face="Arial"> </font><font size="4">सप्ने</font><font size="4" face="Arial"> </font><font size="4">बुनने</font><font size="4" face="Arial"> </font><font size="4">में</font><font size="4" face="Arial"> </font><font size="4">।हरी</font></p>
<p><font size="4" face="Arial">-</font><font size="4">हरी</font><font size="4" face="Arial"> </font><font size="4">पगड्ण्डी</font><font size="4" face="Arial"> </font><font size="4">छोड</font><font size="4" face="Arial"> </font><font size="4">कर</font><font size="4" face="Arial"> </font><font size="4">पहँउच</font><font size="4" face="Arial"> </font><font size="4">गये</font><font size="4" face="Arial"> </font><font size="4">हम</font><font size="4" face="Arial"> </font><font size="4">जंगल</font><font size="4" face="Arial"> </font><font size="4">में</font><font size="4" face="Arial"> </font><font size="4">।</font><font size="4">कुछ</font><font size="4" face="Arial"> </font><font size="4">ना</font><font size="4" face="Arial"> </font><font size="4">मिला</font><font size="4" face="Arial"> </font><font size="4">करने</font><font size="4" face="Arial"> </font><font size="4">को</font><font size="4" face="Arial"> </font><font size="4">तो</font><font size="4" face="Arial"> </font><font size="4">पहुच</font><font size="4" face="Arial"> </font><font size="4">गये</font><font size="4" face="Arial"> </font><font size="4">सन्तों</font><font size="4" face="Arial"> </font><font size="4">के</font><font size="4" face="Arial"> </font><font size="4">परवच्नो</font><font size="4" face="Arial"> </font><font size="4">के</font><font size="4" face="Arial"> </font><font size="4">आडम्बर</font><font size="4" face="Arial"> </font><font size="4">में</font><font size="4" face="Arial"> </font></p>
<p><font size="4">भरे</font><font size="4" face="Arial"> </font><font size="4">परिवार</font><font size="4" face="Arial"> </font><font size="4">तोड</font><font size="4" face="Arial"> </font><font size="4">के</font><font size="4" face="Arial"> </font><font size="4">दीवार</font><font size="4" face="Arial"> </font><font size="4">बना</font><font size="4" face="Arial"> </font><font size="4">ली</font><font size="4" face="Arial"> </font><font size="4">आँग़न</font><font size="4" face="Arial"> </font><font size="4">में।</font><font size="4">भाई</font><font size="4" face="Arial">-</font><font size="4">भाई</font><font size="4" face="Arial"> </font><font size="4">के</font><font size="4" face="Arial"> </font><font size="4">खून</font><font size="4" face="Arial"> </font><font size="4">का</font><font size="4" face="Arial"> </font><font size="4">प्यासा</font><font size="4" face="Arial"> </font><font size="4">आग</font><font size="4" face="Arial"> </font><font size="4">लगा</font><font size="4" face="Arial"> </font><font size="4">ली</font><font size="4" face="Arial"> </font><font size="4">सावन</font><font size="4" face="Arial"> </font><font size="4">में</font><font size="4" face="Arial"> </font><font size="4">।टी</font></p>
<p><font size="4" face="Arial"> </font><font size="4">वी</font><font size="4" face="Arial"> </font><font size="4">ने</font><font size="4" face="Arial"> </font><font size="4">तो</font><font size="4" face="Arial"> </font><font size="4">निक्म्मा</font><font size="4" face="Arial"> </font><font size="4">बनाया</font><font size="4" face="Arial"> </font><font size="4">ओर</font><font size="4" face="Arial"> </font><font size="4">बनाया</font><font size="4" face="Arial"> </font><font size="4">बेरोज़्गारी</font><font size="4" face="Arial"> </font><font size="4">ने</font><font size="4" face="Arial"> </font><font size="4">।</font><font size="4">खडे</font><font size="4" face="Arial"> </font><font size="4">कर</font><font size="4" face="Arial"> </font><font size="4">दिये</font><font size="4" face="Arial"> </font><font size="4">नये</font><font size="4" face="Arial"> </font><font size="4">बेरोज़्गार</font><font size="4" face="Arial"> </font><font size="4">रोज़</font><font size="4" face="Arial"> </font><font size="4">हमारी</font><font size="4" face="Arial"> </font><font size="4">मेहेगाई</font><font size="4" face="Arial"> </font><font size="4">ने।</font></p>
<p><font size="4" face="Arial"></font><font size="4">सत्य</font><font size="4" face="Arial"> </font><font size="4">न्याय</font><font size="4" face="Arial"> </font><font size="4">बेहोश</font><font size="4" face="Arial"> </font><font size="4">पडे</font><font size="4" face="Arial"> </font><font size="4">हे</font><font size="4" face="Arial"> </font><font size="4">न्यायालय</font><font size="4" face="Arial"> </font><font size="4">ओर</font><font size="4" face="Arial"> </font><font size="4">राज</font><font size="4" face="Arial"> </font><font size="4">दरबारो</font><font size="4" face="Arial"> </font><font size="4">में</font><font size="4" face="Arial"> </font><font size="4">।</font><font size="4">शर्म</font><font size="4" face="Arial">- </font><font size="4">हया</font><font size="4" face="Arial"> </font><font size="4">तक</font><font size="4" face="Arial"> </font><font size="4">गिरवी</font><font size="4" face="Arial"> </font><font size="4">रख</font><font size="4" face="Arial"> </font><font size="4">दी</font><font size="4" face="Arial"> </font><font size="4">पच्छिम</font><font size="4" face="Arial"> </font><font size="4">के</font><font size="4" face="Arial"> </font><font size="4">बाजारो</font><font size="4" face="Arial"> </font><font size="4">में</font><font size="4" face="Arial"> </font><font size="4">।मय</font></p>
<p><font size="4" face="Arial"> </font><font size="4">खानो</font><font size="4" face="Arial"> </font><font size="4">मे</font><font size="4" face="Arial"> </font><font size="4">डुब</font><font size="4" face="Arial"> </font><font size="4">गए</font><font size="4" face="Arial"> </font><font size="4">गंगा</font><font size="4" face="Arial"> </font><font size="4">मे</font><font size="4" face="Arial"> </font><font size="4">नहाना</font><font size="4" face="Arial"> </font><font size="4">भूल</font><font size="4" face="Arial"> </font><font size="4">गए।</font><font size="4">सब</font><font size="4" face="Arial"> </font><font size="4">कुछ</font><font size="4" face="Arial"> </font><font size="4">बना</font><font size="4" face="Arial"> </font><font size="4">लिया</font><font size="4" face="Arial"> </font><font size="4">हमने</font><font size="4" face="Arial"> </font><font size="4">पर</font><font size="4" face="Arial"> </font><font size="4">देश</font><font size="4" face="Arial"> </font><font size="4">बनाना</font><font size="4" face="Arial"> </font><font size="4">भूल</font><font size="4" face="Arial"> </font><font size="4">गए।</font></p>
<p><font size="4" face="Arial"></font><font size="4">न्ग्न</font><font size="4" face="Arial"> </font><font size="4">नारीयाँ</font><font size="4" face="Arial"> </font><font size="4">न्ग्न</font><font size="4" face="Arial"> </font><font size="4">त्माशे</font><font size="4" face="Arial"> </font><font size="4">न्ग्न</font><font size="4" face="Arial"> </font><font size="4">नुमाइश</font><font size="4" face="Arial"> </font><font size="4">लगती</font><font size="4" face="Arial"> </font><font size="4">हें</font><font size="4" face="Arial"> </font></p>
<p><font size="4">जाने</font><font size="4" face="Arial"> </font><font size="4">क्या</font><font size="4" face="Arial"> </font><font size="4">क्या</font><font size="4" face="Arial"> </font><font size="4">होता</font><font size="4" face="Arial"> </font><font size="4">हे</font><font size="4" face="Arial"> </font><font size="4">तब</font><font size="4" face="Arial"> </font><font size="4">विश्व</font><font size="4" face="Arial"> </font><font size="4">सुंदरी</font><font size="4" face="Arial"> </font><font size="4">बनती</font><font size="4" face="Arial"> </font><font size="4">हें</font><font size="4" face="Arial"> </font><font size="4">।</font><font size="4">ये</font><font size="4" face="Arial"> </font><font size="4">ही</font><font size="4" face="Arial"> </font><font size="4">सुन्दरी</font><font size="4" face="Arial"> </font><font size="4">टी</font><font size="4" face="Arial"> </font><font size="4">वी</font><font size="4" face="Arial"> </font><font size="4">पर</font><font size="4" face="Arial"> </font><font size="4">फ़िर</font><font size="4" face="Arial"> </font><font size="4">विज्ञापन</font><font size="4" face="Arial"> </font><font size="4">मे</font><font size="4" face="Arial"> </font><font size="4">भी</font><font size="4" face="Arial"> </font><font size="4">दिखती</font><font size="4" face="Arial"> </font><font size="4">हे्।मल्टीनेशनल</font><font size="4" face="Arial"> </font><font size="4">कम्प्नी</font><font size="4" face="Arial"> </font><font size="4">के</font><font size="4" face="Arial"> </font><font size="4">नाम</font><font size="4" face="Arial"> </font><font size="4">पे</font><font size="4" face="Arial"> </font><font size="4">साबुन</font><font size="4" face="Arial"> </font><font size="4">तेल</font><font size="4" face="Arial"> </font><font size="4">भी</font><font size="4" face="Arial"> </font><font size="4">बेचती</font><font size="4" face="Arial"> </font><font size="4">हे्।</font></p>
<p><font size="4" face="Arial"></font><font size="4">न्याय</font><font size="4" face="Arial"> </font><font size="4">की</font><font size="4" face="Arial"> </font><font size="4">खुल</font><font size="4" face="Arial"> </font><font size="4">कर</font><font size="4" face="Arial"> </font><font size="4">बोली</font><font size="4" face="Arial"> </font><font size="4">लगती</font><font size="4" face="Arial">, </font><font size="4">दलालो</font><font size="4" face="Arial"> </font><font size="4">की</font><font size="4" face="Arial"> </font><font size="4">मण्डी</font><font size="4" face="Arial"> </font><font size="4">मे।</font><font size="4">न्यायाधीश</font><font size="4" face="Arial"> </font><font size="4">भी</font><font size="4" face="Arial"> </font><font size="4">बिक</font><font size="4" face="Arial"> </font><font size="4">जाते</font><font size="4" face="Arial"> </font><font size="4">हे</font><font size="4" face="Arial"> </font><font size="4">हरे</font><font size="4" face="Arial"> </font><font size="4">नोटो</font><font size="4" face="Arial"> </font><font size="4">की</font><font size="4" face="Arial"> </font><font size="4">गड्डी</font><font size="4" face="Arial"> </font><font size="4">मे।सँसद</font></p>
<p><font size="4" face="Arial"> </font><font size="4">बना</font><font size="4" face="Arial"> </font><font size="4">राजनीति</font><font size="4" face="Arial"> </font><font size="4">का</font><font size="4" face="Arial"> </font><font size="4">कोठा</font><font size="4" face="Arial">,</font><font size="4">नेताओ</font><font size="4" face="Arial"> </font><font size="4">का</font><font size="4" face="Arial"> </font><font size="4">इमान</font><font size="4" face="Arial"> </font><font size="4">बिका।</font><font size="4">चंद</font><font size="4" face="Arial"> </font><font size="4">रुप्ये</font><font size="4" face="Arial"> </font><font size="4">की</font><font size="4" face="Arial"> </font><font size="4">खातिर</font><font size="4" face="Arial"> </font><font size="4">वोट</font><font size="4" face="Arial"> </font><font size="4">बिका</font><font size="4" face="Arial"> </font><font size="4">इंसान</font><font size="4" face="Arial"> </font><font size="4">बिका।</font></p>
<p><font size="4" face="Arial"></font><font size="4">सियासत</font><font size="4" face="Arial"> </font><font size="4">के</font><font size="4" face="Arial"> </font><font size="4">गलियारों</font><font size="4" face="Arial"> </font><font size="4">मे</font><font size="4" face="Arial"> </font><font size="4">घर</font><font size="4" face="Arial"> </font><font size="4">बिका</font><font size="4" face="Arial"> </font><font size="4">गाँव</font><font size="4" face="Arial"> </font><font size="4">बिका</font><font size="4">अमर</font><font size="4" face="Arial"> </font><font size="4">शहीदो</font><font size="4" face="Arial"> </font><font size="4">के</font><font size="4" face="Arial"> </font><font size="4">भारत</font><font size="4" face="Arial"> </font><font size="4">मे</font><font size="4" face="Arial"> </font><font size="4">बिसिम्ल</font><font size="4" face="Arial"> </font><font size="4">का</font><font size="4" face="Arial"> </font><font size="4">नामो</font><font size="4" face="Arial"> </font><font size="4">निशान</font><font size="4" face="Arial"> </font><font size="4">बिका।गाँधी</font></p>
<p><font size="4" face="Arial"> </font><font size="4">बिका</font><font size="4" face="Arial">,</font><font size="4" face="Arial"> </font><font size="4">अश्फ़ाक</font><font size="4" face="Arial"> </font><font size="4">बिका</font><font size="4" face="Arial">,</font><font size="4" face="Arial"> </font><font size="4">राम</font><font size="4" face="Arial"> </font><font size="4">बिका</font><font size="4" face="Arial"> </font><font size="4" face="Arial">,</font><font size="4">रहमान</font><font size="4" face="Arial"> </font><font size="4">बिक्।</font><font size="4">ओर</font><font size="4" face="Arial"> </font><font size="4">कुछ</font><font size="4" face="Arial"> </font><font size="4">ना</font><font size="4" face="Arial"> </font><font size="4">मिला</font><font size="4" face="Arial"> </font><font size="4">तो</font><font size="4" face="Arial"> </font><font size="4">धर्म</font><font size="4" face="Arial"> </font><font size="4">बिका</font><font size="4" face="Arial"> </font><font size="4">इन्सान</font><font size="4" face="Arial"> </font><font size="4">बिका।विदेशी</font><font size="4" face="Arial"> </font><font size="4">पहनावे</font><font size="4" face="Arial"> </font><font size="4">कि</font><font size="4" face="Arial"> </font><font size="4">फ़िराक</font><font size="4" face="Arial"> </font><font size="4">में</font><font size="4" face="Arial"> </font><font size="4">नोटो</font><font size="4" face="Arial"> </font><font size="4">मे</font><font size="4" face="Arial"> </font><font size="4">हिन्दुस्तान</font><font size="4" face="Arial"> </font><font size="4">बिका।</font></p>
<p><font size="4" face="Arial"></font><font size="4">ज्न्मी</font><font size="4" face="Arial"> </font><font size="4">नही</font><font size="4" face="Arial"> </font><font size="4">फ़िर</font><font size="4" face="Arial"> </font><font size="4">कोइ</font><font size="4" face="Arial"> </font><font size="4">लश्र्मी</font><font size="4" face="Arial"> </font><font size="4">बाई</font><font size="4" face="Arial"> </font><font size="4">इस</font><font size="4" face="Arial"> </font><font size="4">धरती</font><font size="4" face="Arial"> </font><font size="4">की</font><font size="4" face="Arial"> </font><font size="4">माटी</font><font size="4" face="Arial"> </font><font size="4">ने।</font><font size="4">सँसद</font><font size="4" face="Arial"> </font><font size="4">मे</font><font size="4" face="Arial"> </font><font size="4">फ़ूलन</font><font size="4" face="Arial"> </font><font size="4">भिज्वा</font><font size="4" face="Arial"> </font><font size="4">दी</font><font size="4" face="Arial"> </font><font size="4">पर</font><font size="4" face="Arial"> </font><font size="4">चम्ब्ल</font><font size="4" face="Arial"> </font><font size="4">की</font><font size="4" face="Arial"> </font><font size="4">घाटी</font><font size="4" face="Arial"> </font><font size="4">ने।चम्ब्ल</font></p>
<p><font size="4" face="Arial"> </font><font size="4">मे</font><font size="4" face="Arial"> </font><font size="4">रही</font><font size="4" face="Arial"> </font><font size="4">सुरक्षित</font><font size="4" face="Arial"> </font><font size="4">पर</font><font size="4" face="Arial"> </font><font size="4">दिल्ली</font><font size="4" face="Arial"> </font><font size="4">मे</font><font size="4" face="Arial"> </font><font size="4">हार</font><font size="4" face="Arial"> </font><font size="4">गई।</font><font size="4">राजनीति</font><font size="4" face="Arial"> </font><font size="4">की</font><font size="4" face="Arial"> </font><font size="4">छ्दम</font><font size="4" face="Arial"> </font><font size="4">गोलियां</font><font size="4" face="Arial"> </font><font size="4">फ़ूलन</font><font size="4" face="Arial"> </font><font size="4">को</font><font size="4" face="Arial"> </font><font size="4">भी</font><font size="4" face="Arial"> </font><font size="4">मार</font><font size="4" face="Arial"> </font><font size="4">गई।आग</font></p>
<p><font size="4" face="Arial"> </font><font size="4">लगाना</font><font size="4" face="Arial"> </font><font size="4">सीख</font><font size="4" face="Arial"> </font><font size="4">गये</font><font size="4" face="Arial"> </font><font size="4">हम</font><font size="4" face="Arial"> </font><font size="4">आग</font><font size="4" face="Arial"> </font><font size="4">बुझाना</font><font size="4" face="Arial"> </font><font size="4">भूल</font><font size="4" face="Arial"> </font><font size="4">गये।</font><font size="4">सब</font><font size="4" face="Arial"> </font><font size="4">कुछ</font><font size="4" face="Arial"> </font><font size="4">बना</font><font size="4" face="Arial"> </font><font size="4">लिया</font><font size="4" face="Arial"> </font><font size="4">हमने</font><font size="4" face="Arial"> </font><font size="4">पर</font><font size="4" face="Arial"> </font><font size="4">देश</font><font size="4" face="Arial"> </font><font size="4">बनाना</font><font size="4" face="Arial"> </font><font size="4">भूल</font><font size="4" face="Arial"> </font><font size="4">गए</font></p>
<p><font size="4" face="Arial">by Rohit Sharma</p>
<p></font><font size="4" face="Arial"></font></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[रोद्र रुप धर कर class मे आते हो। by Rohit Sharma]]></title>
<link>http://gyandotcom.wordpress.com/?p=92</link>
<pubDate>Wed, 02 Apr 2008 08:59:43 +0000</pubDate>
<dc:creator>gyandotcom by Rohit Sharma</dc:creator>
<guid>http://gyandotcom.wordpress.com/?p=92</guid>
<description><![CDATA[व्यंग्य-रोहित शर्मा।
रोद्र रुप धर कर cla]]></description>
<content:encoded><![CDATA[<p><font size="4">व्यंग्य</font><font size="4" face="Mangal">-</font><font size="4">रोहित शर्मा।</font></p>
<p><font size="4">रोद्र रुप धर कर </font><font size="4" face="Arial">class </font><font size="4">मे आते हो।आते ही </font></p>
<p><font size="4" face="Arial">Quite please</font><font size="4"> का नारा लगाते हो।</font><font size="4">कोन कोन </font><font size="4" face="Arial">home work</font><font size="4"> कर के नही लाया।</font></p>
<p><font size="4">हमारे चेहरे पर प्रश्नचिन्ह लगाते हो ।</font><font size="4">जल्दी से बाहर आओ ओर मुर्गा बन के दिखाओ।</font><font size="4"> </font><font size="4"></font><font size="4" face="Mangal"></font><font size="4">रोद्र रुप धर कर </font><font size="4" face="Arial">class </font><font size="4">मे आते हो।</font><font size="4">आते ही </font><font size="4" face="Arial">Quite please</font><font size="4"> का नारा लगाते हो।</font></p>
<p><font size="4">कोन कोन </font><font size="4" face="Arial">home work</font><font size="4"> कर के नही लाया।</font></p>
<p><font size="4">क्या घर से झगड के आते हो ।</font><font size="4">ओर आते ही मुर्गा बनाते हो ।</font><font size="4"> </font><font size="4"></font><font size="4" face="Mangal"></font><font size="4">अपनी </font><font size="4" face="Arial">frustration </font><font size="4">के </font><font size="4" face="Arial">farts</font><font size="4"> हम बच्चो पे निकालते हो ।</font></p>
<p><font size="4">ओर हम पर अपने रुप का भाव दिखाते हो ।</font></p>
<p><font size="4">कभी घर से हास्य</font><font size="4" face="Mangal">-</font><font size="4">वयंग भी साथ लाया करो ।</font></p>
<p><font size="4" face="Mangal">45 </font><font size="4" face="Times New Roman">मिनिट के पिरियड मे </font><font size="4" face="Mangal">2-4 </font><font size="4"></font><font face="Times New Roman">जोक्स सुनाया करो।</font></p>
<p><font size="4"></font><font size="4">द्वेश की भावना से हमे ना पढाओ।</font></p>
<p><font size="4">हमे थोडा सा प्यार ओर तुम भी सम्मान पाओ।</font><font size="4"> </font><font size="4">कभी तुम भी तो </font><font size="4" face="Arial">Retired</font><font size="4"> होगे।</font></p>
<p><font size="4">ओर तुम्हारे बच्चे भी इसी </font><font size="4" face="Arial">school</font><font size="4"> मे होगें ।हम मे से कोइ</font><font size="4" face="Mangal">,</font></p>
<p><font size="4">तुम्हारे जैसा टीचर हो जायेगा ।</font><font size="4">वो भी यही </font><font size="4" face="Arial">tradition</font><font size="4"> अपनायेगा।</font></p>
<p><font size="4">ओर तुम्हारे बच्चे को भी कोइ मुर्गा बनायेगा।</font></p>
<p><font size="4" face="Mangal"></font><font size="4">अरे कभी तो प्यार से पेश आया करो।</font><font size="4">हम पर भी थोडा तरस खाया करो।</font><font size="4">सुबह सुबह मिठे सपनो की नींद तोड के आते हे।</p>
<p>सुनहरे भविष्य की कल्पना सँजो के आते हे।</p>
<p></font><font size="4" face="Mangal">5 </font><font size="4" face="Times New Roman">फ़ुट के शरीर मे </font><font size="4" face="Mangal">10 </font><font size="4"></font><font face="Times New Roman">किलो किताबो का वजन ढो के लाते हे।</font></p>
<p><font size="4">इस के बाद भी तुम्हे चेन नही आता रोज़ </font><font size="4" face="Arial">homework</font><font size="4"> दे जाते हो।</font></p>
<p><font size="4">ओर कुछ नही मिला तो सुबह सुबह अपना रोद्र रुप दिखाते हो।</font></p>
<p><font size="4">हम छोटे बच्चो को डरा</font><font size="4" face="Mangal">-</font><font size="4">डरा के पढाते हो।</font></p>
<p><font size="4" face="Mangal"></font><font size="4">हमारी भी इच्छा का थोडा मान करो।</font></p>
<p><font size="4">ओर अपनी पत्नि का थोडा सम्मान करो।</font><font size="4"> </font><font size="4">ना सुबह सुबह घर से झगड के आया करो।</p>
<p>ओर ना किसी बच्चे को मुर्गा बनाया करो।</p>
<p></font><font size="4" face="Mangal"></font><font size="4">कुछ तो लिहाज करो </font><font size="4" face="Mangal">2 </font><font size="4">बच्चो के बाप केहलाते हो।</font></p>
<p><font size="4">क्या घर पर भी बच्चो के साथ ऐसे ही पेश आते हो।</font></p>
<p><font size="4">तारे ज़मीन पर नही देखी क्या</font><font size="4" face="Mangal">?</font></p>
<p><font size="4">अभी तक नही देखी तो आज ही </font><font size="4" face="Arial">DVD</font><font size="4"> ले आयो।</font></p>
<p><font size="4">खुद भी देखो बाकि टीचरो को भी दिखायो</font></p>
<p><font size="4">अपनी </font><font size="4" face="Arial">Teaching</font><font size="4"> मे कुछ तो नयापन लायो।</font></p>
<p><font size="4" face="Mangal"></font><font size="4">ये रोद्र रुप धारण करना छोडो।</font></p>
<p><font size="4">मित्र रुप का पालन करो।</font><font size="4"> </font><font size="4">ना दो हमे ऐसा ज्ञान</font><font size="4" face="Mangal">, </font><font size="4">करना पडे जिस पर पस्चाताप्।</font></p>
<p><font size="4">ना बेचो अपने ज्ञान को</font><font size="4" face="Mangal">, </font><font size="4">ना करो हमारे भविष्य से खिलवाड।</font></p>
<p><font size="4">ना करो अपने ज्ञान का व्यव्साय</font><font size="4" face="Mangal">, </font><font size="4">यही हे हमारी तुम्हे नेक राय।</font></p>
<p><font size="4" face="Mangal"></font><font size="4">रोद्र रुप धर कर </font><font size="4" face="Arial">class </font><font size="4">मे ना आया करो।</font></p>
<p><font size="4">आते ही </font><font size="4" face="Arial">Quite please</font><font size="4"> का नारा ना लगाया करो।</font></p>
<p><font size="4">कभी तो शिष्टाचार से पेश आओ</font></p>
<p><font size="4" face="Mangal"></font><font size="4">थोडा अपने चेहरे पे मुस्कान तो दिखायो।</font></p>
<p><font size="4">ओर हमारे दिल मे अपने लिये कुछ तो सम्मान जगाओ।</font></p>
<p><font size="4"></font><font size="4" face="Mangal"></font><font size="4">यही हे हमारी छोटी सी </font><font size="4" face="Arial">Request</font><font size="4">।</font></p>
<p><font size="4">नही होगा फ़िर कोइ </font><font size="4" face="Arial">Protest</font><font size="4">।</font></p>
<p><font size="4">दो हमे भी थोडा सा ज्ञान ओर मान।</font></p>
<p><font size="4">मिलेगा तुम्हे भि खूब भरपूर सम्मान</font><font size="4"> </font><font size="4">मिलेगा तुम्हे भि खूब भरपूर सम्मान</p>
<p></font><font size="4" face="Mangal"></font><font size="4">धन्यवाद्।</font><font size="4"></font><font size="4" face="Mangal"></font><font size="4" face="Arial"></font><font size="6"></font><font size="6" face="Mangal"></font><font size="6" face="Arial"></font><font size="2" face="Arial"></font></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[जब मेने पेहली बार हास्य कविता लिखी।by Rohit Sharma]]></title>
<link>http://gyandotcom.wordpress.com/?p=91</link>
<pubDate>Wed, 02 Apr 2008 08:56:21 +0000</pubDate>
<dc:creator>gyandotcom by Rohit Sharma</dc:creator>
<guid>http://gyandotcom.wordpress.com/?p=91</guid>
<description><![CDATA[जब मेने पेहली बार हास्य कविता लिखी। 
म]]></description>
<content:encoded><![CDATA[<p><strong>जब मेने पेहली बार हास्य कविता लिखी। </strong></p>
<p><strong>मेरी पत्नि बोली आज का खाना तुम ही बनाना। </strong></p>
<p><strong>ओर तुरन्त अपनी सहेली के यहा हो ली। </strong></p>
<p><strong>वहा बोली, हमारे पति इस उम्र मे सढिया गये हे </strong></p>
<p><strong>ओर कुछ नही मिला तो हास्य कवि हो गये हे। </strong></p>
<p><strong>शब्दो के बाण शेया पे लेटे लेटे अपनी सुध बुध खो गये हे। </strong></p>
<p><strong>वेसे ही हास्य कवि कम थे जो ये भी add हो गये हे।</strong></p>
<p><strong> क्यो कर ते हो भेजा फ़्राइ, क्या तुम्हे रात भर नीद नही आयी।</strong></p>
<p><strong> जो सुबह सुबह शुरु हो गये हो। 2 पन्नो की कविता पे इतने मुग्ध हो गये हो।</strong></p>
<p><strong> क्या teaching profession से उब गये हो । क्या अपने आप को अशोक चक्रधर समघ रहे हो। </strong></p>
<p><strong>फ़ोक्ट मे ही अपने आप को हास्य कवि बोल रहे हो। </strong></p>
<p><strong>क्या घर का राशन कविता सुना के लाओगे। </strong></p>
<p><strong>हास्य सम्मेलन मे जा के अपनी कविता पे वाह वाहि पाओगे।</strong></p>
<p><strong> क्या लोगो से ताली बजवाओगे।</strong></p>
<p><strong> ओर घर वापिस खाली हाथ आयोगे। </strong></p>
<p><strong>छोटु की स्कूल फ़ीस भरनी हे। गेस का cylinder भी खाली हे।</strong></p>
<p><strong> घर मे राशन आज ओर कल का हे, 2 दिन बाद वो भी खाली हे।</strong></p>
<p><strong> कुछ सोचा हे या मन मे अभी भी दुविधा हे</strong></p>
<p><strong> कवि बनने का भूत उतरा या अभी भी सर पे चडा हे।</strong></p>
<p><strong> कुछ तो भविष्य के बारे मे सोचो। ओर हास्य कवि बनना छोडो।</strong></p>
<p><strong> 2-4 साल बाद retired हो जाओगे। ओर आधी pension ही घर लाओगे।</strong></p>
<p><strong> मेह्गैई का inflation ऐसे ही बढता जायेगा।</strong></p>
<p><strong> ओर रुप्या dollar के आगे गिरता जायेगा।</strong></p>
<p><strong> आलु प्याज का दाम युन्ही बढता जायेगा।</strong></p>
<p><strong> क्या तब तुम्हारा घर हास्य कवीता से चल पायेगा।</strong></p>
<p><strong> तुम तो चले जाओगे कवि सम्मेलन मे्। ओर गुद गुदा आओगे सभी को कवि सम्मेलन मे्। </strong></p>
<p><strong>चन्द तालीयो की आवाज़ ओर वाह वाहि से खुश हो जाओगे कवि सम्मेलन मे्।</strong></p>
<p><strong>पर घर से गरिबी ओर मेहन्गैइ का दानव ले जाओगे कवि सम्मेलन मे्।</strong></p>
<p><strong> इस सच्चाई से कब तक भाग पाओगे।</strong></p>
<p><strong> ओर life insurance कहा से कर पाओगे। </strong></p>
<p><strong>बुढापे मे जब लाठी चाहीये होगी</strong></p>
<p><strong> तो premium कहाँ से लाओगे।</strong></p>
<p><strong> हास्य कवि का ज़नुन छोडो ओर अधयापक ही रहो।</strong></p>
<p><strong> बच्चो का भविष्य सुधारो। </strong></p>
<p><strong>ओर घर मे राशन तो भरो। </strong></p>
<p><strong>कविता बाद मे लिख लेना। </strong></p>
<p><strong>अभी तो घर मे ध्यान धरो। </strong></p>
<p><strong>खाली वक़्त मे तुम पढ लेना। </strong></p>
<p><strong>अभी मेरे साथ चलो। </strong></p>
<p><strong>अभी मेरे साथ चलो।</strong></p>
<p><strong>by Rohit Sharma</strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[An Interview with GOD. ]]></title>
<link>http://gyandotcom.wordpress.com/?p=90</link>
<pubDate>Fri, 21 Mar 2008 09:16:06 +0000</pubDate>
<dc:creator>gyandotcom by Rohit Sharma</dc:creator>
<guid>http://gyandotcom.wordpress.com/?p=90</guid>
<description><![CDATA[
An Interview With God by Rohit Sharma
1 day i met with an accident. on the hospital bed thinking ]]></description>
<content:encoded><![CDATA[<p><b><font size="2" face="Verdana"></p>
<p align="left"><font size="5" color="#990066" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"><b>An Interview With God by Rohit Sharma</b></font><font size="2" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"></p>
<p><b>1 day i met with an accident. on the hospital bed thinking why this happned to me. why not God come and save me where is he i will ask him and </b></font><font size="2" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"><b>I had an INTERVIEW WITH GOD.</p>
<p>"So, you would like to interview me?" GOD asked.</p>
<p>"If you have time," I said.</p>
<p>GOD smile. "My time is eternity... what questions do you have in mind for me?"</p>
<p>"What surprises you the most about humankind?"</p>
<p>GOD answered...</p>
<p>"That they get bored with childhood, that they rush to grow up, and then long to be children again."</p>
<p>"That they lose their health to make money... and then lose their money to restore their health."</p>
<p>"That by thinking anxiously about the future, they forget the present, such that they live in neither the present nor the future."</p>
<p>"That they live as if they would never die, and die as though they had never lived."</p>
<p>GOD's hand took mine... and we were silent for a while.</p>
<p>And then I asked, "As a parent, what are some of life's lessons you want your children to learn?"</p>
<p>GOD replied, "To learn they cannot make anyone love them. All they can do is let themselves be loved."</p>
<p>"To learn that it is not good to compare themselves to others."</p>
<p>"To learn to forgive by practicing forgiveness."</p>
<p>"To learn that it only takes a few seconds to open profound wounds in those they love, and it can take many years to heal them."</p>
<p>"To learn that a rich person is not one who has the most, but is one who needs the least."</p>
<p>"To learn that there are people who love them dearly, but simply do not yet know how to express or show their feelings."</p>
<p>"To learn that two people can look at the same thing, and see it differently."</p>
<p>"To learn that it is not enough that they forgive one another, but they must also forgive themselves."</p>
<p>"Thank you for your time," I said humbly.</p>
<p>"Is there anything else you would like your children to know?"</p>
<p>GOD smiled, and said... "Just know that I am here." "Always for you my dear child, love you."</b></font>
</p>
<p align="left"><font face="Arial">and he disappear some where in the thoughts of my mind.</font></p>
<p></font></b></p>
<p align="center"><b><font size="2" face="Verdana"><a name="The Window"></a>The Window" (Author:-Rohit Sharma)</font></b></p>
<p><b><font size="2" face="Verdana">Two men, both seriously ill, occupied the same hospital room. One man  was allowed to sit up in his bed for an hour a day to drain the fluids from his lungs. His bed was next to the room's only window. The other man had to spend all his time flat on his back.</font></b></p>
<p><b><font size="2" face="Verdana">The men talked for hours on end. They spoke of their wives and   families, their homes, their jobs, their involvement in the military  service, where they had been on vacation. And every afternoon when the  man in the bed next to the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window.</font></b></p>
<p><b><font size="2" face="Verdana">The man in the other bed would live for those one-hour periods where  his world would be broadened and enlivened by all the activity and  color of the outside world. The window overlooked a park with a lovely lake, the man had said. Ducks and swans played on the water while  children sailed their model boats. Lovers walked arm in arm amid flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance. As the man by the window described all this in exquisite  detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.</font></b></p>
<p><b><font size="2" face="Verdana">One warm afternoon the man by the window described a parade passing by.  Although the other man could not hear the band, he could see it in his mind's eye as the gentleman by the window p