<feed xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US">
    <title>Uday's Blog</title>
    <link rel="self" type="application/xml" href="http://geekswithblogs.net/uday/Atom.aspx" />
    <subtitle type="html">'Whatever you are, be a good one' -Abraham Lincoln </subtitle>
    <id>http://geekswithblogs.net/uday/Default.aspx</id>
    <author>
        <name>Uday K Verma</name>
        <uri>http://geekswithblogs.net/uday/Default.aspx</uri>
    </author>
    <generator uri="http://subtextproject.com" version="Subtext Version 0.0.0.0">Subtext</generator>
    <updated>2005-10-13T18:23:49Z</updated>
    <entry>
        <title>Programmatically changing MSN Messenger's status</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/uday/archive/2005/10/13/56878.aspx" />
        <id>http://geekswithblogs.net/uday/archive/2005/10/13/56878.aspx</id>
        <published>2005-10-13T18:24:00-05:00:00</published>
        <updated>2005-10-13T18:24:00Z</updated>
        <content type="html">Here's how you can do it.

http://forums.msnfanatic.com/index.php?showtopic=11226&lt;img src="http://geekswithblogs.net/uday/aggbug/56878.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/uday/comments/56878.aspx</wfw:comment>
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/uday/comments/commentRss/56878.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/uday/services/trackbacks/56878.aspx</trackback:ping>
    </entry>
    <entry>
        <title>Programmatically changing Yahoo Messenger's status</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/uday/archive/2005/10/11/56651.aspx" />
        <id>http://geekswithblogs.net/uday/archive/2005/10/11/56651.aspx</id>
        <published>2005-10-11T21:10:00-05:00:00</published>
        <updated>2005-10-11T21:19:00Z</updated>
        <content type="html">&lt;P&gt;&lt;FONT face=Tahoma size=2&gt;Alright, I'd been looking for this stuff for a while. I couldn't find any useful resources on the internet so thought of giving it a try to find out how its actually done. Thought people like me would be interested in knowing.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Tahoma size=2&gt;Seems like we need to setup a custom message in registry and notify yahoo of this change we've made. We need to set the &amp;#8220;HKCU\Software\Yahoo\Pager\Profiles\[current user]&lt;CURRENT user&gt;\Custom Msgs\5&amp;#8221; to our new status message and send WM_COMMAND message with wParam set to 392 (write me a mail if you need to know how I figured this out) to the yahoo messenger's main window(see the code snippet below to see how current user is retrieved).&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Tahoma size=2&gt;Here is how you can do it in C#(I guess you can figure out the PInvoke declarations)&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'"&gt;private&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt; &lt;SPAN style="COLOR: blue"&gt;void&lt;/SPAN&gt; ChangeYahooStatus (&lt;SPAN style="COLOR: blue"&gt;string&lt;/SPAN&gt; newStatus)&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt;{&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;// Get the current signed in user&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;//&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt;RegistryKey keyYahooPager = Registry.CurrentUser.OpenSubKey ("Software\\Yahoo\\Pager");&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'"&gt;string&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt; sUserName = (&lt;SPAN style="COLOR: blue"&gt;string&lt;/SPAN&gt;)keyYahooPager.GetValue ("Yahoo! User ID");&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt;keyYahooPager.Close();&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt;System.Diagnostics.Debug.WriteLine ("The currently logged in user is " + sUserName); &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;// Now open the current user's profile and set the current status message, pass true to&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;// OpenSubKey to request write access&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt;RegistryKey keyYahooCustomMessages = Registry.CurrentUser.OpenSubKey ("Software\\Yahoo\\Pager\\profiles\\" &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt;+ sUserName + "\\Custom Msgs", &lt;SPAN style="COLOR: blue"&gt;true&lt;/SPAN&gt;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;// Set the 5th message, seems like yahoo messenger has the functionality to move the newly set&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;// message up as the first one.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt;keyYahooCustomMessages.SetValue ("5", newStatus);&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt;keyYahooCustomMessages.Close ();&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;// We are done setting the value in the registry. We now need to notify y! of this change&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;//&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;// Find the yahoo messenger window and sent it the notification&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;// 0x111: WM_COMMAND&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: green; FONT-FAMILY: 'Courier New'"&gt;// 0x188: Code 392&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt;IntPtr hWndY = FindWindow ("YahooBuddyMain", &lt;SPAN style="COLOR: blue"&gt;null&lt;/SPAN&gt;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt;System.Diagnostics.Debug.WriteLine ("Find window got: " + hWndY.ToString());&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt;PostMessage (hWndY, 0x111, 0x188, 0);&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Courier New'"&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://geekswithblogs.net/uday/aggbug/56651.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/uday/comments/56651.aspx</wfw:comment>
        <slash:comments>23</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/uday/comments/commentRss/56651.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/uday/services/trackbacks/56651.aspx</trackback:ping>
    </entry>
    <entry>
        <title>OpenGL shaders in software</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/uday/archive/2005/07/05/45441.aspx" />
        <id>http://geekswithblogs.net/uday/archive/2005/07/05/45441.aspx</id>
        <published>2005-07-05T19:59:00-05:00:00</published>
        <updated>2005-07-05T20:02:00Z</updated>
        <content type="html">&lt;P&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;I had been desperately looking for some software emulation for ARB Vertex/Fragment programs in OpenGL for&amp;nbsp;a past few days. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;I have a pretty shitty display chip on my notebook, ATI 345 IGP. Well, not all that shitty though, it does support vs 1.1 in hardware. However, the OpenGL driver that I presently have doesn't export a vertex program extension (is it expected to?).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;So, in search&amp;nbsp;for vertex/fragment programs software emulation, I found &lt;/SPAN&gt;&lt;A href="http://www.mesa3d.org/"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;MESA&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;. I had previously ignored &lt;?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /&gt;&lt;st1:place w:st="on"&gt;&lt;st1:City w:st="on"&gt;MESA&lt;/st1:City&gt;&lt;/st1:place&gt; as software emulation stuff&amp;nbsp;for OpenGL(who needs it anyways, I have real hardware!), but now it bounced back again into my head. The current version 6.2.1 supports ARB_vertex_program and ARB_fragment_program. I ran a test application with it&amp;nbsp;yesterday and it seemed to be running great (I just ran a vertex program, not sure about fragment programs yet). I'll be looking forward&amp;nbsp;to &lt;st1:City w:st="on"&gt;&lt;st1:place w:st="on"&gt;MESA&lt;/st1:place&gt;&lt;/st1:City&gt; coming out with ARB_vertex_program_100. I&amp;nbsp;would then be able to&amp;nbsp;try out some GLSL with it, but well, Cg is working fine for me at the moment and I hope to have a better machine sometime soon.&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://geekswithblogs.net/uday/aggbug/45441.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/uday/comments/45441.aspx</wfw:comment>
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/uday/comments/commentRss/45441.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/uday/services/trackbacks/45441.aspx</trackback:ping>
    </entry>
    <entry>
        <title>Batman Begins</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/uday/archive/2005/06/27/44806.aspx" />
        <id>http://geekswithblogs.net/uday/archive/2005/06/27/44806.aspx</id>
        <published>2005-06-27T09:02:00-05:00:00</published>
        <updated>2005-06-27T09:02:00Z</updated>
        <content type="html">&lt;P&gt;&lt;FONT face=Tahoma size=2&gt;Went for Batman Begins last night. Amazing movie! Very different from the earlier ones. Well placed, well directed, well executed.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Tahoma size=2&gt;Must watch!&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://geekswithblogs.net/uday/aggbug/44806.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/uday/comments/44806.aspx</wfw:comment>
        <slash:comments>1</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/uday/comments/commentRss/44806.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/uday/services/trackbacks/44806.aspx</trackback:ping>
    </entry>
    <entry>
        <title>Fried Hardisk</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/uday/archive/2005/06/26/44754.aspx" />
        <id>http://geekswithblogs.net/uday/archive/2005/06/26/44754.aspx</id>
        <published>2005-06-26T13:16:00-05:00:00</published>
        <updated>2005-06-26T13:16:00Z</updated>
        <content type="html">&lt;FONT face=Tahoma size=2&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;Just recently I got my notebook's harddisk fried. I don't know what happened to it. Just suddenly stopped working. I had already applied for an extended warranty on my notebook so I got it replaced all for free.&amp;nbsp;HP returned my notebook with an all new bios and cleaned the screen for me, which I always find a pain. It feels so new to me now. I am in love again.&lt;/SPAN&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;Had been downloading software for past&amp;nbsp;two days now. I have the MSDN download subscription, so starting from Windows&amp;nbsp;XP to Visual Studio.NET to MS Office all downloaded in a couple of days. But this time I am burning the software to disks; don't want to do this again in case something else gets fried. I have my fingers crossed though.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://geekswithblogs.net/uday/aggbug/44754.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/uday/comments/44754.aspx</wfw:comment>
        <slash:comments>1</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/uday/comments/commentRss/44754.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/uday/services/trackbacks/44754.aspx</trackback:ping>
    </entry>
    <entry>
        <title>Blender3D</title>
        <link rel="self" type="text/html" href="http://geekswithblogs.net/uday/archive/2005/06/23/44447.aspx" />
        <id>http://geekswithblogs.net/uday/archive/2005/06/23/44447.aspx</id>
        <published>2005-06-23T01:55:00-05:00:00</published>
        <updated>2005-06-23T01:57:00Z</updated>
        <content type="html">&lt;P&gt;&lt;FONT face=Tahoma size=2&gt;Seems like a pretty cool tool. Lightweigth(4.78MB) and feature-packed, this tools can really let you create some amazing models and scenes. Check &lt;/FONT&gt;&lt;A href="http://www.blender.org"&gt;&lt;FONT face=Tahoma size=2&gt;www.blender.org&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;FONT face=Tahoma&gt;. &lt;A href="http://www.gamedev.net"&gt;GameDev.net &lt;/A&gt;has recently come up with &amp;#8220;&lt;SPAN class=maintext4 style="COLOR: #9999ff"&gt;&lt;FONT color=#000000&gt;Using Blender to Make Game Models &amp;#8220; series of tutorials which seem to be very descriptive and with a lot of screenshots :). You can, however, order the entire tutorial guide for 39 Euros from blender itself.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&lt;FONT face=Tahoma&gt;&lt;SPAN class=maintext4 style="COLOR: #9999ff"&gt;&lt;FONT color=#000000&gt;Another tool I like playing around with is gmax. The younger brother of 3DMax, this tool is aimed at game developers. I haven't been able to look to deep into it, but I believe I would be more comfortable using it since I have a bit of experience with 3DMax.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&lt;FONT face=Tahoma&gt;&lt;SPAN class=maintext4 style="COLOR: #9999ff"&gt;&lt;FONT color=#000000&gt;Do check these tools out.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://geekswithblogs.net/uday/aggbug/44447.aspx" width="1" height="1" /&gt;</content>
        <wfw:comment>http://geekswithblogs.net/uday/comments/44447.aspx</wfw:comment>
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://geekswithblogs.net/uday/comments/commentRss/44447.aspx</wfw:commentRss>
        <trackback:ping>http://geekswithblogs.net/uday/services/trackbacks/44447.aspx</trackback:ping>
    </entry>
</feed>
