<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Fundamental Provocation &#187; Technology</title> <atom:link href="http://www.ajaymatharu.com/category/technology/feed/" rel="self" type="application/rss+xml" /><link>http://www.ajaymatharu.com</link> <description>Blog by Ajay Matharu</description> <lastBuildDate>Sun, 06 Nov 2011 15:09:39 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>How to prevent image from caching in javascript</title><link>http://www.ajaymatharu.com/how-to-prevent-image-from-caching-in-javascript/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-prevent-image-from-caching-in-javascript</link> <comments>http://www.ajaymatharu.com/how-to-prevent-image-from-caching-in-javascript/#comments</comments> <pubDate>Thu, 24 Feb 2011 16:01:35 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Browsers]]></category> <category><![CDATA[Javascript]]></category> <category><![CDATA[JQuery]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Web]]></category> <category><![CDATA[Clear image cache in browser]]></category> <category><![CDATA[Image Cache in browser]]></category> <category><![CDATA[Image Caching]]></category> <category><![CDATA[Image caching in Javascript]]></category> <category><![CDATA[javascript code to clear image cache in browser]]></category> <category><![CDATA[Javascript code to prevent image caching]]></category> <category><![CDATA[Javascript to prevent image cache]]></category> <category><![CDATA[Prevent image cache]]></category> <category><![CDATA[Prevent Image Caching]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=2602</guid> <description><![CDATA[Many a times when we replace the image with the same name, browser still picks up the old one. Almost every developer faces this issue, then he asks the person to clear the cache by ctrl + F5 or any other means. But is this the solution? No, So what can we do in this [...]]]></description> <content:encoded><![CDATA[<p>Many a times when we replace the image with the same name, browser still picks up the old one. Almost every developer faces this issue, then he asks the person to clear the cache by ctrl + F5 or any other means. But is this the solution?</p><p>No, So what can we do in this case? There are two solutions,</p><p>1 &#8211; rename the new image and change the image name in code. But for a dot net developer this is pain because he may have to republish the code and send an upload of the dll again. And giving an upload of dll because of change in image is foolishness, ain&#8217;t it?</p><p>2 &#8211; Another solution is to write a javascript code so that the browser does not pick up image from the cache and loads it everytime. Following is the sample code of how you can try this,</p><pre name="code" class="javascript">
document.getElementById('myimg').src = document.getElementById('myimd').src + '?' + (new Date()).getTime();
</pre><p>You need to make sure this code runs after page has loaded else, it will give an error if that image tag is not yet rendered.</p><p>In JQuery for single image code will be</p><pre name="code" class="javascript">
$(document).ready(function(){
$("#myimg").attr('src',$(this).src + '?' + (new Date()).getTime());
});
</pre><p>For all the images</p><pre name="code" class="javascript">
$(document).ready(function(){
jQuery('img').each(function(){
jQuery(this).attr('src',jQuery(this).attr('src')+ '?' + (new Date()).getTime());
});
});
</pre><p>Hope this helps. If you have any more idea please share it with us by dropping a comment.</p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/how-to-prevent-image-from-caching-in-javascript/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>New Google design like Bing</title><link>http://www.ajaymatharu.com/new-google-design-like-bing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-google-design-like-bing</link> <comments>http://www.ajaymatharu.com/new-google-design-like-bing/#comments</comments> <pubDate>Thu, 06 May 2010 18:48:29 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Search Engine]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Bing Vs Google]]></category> <category><![CDATA[Design of google]]></category> <category><![CDATA[Google design]]></category> <category><![CDATA[Google design similar to bing]]></category> <category><![CDATA[Google New Design]]></category> <category><![CDATA[Google Vs Bing]]></category> <category><![CDATA[Google vs Microsoft]]></category> <category><![CDATA[Microsoft vs Google]]></category> <category><![CDATA[New design of google]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=2299</guid> <description><![CDATA[I just came across Google&#8217;s new design. I was wondering I have seen this design somewhere so I just opened Bing to compare the design and what I saw was shocking. Google has mimicked Bing&#8217;s design. Here is Google&#8217;s New Design And here is the Bing&#8217;s Design Google didn&#8217;t checked the Bing&#8217;s design? or Google [...]]]></description> <content:encoded><![CDATA[<p>I just came across Google&#8217;s new design. I was wondering I have seen this design somewhere so I just opened Bing to compare the design and what I saw was shocking. Google has mimicked Bing&#8217;s design.</p><p>Here is Google&#8217;s New Design<br /><div id="attachment_2302" class="wp-caption aligncenter" style="width: 610px"><img src="http://www.ajaymatharu.com/wp-content/uploads/2010/05/Google2.png" alt="Google's New Design" title="Google's New Design" width="600" height="410" class="size-full wp-image-2302" /><p class="wp-caption-text">Google's New Design</p></div></p><p>And here is the Bing&#8217;s Design<br /><div id="attachment_2303" class="wp-caption aligncenter" style="width: 610px"><img src="http://www.ajaymatharu.com/wp-content/uploads/2010/05/bing.png" alt="Bing&#039;s Design" title="Bing&#039;s Design" width="600" height="350" class="size-full wp-image-2303" /><p class="wp-caption-text">Bing's Design</p></div></p><p>Google didn&#8217;t checked the Bing&#8217;s design? or Google liked the Bing&#8217;s design so much? <img src='http://www.ajaymatharu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> What&#8217;s your say on this?</p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/new-google-design-like-bing/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Insert data from XML in SQL</title><link>http://www.ajaymatharu.com/insert-data-from-xml-in-sql/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=insert-data-from-xml-in-sql</link> <comments>http://www.ajaymatharu.com/insert-data-from-xml-in-sql/#comments</comments> <pubDate>Fri, 26 Mar 2010 04:56:37 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Microsoft]]></category> <category><![CDATA[SQL]]></category> <category><![CDATA[Insert xml in sql]]></category> <category><![CDATA[Multiple Records]]></category> <category><![CDATA[OpenXML]]></category> <category><![CDATA[SQL with XML]]></category> <category><![CDATA[xml format]]></category> <category><![CDATA[XML in SQL]]></category> <category><![CDATA[XML with SQL]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=2188</guid> <description><![CDATA[Its been very long since I have written any technical post. So here I am, with small example of how to insert data from XML into SQL. This is extremely helpful if you want to insert multiple records in one go into SQL, you just need to create the XML and pass it to SQL. [...]]]></description> <content:encoded><![CDATA[<p>Its been very long since I have written any technical post. So here I am, with small example of how to insert data from XML into SQL. This is extremely helpful if you want to insert multiple records in one go into SQL, you just need to create the XML and pass it to SQL. SQL will fetch the data from the XML and save it into its tables you have mapped.</p><p>Just to demonstrate I am creating a sample table. Since it is sample I have not created any Primary Key on it.</p><pre class="sql" name="code">CREATE TABLE [dbo].[Employees](
	[EmpId] [int] NOT NULL,
	[FirstName] [varchar](50) NULL,
	[Dept] [varchar](50) NULL
)
</pre><p><br/><br /> Once table has been created you are ready to insert data into it,</p><pre class="sql" name="code">declare @TestDoc int
declare @TestDoc int
exec sp_xml_preparedocument @TestDoc output,
N'<Root>
<Employees Dept="Marketing">
<Employee EmpID="1231" FirstName="Ethan"></Employee>
<Employee EmpID="1232" FirstName="Ashish"></Employee>
</Employees>
<Employees Dept="IT">
<Employee EmpID="1241" FirstName="Ajay"></Employee>
<Employee EmpID="1242" FirstName="Rahul"></Employee>
</Employees>
<Employees Dept="DBA">
<Employee EmpID="1251" FirstName="AJ"></Employee>
<Employee EmpID="1251" FirstName="Nilesh"></Employee>
</Employees>
</Root>'
insert into employees(empid, firstname, dept)
select empid, firstname, dept
from openxml(@TestDoc, N'/Root/Employees/Employee')
With (EmpId varchar(5) '@EmpID',
    FirstName varchar(10) '@FirstName',
    Dept varchar(10) '../@Dept')
exec sp_xml_removedocument @TestDoc
</pre><p><br/><br /> Alternatively, you can change your XML format like this,</p><pre class="sql" name="code">
declare @TestDoc int
exec sp_xml_preparedocument @TestDoc output,
N'<Root>
<Employees Dept="Marketing">
<Employee EmpID="1231">Ethans</Employee>
<Employee EmpID="1232">Ajay</Employee>
</Employees>
<Employees Dept="IT">
<Employee EmpID="1241">Rahul</Employee>
<Employee EmpID="1242">Sneha</Employee>
</Employees>
<Employees Dept="DBA">
<Employee EmpID="1251">Nilesh</Employee>
<Employee EmpID="1251">Matharu</Employee>
</Employees>
</Root>'
select *
from openxml(@TestDoc, N'/Root/Employees/Employee')
With (EmpId varchar(5) '@EmpID',
    FirstName varchar(10) '.',
    Dept varchar(10) '../@Dept')
exec sp_xml_removedocument @TestDoc
</pre><p><br/></p><p>If you want to fetch your existing data from SQL in XML format,<br /> With values as attributes,</p><pre class="sql" name="code">select * from employees
for xml auto
</pre><p><br/><br /><div id="attachment_2189" class="wp-caption aligncenter" style="width: 574px"><img class="size-full wp-image-2189" title="Output Data as Attributes" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/Data-as-attribute.png" alt="Output Data as Attributes" width="564" height="119" /><p class="wp-caption-text">Output Data as Attributes</p></div><br /> <br/><br /> With values as elements,</p><pre class="sql" name="code">select * from employees
for xml auto, elements
</pre><p><br/><br /><div id="attachment_2190" class="wp-caption aligncenter" style="width: 319px"><img class="size-full wp-image-2190" title="Output Data as Elements" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/data-as-elements.png" alt="Output Data as Elements" width="309" height="519" /><p class="wp-caption-text">Output Data as Elements</p></div></p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/insert-data-from-xml-in-sql/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Tools to improve your productivity</title><link>http://www.ajaymatharu.com/tools-to-improve-your-productivity/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tools-to-improve-your-productivity</link> <comments>http://www.ajaymatharu.com/tools-to-improve-your-productivity/#comments</comments> <pubDate>Tue, 23 Mar 2010 10:56:46 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Productivity]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Clipboard manager]]></category> <category><![CDATA[Ditto]]></category> <category><![CDATA[Ditto clipboard manager]]></category> <category><![CDATA[Humanized Enso]]></category> <category><![CDATA[tools to improve productivity]]></category> <category><![CDATA[Windows Productive tools]]></category> <category><![CDATA[Windows Tools]]></category> <category><![CDATA[Zapnotes]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=2169</guid> <description><![CDATA[Day before I posted about Firefox addons to improve your productivity here are some Windows OS tools which you can use to improve your productivity. I use it on daily basis and love using it Enso You just hold down the Caps Lock key and type an Enso command, which is displayed in a translucent [...]]]></description> <content:encoded><![CDATA[<p>Day before I posted about <a href="../firefox-addons-to-improve-your-productivity/">Firefox addons to improve your productivity</a> here are some Windows OS tools which you can use to improve your productivity. I use it on daily basis and love using it <img src='http://www.ajaymatharu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p><a href="http://humanized.com/enso/">Enso</a></p><div id="attachment_2206" class="wp-caption aligncenter" style="width: 458px"><img class="size-full wp-image-2206" title="Humanizedenso" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/Humanizedenso.jpg" alt="Humanized Enso" width="448" height="200" /><p class="wp-caption-text">Humanized Enso</p></div><p>You just hold down the Caps Lock key and type an Enso command, which is displayed in a translucent overlay. Once the command is typed, you simply release the Caps Lock key to activate it, and the overlay disappears. If you type fast, it all happens in a flash. For instance, to launch the Firefox Web browser, you just hold down the Caps Lock key and type &#8220;open firefox.&#8221; To look up the meaning of the word &#8220;proclivity,&#8221; you just hold down the Caps Lock key and type &#8220;define proclivity.&#8221;</p><p><a href="http://zapnotes.demarque.com/en/">ZapNotest</a></p><div id="attachment_2173" class="wp-caption aligncenter" style="width: 532px"><img class="size-full wp-image-2173" title="Zapnotes" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/zapnotes.png" alt="" width="522" height="481" /><p class="wp-caption-text">Zapnotes</p></div><p style="text-align: center;"><ul><li>ZapNotes automatically saves content every minute unless you deactivate the automatic save feature in the &#8220;Options&#8221; menu.</li><li>The content of ZapNotes is never erased, unless you use the &#8220;New&#8221; option in the &#8220;File&#8221; menu.</li><li>You can export ZapNotes content to another file using the &#8220;Export&#8221; option in the &#8220;File&#8221; menu.</li></ul><p><a href="http://ditto-cp.sourceforge.net/">Ditto Clipboard Manager</a></p><div id="attachment_2171" class="wp-caption aligncenter" style="width: 441px"><img class="size-full wp-image-2171" title="Ditto Clipboard Manager" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/Ditto_crp.png" alt="" width="431" height="380" /><p class="wp-caption-text">Ditto Clipboard Manager</p></div><p style="text-align: center;"><ul><li>Search and paste previous copy entries</li><li><strong>Keep multiple computer&#8217;s clipboards in sync</strong></li><li>Data is encrypted when sent over the network</li><li>Accessed from tray icon or global hot key</li><li>Select entry by double click, enter key or drag drop</li><li>Paste into any window that excepts standard copy/paste entries</li><li>Display thumbnail of copied images in list</li></ul> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/tools-to-improve-your-productivity/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>GodMode in Windows 7</title><link>http://www.ajaymatharu.com/godmode-in-windows-7/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=godmode-in-windows-7</link> <comments>http://www.ajaymatharu.com/godmode-in-windows-7/#comments</comments> <pubDate>Mon, 22 Mar 2010 10:28:44 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[GodMode in Windows 7]]></category> <category><![CDATA[Windows 7 and GodMode]]></category> <category><![CDATA[Windows 7 GodMode]]></category> <category><![CDATA[windows7]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=2183</guid> <description><![CDATA[Windows 7 is really awesome. I am loving Windows 7. It has got lots of features one of the most awesome feature I found was the GodMode In windows 7. GodMode in Windows 7 contains all the settings options. It is one place stop for all the setting in Windows 7. To activate this feature [...]]]></description> <content:encoded><![CDATA[<p>Windows 7 is really awesome. I am loving Windows 7. It has got lots of features one of the most awesome feature I found was the GodMode In windows 7.</p><p>GodMode in Windows 7 contains all the settings options. It is one place stop for all the setting in Windows 7.</p><div id="attachment_2185" class="wp-caption aligncenter" style="width: 710px"><img class="size-full wp-image-2185" title="Windows 7 GodMode" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/Godmode11.png" alt="Windows 7 GodMode" width="700" height="407" /><p class="wp-caption-text">Windows 7 GodMode</p></div><p>To activate this feature follow the following steps,</p><ul><li>Create a folder named GodMode in any drive</li><li>Rename the folder and append &#8220;.{ED7BA470-8E54-465E-825C-99712043E01C}&#8221; (without quotes)</li><li>Renamed folder name should look like &#8220;GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}&#8221;</li><li>Once you rename it the folder icon will be changed and the folder will be renamed to GodMode.</li></ul><div id="attachment_2186" class="wp-caption aligncenter" style="width: 645px"><img class="size-full wp-image-2186" title="GodMode in Windows7" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/GodMode.png" alt="GodMode in Windows7" width="635" height="119" /><p class="wp-caption-text">GodMode in Windows7</p></div><p>Some other strings which you can use after period (.)</p><p>{00C6D95F-329C-409a-81D7-C46C66EA7F33}<br /> {0142e4d0-fb7a-11dc-ba4a-000ffe7ab428}<br /> {025A5937-A6BE-4686-A844-36FE4BEC8B6D}<br /> {05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}<br /> {1206F5F1-0569-412C-8FEC-3204630DFB70}<br /> {15eae92e-f17a-4431-9f28-805e482dafd4}<br /> {17cd9488-1228-4b2f-88ce-4298e93e0966}<br /> {1D2680C9-0E2A-469d-B787-065558BC7D43}<br /> {1FA9085F-25A2-489B-85D4-86326EEDCD87}<br /> {208D2C60-3AEA-1069-A2D7-08002B30309D}<br /> {20D04FE0-3AEA-1069-A2D8-08002B30309D}<br /> {2227A280-3AEA-1069-A2DE-08002B30309D}<br /> {241D7C96-F8BF-4F85-B01F-E2B043341A4B}<br /> {4026492F-2F69-46B8-B9BF-5654FC07E423}<br /> {62D8ED13-C9D0-4CE8-A914-47DD628FB1B0}<br /> {78F3955E-3B90-4184-BD14-5397C15F1EFC}</p><p>Happy exploring Windows 7</p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/godmode-in-windows-7/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Court Reaffirms I4i&#8217;s Patent Win Against Microsoft</title><link>http://www.ajaymatharu.com/court-reaffirms-i4is-patent-win-against-microsoft/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=court-reaffirms-i4is-patent-win-against-microsoft</link> <comments>http://www.ajaymatharu.com/court-reaffirms-i4is-patent-win-against-microsoft/#comments</comments> <pubDate>Mon, 15 Mar 2010 08:59:56 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[i4i patent]]></category> <category><![CDATA[i4i vs microsoft]]></category> <category><![CDATA[i4i vs microsoft word]]></category> <category><![CDATA[microsoft employees]]></category> <category><![CDATA[patented technology]]></category> <category><![CDATA[u s federal court]]></category> <category><![CDATA[versions of microsoft word]]></category> <category><![CDATA[xml documents]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=2122</guid> <description><![CDATA[VS The U.S. Federal Court of Appeals has once again upheld a jury&#8217;s verdict that Microsoft willfully infringed on patents awarded to i4i. The verdict, which the appeals court first affirmed in December, required Microsoft to pay more than US$240 million in damages and forced it to remove a feature in versions of Microsoft Word [...]]]></description> <content:encoded><![CDATA[<div><div class="wp-caption alignleft" style="width: 210px"><img title="I4I" src="http://ajaymatharu.files.wordpress.com/2010/03/i4i.jpg" alt="I4I" width="200" height="200" /><p class="wp-caption-text">I4I</p></div><div class="wp-caption alignright" style="width: 210px"><img title="Microsoft" src="http://ajaymatharu.files.wordpress.com/2010/03/officeword.png" alt="Microsoft Word" width="200" height="200" /><p class="wp-caption-text">Microsoft Word</p></div><p><strong style="font-size: 72px;position:relative;top:100px;left:15px"> VS</strong></p></div><div style="clear: both;"><p>The U.S. Federal Court of Appeals has once again upheld a jury&#8217;s verdict that Microsoft willfully infringed on patents awarded to i4i.</p><p>The verdict, which the appeals court first affirmed in December, required Microsoft to pay more than US$240 million in damages and forced it to remove a feature in versions of Microsoft Word 2007 starting in January. Microsoft had been charged with infringing a patent owned by i4i with a feature in Word 2003 and 2007 that lets people create custom XML documents.</p><p>Microsoft asked the appeals court to reconsider its decision, and on Wednesday the appeals court upheld its previous affirmation of the district court ruling. Much of the latest decision is identical to the December document, except for an expanded explanation of the three-judge panel&#8217;s decision to uphold the &#8220;willfulness&#8221; issue.</p><p>&#8220;A reasonable jury could have concluded that Microsoft &#8216;willfully&#8217; infringed the &#8217;449 patent based on the evidence presented at trial,&#8221; the judges wrote. The decision pointed to evidence presented at the trial showing that Microsoft employees attended demonstrations of i4i software and received i4i sales kits that identified the software as patented technology. This piece of evidence and others imply that Microsoft was aware of the i4i patent, the decision says.</p><p>&#8220;Similarly, there is no evidence Microsoft ever made a good faith effort to avoid infringement; internal emails show Microsoft intended to render i4i&#8217;s product &#8216;obsolete&#8217; and assure &#8216;there won&#8217;t be a need for [i4i's] product,&#8217;&#8221; the judges wrote.</p><p>The panel will now circulate the document to the rest of the judges on the appeals court, who will decide whether to take up Microsoft&#8217;s request for an en banc review. If they do, that would mean that all 12 appeals court judges will reconsider the case.</p><p>There is no set time frame for the court to decide if it will accept the en banc request, but Loudon Owen, chairman of i4i, expects the court to decide in the next four to six weeks.</p><p>If the judges decide against an en banc review, Microsoft can ask the Supreme Court to hear the case, Owen said.</p><p>He was pleased with Wednesday&#8217;s decision. &#8220;From our perspective, there are only so many more avenues for appeal for them,&#8221; he said. &#8220;It also resulted in an even more detailed and structured decision in our interest.&#8221;</p><p>Microsoft did not immediately reply to a request for comment.</p></div> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/court-reaffirms-i4is-patent-win-against-microsoft/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Apple asks court to ban Google Phones</title><link>http://www.ajaymatharu.com/apple-asks-court-to-ban-google-phones/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=apple-asks-court-to-ban-google-phones</link> <comments>http://www.ajaymatharu.com/apple-asks-court-to-ban-google-phones/#comments</comments> <pubDate>Thu, 04 Mar 2010 16:57:03 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Apple]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[Information]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[android vs iphone]]></category> <category><![CDATA[apple vs htc]]></category> <category><![CDATA[Google phone vs apple phone]]></category> <category><![CDATA[Google vs Apple]]></category> <category><![CDATA[iphone vs htc]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=2109</guid> <description><![CDATA[Apple on Tuesday asked the U.S. International Trade Commission to block the importation into the country of HTC&#8217;s Google Android-based mobile phones, including the Google-branded Nexus One. Apple asked the court for &#8220;a permanent exclusion order&#8221; that would bar from entry &#8220;all mobile communications devices and components&#8221; made by HTC that carry the offending technologies, [...]]]></description> <content:encoded><![CDATA[<p>Apple on Tuesday asked the U.S. International Trade Commission to block the importation into the country of HTC&#8217;s Google Android-based mobile phones, including the Google-branded Nexus One.</p><p>Apple asked the court for &#8220;a permanent exclusion order&#8221; that would bar from entry &#8220;all mobile communications devices and components&#8221; made by HTC that carry the offending technologies, according to court documents.</p><p>Apple on Tuesday sued HTC for alleged, multiple patent violations, claiming the Taiwan-based manufacturer&#8217;s products infringe on its iPhone technology. Apple filed the actions with the ITC and the U.S. District Court for Delaware.</p><p>In the ITC filing, Apple says 11 HTC phones violate its patents, including the Nexus One, Touch Pro, Touch Diamond, Pure, Imagio, and myTouch 3G. Apple claims HTC infringed on a total of 20 patents governing a range of technologies.</p><p>Apple wants the ITC to block HTC and its partners from &#8220;importing, marketing, advertising, demonstrating, warehousing inventory for distribution, distributing, offering for sale&#8221; any of the listed phones.</p><p>Apple is also seeking unspecified monetary damages in the Delaware court.</p><p>&#8220;We can sit by and watch competitors steal our patented inventions, or we can do something about it. We&#8217;ve decided to do something about it,&#8221; said Apple CEO Steve Jobs, in a statement. &#8220;We think competition is healthy, but competitors should create their own technology, not steal ours,&#8221; said Jobs.</p><p>Patent suits are not uncommon in the ultra-competitive tech industry, but vendors generally take a low-key approach and let court documents speak for themselves. That Apple issued a press release featuring its high-profile CEO indicates the company views HTC&#8217;s alleged infringements as a serious competitive threat.</p><p>&#8220;Apple has been and continues to be damaged by defendants&#8217; infringement,&#8221; Apple said in its filing with the Delaware court. HTC has yet to file a formal response to the allegations.</p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/apple-asks-court-to-ban-google-phones/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Chinese company clones IPad</title><link>http://www.ajaymatharu.com/chinese-company-clones-ipad/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=chinese-company-clones-ipad</link> <comments>http://www.ajaymatharu.com/chinese-company-clones-ipad/#comments</comments> <pubDate>Tue, 02 Feb 2010 07:26:52 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Technology]]></category> <category><![CDATA[Apple IPad]]></category> <category><![CDATA[Chinese Clone of IPad]]></category> <category><![CDATA[chinese manufacturers]]></category> <category><![CDATA[Clone of IPad]]></category> <category><![CDATA[IPad chinese clone]]></category> <category><![CDATA[IPad clone]]></category> <category><![CDATA[technology events]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=2048</guid> <description><![CDATA[SHANGHAI : The unveiling of Apples iPad tablet computer was one of the most anticipated technology events in recent years, but a similar looking device has been on sale in China for nearly six months. The touchscreen iPad look-alike marks a new milestone by Chinese manufacturers: cloning a product before it had even been announced, [...]]]></description> <content:encoded><![CDATA[<p>SHANGHAI : The unveiling of Apples iPad tablet computer was one of the most anticipated technology events in recent years, but a similar looking device has been on sale in China for nearly six months.</p><p>The touchscreen iPad look-alike marks a new milestone by Chinese manufacturers: cloning a product before it had even been announced, mused Shanghaiist.com, a city blog, and Shanzhai.com, a tech blog dedicated to Chinese copies.</p><p>But Shenzhen Great Loong Brother Industrial Co makers of the Chinese device, which resembles an over-sized iPhone said Apple appeared to be the copycats.</p><p>We dont understand. Why did they make the same thing as us said Huang Xiaofang, an executive at the company.</p><p>The iPad-like P88 was launched in August and was on show last year at the Internationale Funkausstellung consumer electronics fair in Berlin, she said. We launched it earlier.</p><p>Although thicker and heavier than the iPad, the P88s specifications boasts a slightly larger screen, faster processor, larger memory and, unlike the iPad, has USB ports, according to the manufacturer.</p><p>But its battery life is only 1.5 hours compared to the iPads 10 hours. Apples first iPads will ship worldwide at an entry-level price of $499 (Rs 23,000 approx) in two months. But for gadget fanatics who cannot wait, Huang said the P88 is available now on Great Loong Brothers Web site.</p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/chinese-company-clones-ipad/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Opera Unite &#8211; Turn Your Computer Into Server</title><link>http://www.ajaymatharu.com/opera-unite-turn-your-computer-into-server/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=opera-unite-turn-your-computer-into-server</link> <comments>http://www.ajaymatharu.com/opera-unite-turn-your-computer-into-server/#comments</comments> <pubDate>Mon, 07 Dec 2009 18:07:42 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Browsers]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Web]]></category> <category><![CDATA[Opera]]></category> <category><![CDATA[opera beta application lists]]></category> <category><![CDATA[Opera Unite]]></category> <category><![CDATA[Opera Unite Applications]]></category> <category><![CDATA[opera unite beta]]></category> <category><![CDATA[Opera Unite Browser]]></category> <category><![CDATA[opera unite dashboard]]></category> <category><![CDATA[opera unite file sharing]]></category> <category><![CDATA[opera unite supported applications]]></category> <category><![CDATA[opera unite web server]]></category> <category><![CDATA[Unite Opera]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=1919</guid> <description><![CDATA[Here is some of the features, I liked about Opera Unite - Here are some of the applications supported by opera unite. I am going to give example of Opera Unite File Sharing. Opera Unite file sharing configuration options. This is how your screen will look after file sharing configuration it will show all the [...]]]></description> <content:encoded><![CDATA[<p>Here is some of the features, I liked about Opera Unite -</p><p>Here are some of the applications supported by opera unite. I am going to give example of Opera Unite File Sharing.</p><div class="wp-caption aligncenter" style="width: 285px"><img title="List of Opera Unite Applications" src="http://ajaymatharu.wordpress.com/files/2009/12/unite.png" alt="List of Opera Unite Applications" width="275" height="578" /><p class="wp-caption-text">List of Opera Unite Applications</p></div><p>Opera Unite file sharing configuration options.</p><div class="wp-caption aligncenter" style="width: 597px"><img title="Opera Unite File Sharing Configuration" src="http://ajaymatharu.wordpress.com/files/2009/12/unite3.png" alt="Opera Unite File Sharing Configuration" width="587" height="544" /><p class="wp-caption-text">Opera Unite File Sharing Configuration</p></div><p>This is how your screen will look after file sharing configuration it will show all the files from the folder. You can also see the password option on the right bottom. Once set it will ask the password to the person you send the link to.</p><div class="wp-caption aligncenter" style="width: 660px"><img title="Opera Unite File Sharing Lists" src="http://ajaymatharu.wordpress.com/files/2009/12/unite1.png" alt="Opera Unite File sharing Lists" width="650" height="300" /><p class="wp-caption-text">Opera Unite File sharing Lists</p></div><p>This is the password screen</p><div class="wp-caption aligncenter" style="width: 660px"><img title="Opera unite visitors page" src="http://ajaymatharu.wordpress.com/files/2009/12/unite2.png" alt="Opera unite visitors page" width="650" height="300" /><p class="wp-caption-text">Opera unite visitors page</p></div><p>After user enters the correct password he will  be shown the list of files and he can download the files.</p><p>In the Opera unite whiteboard both the user can share the white board so that the same board is seen by both.</p><div class="wp-caption alignnone" style="width: 660px"><img title="Opera unite dashboard application" src="http://ajaymatharu.wordpress.com/files/2009/12/whiteboard.png" alt="Opera unite dashboard application" width="650" height="300" /><p class="wp-caption-text">Opera unite dashboard application</p></div><p>Opera Unite Inbox application allows you and your friends to upload files on your computer from anywhere.</p><div class="wp-caption aligncenter" style="width: 599px"><img title="Opera Unite Inbox Application Settings" src="http://ajaymatharu.wordpress.com/files/2009/12/inboxsetting.png" alt="Opera Unite Inbox Application Settings" width="589" height="547" /><p class="wp-caption-text">Opera Unite Inbox Application Settings</p></div><div class="wp-caption aligncenter" style="width: 655px"><img title="Opera Unite Inbox Application" src="http://ajaymatharu.wordpress.com/files/2009/12/inbox.png" alt="Opera Unite Inbox Application" width="645" height="248" /><p class="wp-caption-text">Opera Unite Inbox Application</p></div><p>Opera Server Application allows you to host application from your machine like online server.</p><div class="wp-caption aligncenter" style="width: 603px"><img title="Opera unite application server configuration options" src="http://ajaymatharu.wordpress.com/files/2009/12/unite4.png" alt="Opera unite application server configuration options" width="593" height="471" /><p class="wp-caption-text">Opera unite application server configuration options</p></div><div class="wp-caption alignnone" style="width: 632px"><img title="Opera Unite Web Sever Application" src="http://ajaymatharu.wordpress.com/files/2009/12/webserver.png" alt="Opera Unite Web Sever Application" width="622" height="309" /><p class="wp-caption-text">Opera Unite Web Sever Application</p></div> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/opera-unite-turn-your-computer-into-server/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>SharePoint Error: &#8220;The language-neutral solution package was not found&#8221;</title><link>http://www.ajaymatharu.com/sharepoint-error-the-language-neutral-solution-package-was-not-found/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sharepoint-error-the-language-neutral-solution-package-was-not-found</link> <comments>http://www.ajaymatharu.com/sharepoint-error-the-language-neutral-solution-package-was-not-found/#comments</comments> <pubDate>Fri, 27 Nov 2009 07:52:13 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[.Net]]></category> <category><![CDATA[Development]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Sharepoint]]></category> <category><![CDATA[Visual Studio]]></category> <category><![CDATA[Language Neutral Package]]></category> <category><![CDATA[Sharepoint Error]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=1765</guid> <description><![CDATA[Last night while developing an event listener custom list, I ran into this error, SharePoint Error: &#8220;The language-neutral solution package was not found&#8221; The solution to this problem is, Restart your visual studio. And it will be back to normal. Hope this helps]]></description> <content:encoded><![CDATA[<p>Last night while developing an event listener custom list, I ran into this error,</p><blockquote><div> SharePoint Error: &#8220;The language-neutral solution package was not found&#8221;</div></blockquote><p>The solution to this problem is, Restart your visual studio. And it will be back to normal.</p><p>Hope this helps <img src='http://www.ajaymatharu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/sharepoint-error-the-language-neutral-solution-package-was-not-found/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
