<?xml version="1.0" encoding="UTF-8"?><feed
  xmlns="http://www.w3.org/2005/Atom"
  xmlns:thr="http://purl.org/syndication/thread/1.0"
  xml:lang="en-US"
  xml:base="https://blog.bertlamb.com/wp-atom.php"
   >
	<title type="text">Bert Lamb</title>
	<subtitle type="text">General Musings on Anything</subtitle>

	<updated>2017-05-17T00:22:16Z</updated>

	<link rel="alternate" type="text/html" href="https://blog.bertlamb.com" />
	<id>https://blog.bertlamb.com/feed/</id>
	<link rel="self" type="application/atom+xml" href="https://blog.bertlamb.com/feed/" />

	<generator uri="https://wordpress.org/" version="4.9.1">WordPress</generator>
	<entry>
		<author>
			<name>Bert</name>
						<uri>http://bertlamb.com</uri>
					</author>
		<title type="html"><![CDATA[Why Internet Explorer 10 Metro should have a different User-Agent]]></title>
		<link rel="alternate" type="text/html" href="https://blog.bertlamb.com/2012/06/07/why-internet-explorer-10-metro-should-have-a-different-user-agent/" />
		<id>http://blog.bertlamb.com/?p=187</id>
		<updated>2017-03-28T14:01:55Z</updated>
		<published>2012-06-07T19:08:58Z</published>
		<category scheme="https://blog.bertlamb.com" term="Computers" /><category scheme="https://blog.bertlamb.com" term="Ramblings" />		<summary type="html"><![CDATA[So, you may not know this yet, but Windows 8 has these two different &#8220;user modes&#8221;, one is the normal desktop windows experience that we&#8217;re all accustomed to and the other is a more &#8220;smartphony&#8221; or &#8220;tablety&#8221; experience called Metro. The usage is a little bit disjoint and confusing for my tastes, but that isn&#8217;t &#8230; <a href="https://blog.bertlamb.com/2012/06/07/why-internet-explorer-10-metro-should-have-a-different-user-agent/" class="more-link">Continue reading<span class="screen-reader-text"> "Why Internet Explorer 10 Metro should have a different User-Agent"</span></a>]]></summary>
		<content type="html" xml:base="https://blog.bertlamb.com/2012/06/07/why-internet-explorer-10-metro-should-have-a-different-user-agent/"><![CDATA[<p>So, you may not know this yet, but Windows 8 has these two different &#8220;user modes&#8221;, one is the normal desktop windows experience that we&#8217;re all accustomed to and the other is a more &#8220;smartphony&#8221; or &#8220;tablety&#8221; experience called Metro.  The usage is a little bit disjoint and confusing for my tastes, but that isn&#8217;t really the issue.  The issue relates to Internet Explorer 10 (IE10), and how it behaves and operates on Windows 8 in desktop vs metro mode.  </p>
<h3>The Problem</h3>
<p>You see, when running IE from the Metro experience, IE10 behaves in a different way.  The UI is different, and one of the more notable differences is that no ActiveX plugins will work, at all, period.  If you&#8217;re running is desktop mode, then IE doesn&#8217;t have this limitation and works pretty much as it does on Windows 7.  Fine, a hard line decision that seems to stem from their push to get people to write HTML5 and Metro apps, but I&#8217;ve got no real issues with that either.  The issue I do have is this: <strong>there is no way for a web app developer to tell if IE is running in &#8220;metro mode&#8221; or not</strong>.  This is a problem.</p>
<p>You see, I work on <a href="http://www.ibm.com/cloud-computing/social/us/en/webmeetings/" target="_blank">a product</a> which requires a native plugin to work.  There is no HTML5 way to monitor a screen for changes and then capture those changes, compress them efficiently and then send them to a server to be shared with other people you have elected to share them with.  This is the kind of thing that is only possible through a native code that can interface with the HTML on a browser page, and so our product requires a plugin that makes available an ActiveX control that our HTML web app can communicate with.  So, for our product to be able to work on Windows 8, you&#8217;ll need to be running on IE10 from the desktop, not in &#8220;Metro mode&#8221; (or Firefox or Chrome, we have plugins for those browsers as well that work just fine).  However, since we have no way of detecting that you are in Metro mode, then we can&#8217;t put up friendly UI to explain that we won&#8217;t work in Metro mode.  To our code, everything just looks like you don&#8217;t have our plugin installed, and we will desperately try to install it, to no avail.  The easiest solution to this, for me, seems to be some sort of addition to the User-Agent string that IE10 in Metro mode publishes to indicate that it is in Metro mode.</p>
<h3>X-UA-Compatible: requiresActiveX=true</h3>
<p>Microsoft has attempted to add something, but, unfortunately it isn&#8217;t acceptable.  <a href="http://blogs.msdn.com/b/ie/archive/2012/01/31/web-sites-and-a-plug-in-free-web.aspx" target="_blank">You can add a HTTP header to a response, or a meta tag in your HTML to indicate that your page requires a plugin</a>.  This will cause IE running in Metro mode to display something like this:<br />
<a href="http://ieblog.members.winisp.net/images/20120131-mtapifw-image1.png" target="_blank"><img width="400px" src="https://ieblog.members.winisp.net/images/20120131-mtapifw-image1.png" alt="IE10 Metro redirection to desktop mode" /></a><br />
However, this UI is fairly easy to miss, goes away quickly, and doesn&#8217;t allow for any indication as to what parts of the website might not work due to the lack of plugin support.  All of which could be handled by the web app were it able to detect that the features were unavailable.</p>
<h3>Plugin Free Web</h3>
<p>In doing some research on this problem, I came across some sentiment that plugins don&#8217;t belong on the web.  I find this disconcerting.  I understand it to a point, there are certain things that are becoming possible with HTML5 and the hope is to push people in that direction instead of relying on browser plugins (ie. Adobe&#8217;s Flash).  The problem is where web applications need to do things that are outside of the browser sandbox and will likely NEVER be possible using HTML technology alone (ex: Web-based Application Sharing).  For these applications there will always need to be some sort of bridge from the web application to a native component, be it a plugin or a native app that should be launched to take over the rest of the interaction.  Even still, if the stance for one particular browser is, &#8220;no plugins, tough luck&#8221; then there should at least be a way for web developers to be able to detect this browser so that they can present clear information to their users about what is going on and what they can do.</p>
<p>I am rushing this post out a bit, and I&#8217;m sure I&#8217;m missing some key points, but I hope some people from MS will chime in with comments on this, or even better, make some changes to IE10 to fix this problem.  I also hope some other web developers will chime in with comments of how this problem is effecting your applications as well.</p>
]]></content>
			<link rel="replies" type="text/html" href="https://blog.bertlamb.com/2012/06/07/why-internet-explorer-10-metro-should-have-a-different-user-agent/#comments" thr:count="3"/>
		<link rel="replies" type="application/atom+xml" href="https://blog.bertlamb.com/2012/06/07/why-internet-explorer-10-metro-should-have-a-different-user-agent/feed/" thr:count="3"/>
		<thr:total>3</thr:total>
		</entry>
		<entry>
		<author>
			<name>Bert</name>
						<uri>http://bertlamb.com</uri>
					</author>
		<title type="html"><![CDATA[links for 2009-04-24]]></title>
		<link rel="alternate" type="text/html" href="https://blog.bertlamb.com/2009/04/24/links-for-2009-04-24/" />
		<id>http://blog.bertlamb.com/2009/04/24/links-for-2009-04-24/</id>
		<updated>2009-04-24T09:06:38Z</updated>
		<published>2009-04-24T09:06:38Z</published>
		<category scheme="https://blog.bertlamb.com" term="del.icio.us links" />		<summary type="html"><![CDATA[Melinda Lee Bagel Recipe (tags: recipes baking bagel bagels recipe cooking food)]]></summary>
		<content type="html" xml:base="https://blog.bertlamb.com/2009/04/24/links-for-2009-04-24/"><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.melindalee.com/recipearchive.html?action=124&amp;item_id=423">Melinda Lee Bagel Recipe</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/bertlamb/recipes">recipes</a> <a href="http://delicious.com/bertlamb/baking">baking</a> <a href="http://delicious.com/bertlamb/bagel">bagel</a> <a href="http://delicious.com/bertlamb/bagels">bagels</a> <a href="http://delicious.com/bertlamb/recipe">recipe</a> <a href="http://delicious.com/bertlamb/cooking">cooking</a> <a href="http://delicious.com/bertlamb/food">food</a>)</div>
</li>
</ul>
]]></content>
			<link rel="replies" type="text/html" href="https://blog.bertlamb.com/2009/04/24/links-for-2009-04-24/#comments" thr:count="0"/>
		<link rel="replies" type="application/atom+xml" href="https://blog.bertlamb.com/2009/04/24/links-for-2009-04-24/feed/" thr:count="0"/>
		<thr:total>0</thr:total>
		</entry>
		<entry>
		<author>
			<name>Bert</name>
						<uri>http://bertlamb.com</uri>
					</author>
		<title type="html"><![CDATA[HumbleDeveloper.com]]></title>
		<link rel="alternate" type="text/html" href="https://blog.bertlamb.com/2009/04/22/humbledevelopercom/" />
		<id>http://blog.bertlamb.com/2009/04/22/humbledevelopercom/</id>
		<updated>2009-04-22T13:11:25Z</updated>
		<published>2009-04-22T13:11:25Z</published>
		<category scheme="https://blog.bertlamb.com" term="Computers" />		<summary type="html"><![CDATA[Not too long ago Jeff Attwood offered to give away some of the domains he had registered as potential domains for what would become stackoverflow.com.&#160; I called dibs on HumbleDeveloper.com and after some effort to try to figure out that GoDaddy didnâ€™t want to be helpful in facilitating a transfer within registrars, Jeff transferred the &#8230; <a href="https://blog.bertlamb.com/2009/04/22/humbledevelopercom/" class="more-link">Continue reading<span class="screen-reader-text"> "HumbleDeveloper.com"</span></a>]]></summary>
		<content type="html" xml:base="https://blog.bertlamb.com/2009/04/22/humbledevelopercom/"><![CDATA[<p>Not too long ago Jeff Attwood offered to give away some of the domains he had registered as potential domains for what would become <a href="http://stackoverflow.com" target="_blank">stackoverflow.com</a>.&#160; I called dibs on <a href="http://humbledeveloper.com" target="_blank">HumbleDeveloper.com</a> and after some effort to try to figure out that GoDaddy didnâ€<img src="https://s.w.org/images/core/emoji/2.3/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />t want to be helpful in facilitating a transfer within registrars, Jeff transferred the domain to me.&#160; Which is awesome!&#160; Thanks Jeff!</p>
<p>Eventually, when I get some free timeâ€¦which I have precious little these days while working and taking 2 grad classesâ€¦I plan to turn it into something the world truly needs.&#160; <strong>Another programming related blog.</strong>&#160; But this one will be awesome, honest :)</p>
<p>Until that time, the page will be a tribute to Jeffâ€<img src="https://s.w.org/images/core/emoji/2.3/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />s awesomeness.&#160; Thanks again, Jeff.</p>
]]></content>
			<link rel="replies" type="text/html" href="https://blog.bertlamb.com/2009/04/22/humbledevelopercom/#comments" thr:count="0"/>
		<link rel="replies" type="application/atom+xml" href="https://blog.bertlamb.com/2009/04/22/humbledevelopercom/feed/" thr:count="0"/>
		<thr:total>0</thr:total>
		</entry>
		<entry>
		<author>
			<name>Bert</name>
						<uri>http://bertlamb.com</uri>
					</author>
		<title type="html"><![CDATA[links for 2009-04-11]]></title>
		<link rel="alternate" type="text/html" href="https://blog.bertlamb.com/2009/04/11/links-for-2009-04-11/" />
		<id>http://blog.bertlamb.com/2009/04/11/links-for-2009-04-11/</id>
		<updated>2009-04-11T09:03:17Z</updated>
		<published>2009-04-11T09:03:17Z</published>
		<category scheme="https://blog.bertlamb.com" term="del.icio.us links" />		<summary type="html"><![CDATA[IP address geolocation SQL database (tags: programming free geolocation ip mysql geoip address development)]]></summary>
		<content type="html" xml:base="https://blog.bertlamb.com/2009/04/11/links-for-2009-04-11/"><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.iplocationtools.com/sql_database.php">IP address geolocation SQL database</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/bertlamb/programming">programming</a> <a href="http://delicious.com/bertlamb/free">free</a> <a href="http://delicious.com/bertlamb/geolocation">geolocation</a> <a href="http://delicious.com/bertlamb/ip">ip</a> <a href="http://delicious.com/bertlamb/mysql">mysql</a> <a href="http://delicious.com/bertlamb/geoip">geoip</a> <a href="http://delicious.com/bertlamb/address">address</a> <a href="http://delicious.com/bertlamb/development">development</a>)</div>
</li>
</ul>
]]></content>
			<link rel="replies" type="text/html" href="https://blog.bertlamb.com/2009/04/11/links-for-2009-04-11/#comments" thr:count="0"/>
		<link rel="replies" type="application/atom+xml" href="https://blog.bertlamb.com/2009/04/11/links-for-2009-04-11/feed/" thr:count="0"/>
		<thr:total>0</thr:total>
		</entry>
		<entry>
		<author>
			<name>Bert</name>
						<uri>http://bertlamb.com</uri>
					</author>
		<title type="html"><![CDATA[links for 2009-04-05]]></title>
		<link rel="alternate" type="text/html" href="https://blog.bertlamb.com/2009/04/05/links-for-2009-04-05/" />
		<id>http://blog.bertlamb.com/2009/04/05/links-for-2009-04-05/</id>
		<updated>2009-04-05T09:04:16Z</updated>
		<published>2009-04-05T09:04:16Z</published>
		<category scheme="https://blog.bertlamb.com" term="del.icio.us links" />		<summary type="html"><![CDATA[Almost Perfect by W. E. Peterson The Rise and Fall of WordPerfect Corporation (tags: programming software free ebook history wordperfect computer ebooks) ASP.NET MVC Best Practices (Part 1) &#8211; Kazi Manzur Rashid&#039;s Blog (tags: programming development tips asp.net .net mvc aspnetmvc bestpractices asp.net_mvc asp.net-mvc asp.net.mvc) CS193P &#8211; Cocoa Programming &#124; Announcements (tags: programming development free &#8230; <a href="https://blog.bertlamb.com/2009/04/05/links-for-2009-04-05/" class="more-link">Continue reading<span class="screen-reader-text"> "links for 2009-04-05"</span></a>]]></summary>
		<content type="html" xml:base="https://blog.bertlamb.com/2009/04/05/links-for-2009-04-05/"><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.wordplace.com/ap/index.shtml">Almost Perfect by W. E. Peterson The Rise and Fall of WordPerfect Corporation</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/bertlamb/programming">programming</a> <a href="http://delicious.com/bertlamb/software">software</a> <a href="http://delicious.com/bertlamb/free">free</a> <a href="http://delicious.com/bertlamb/ebook">ebook</a> <a href="http://delicious.com/bertlamb/history">history</a> <a href="http://delicious.com/bertlamb/wordperfect">wordperfect</a> <a href="http://delicious.com/bertlamb/computer">computer</a> <a href="http://delicious.com/bertlamb/ebooks">ebooks</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://weblogs.asp.net/rashid/archive/2009/04/01/asp-net-mvc-best-practices-part-1.aspx">ASP.NET MVC Best Practices (Part 1) &#8211; Kazi Manzur Rashid&#039;s Blog</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/bertlamb/programming">programming</a> <a href="http://delicious.com/bertlamb/development">development</a> <a href="http://delicious.com/bertlamb/tips">tips</a> <a href="http://delicious.com/bertlamb/asp.net">asp.net</a> <a href="http://delicious.com/bertlamb/.net">.net</a> <a href="http://delicious.com/bertlamb/mvc">mvc</a> <a href="http://delicious.com/bertlamb/aspnetmvc">aspnetmvc</a> <a href="http://delicious.com/bertlamb/bestpractices">bestpractices</a> <a href="http://delicious.com/bertlamb/asp.net_mvc">asp.net_mvc</a> <a href="http://delicious.com/bertlamb/asp.net-mvc">asp.net-mvc</a> <a href="http://delicious.com/bertlamb/asp.net.mvc">asp.net.mvc</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.stanford.edu/class/cs193p/cgi-bin/index.php">CS193P &#8211; Cocoa Programming | Announcements</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/bertlamb/programming">programming</a> <a href="http://delicious.com/bertlamb/development">development</a> <a href="http://delicious.com/bertlamb/free">free</a> <a href="http://delicious.com/bertlamb/course">course</a> <a href="http://delicious.com/bertlamb/mobile">mobile</a> <a href="http://delicious.com/bertlamb/iPhone">iPhone</a> <a href="http://delicious.com/bertlamb/learning">learning</a> <a href="http://delicious.com/bertlamb/education">education</a> <a href="http://delicious.com/bertlamb/stanford">stanford</a> <a href="http://delicious.com/bertlamb/cocoa">cocoa</a> <a href="http://delicious.com/bertlamb/objective-c">objective-c</a>)</div>
</li>
</ul>
]]></content>
			<link rel="replies" type="text/html" href="https://blog.bertlamb.com/2009/04/05/links-for-2009-04-05/#comments" thr:count="0"/>
		<link rel="replies" type="application/atom+xml" href="https://blog.bertlamb.com/2009/04/05/links-for-2009-04-05/feed/" thr:count="0"/>
		<thr:total>0</thr:total>
		</entry>
		<entry>
		<author>
			<name>Bert</name>
						<uri>http://bertlamb.com</uri>
					</author>
		<title type="html"><![CDATA[links for 2009-04-01]]></title>
		<link rel="alternate" type="text/html" href="https://blog.bertlamb.com/2009/04/01/links-for-2009-04-01/" />
		<id>http://blog.bertlamb.com/2009/04/01/links-for-2009-04-01/</id>
		<updated>2009-04-01T09:04:14Z</updated>
		<published>2009-04-01T09:04:14Z</published>
		<category scheme="https://blog.bertlamb.com" term="del.icio.us links" />		<summary type="html"><![CDATA[MIX Videos (tags: development asp.net ajax web microsoft .net video mix mix09 conference webdev)]]></summary>
		<content type="html" xml:base="https://blog.bertlamb.com/2009/04/01/links-for-2009-04-01/"><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://videos.visitmix.com/MIX09/All">MIX Videos</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/bertlamb/development">development</a> <a href="http://delicious.com/bertlamb/asp.net">asp.net</a> <a href="http://delicious.com/bertlamb/ajax">ajax</a> <a href="http://delicious.com/bertlamb/web">web</a> <a href="http://delicious.com/bertlamb/microsoft">microsoft</a> <a href="http://delicious.com/bertlamb/.net">.net</a> <a href="http://delicious.com/bertlamb/video">video</a> <a href="http://delicious.com/bertlamb/mix">mix</a> <a href="http://delicious.com/bertlamb/mix09">mix09</a> <a href="http://delicious.com/bertlamb/conference">conference</a> <a href="http://delicious.com/bertlamb/webdev">webdev</a>)</div>
</li>
</ul>
]]></content>
			<link rel="replies" type="text/html" href="https://blog.bertlamb.com/2009/04/01/links-for-2009-04-01/#comments" thr:count="0"/>
		<link rel="replies" type="application/atom+xml" href="https://blog.bertlamb.com/2009/04/01/links-for-2009-04-01/feed/" thr:count="0"/>
		<thr:total>0</thr:total>
		</entry>
		<entry>
		<author>
			<name>Bert</name>
						<uri>http://bertlamb.com</uri>
					</author>
		<title type="html"><![CDATA[links for 2009-03-30]]></title>
		<link rel="alternate" type="text/html" href="https://blog.bertlamb.com/2009/03/30/links-for-2009-03-30/" />
		<id>http://blog.bertlamb.com/2009/03/30/links-for-2009-03-30/</id>
		<updated>2009-03-30T09:04:30Z</updated>
		<published>2009-03-30T09:04:30Z</published>
		<category scheme="https://blog.bertlamb.com" term="del.icio.us links" />		<summary type="html"><![CDATA[Salty / Savory / Sweet: The great bageling (tags: bagel bagels recipes recipe food baking bread)]]></summary>
		<content type="html" xml:base="https://blog.bertlamb.com/2009/03/30/links-for-2009-03-30/"><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://saltysavorysweet.blogspot.com/2009/03/great-bageling.html">Salty / Savory / Sweet: The great bageling</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/bertlamb/bagel">bagel</a> <a href="http://delicious.com/bertlamb/bagels">bagels</a> <a href="http://delicious.com/bertlamb/recipes">recipes</a> <a href="http://delicious.com/bertlamb/recipe">recipe</a> <a href="http://delicious.com/bertlamb/food">food</a> <a href="http://delicious.com/bertlamb/baking">baking</a> <a href="http://delicious.com/bertlamb/bread">bread</a>)</div>
</li>
</ul>
]]></content>
			<link rel="replies" type="text/html" href="https://blog.bertlamb.com/2009/03/30/links-for-2009-03-30/#comments" thr:count="0"/>
		<link rel="replies" type="application/atom+xml" href="https://blog.bertlamb.com/2009/03/30/links-for-2009-03-30/feed/" thr:count="0"/>
		<thr:total>0</thr:total>
		</entry>
		<entry>
		<author>
			<name>Bert</name>
						<uri>http://bertlamb.com</uri>
					</author>
		<title type="html"><![CDATA[links for 2009-03-28]]></title>
		<link rel="alternate" type="text/html" href="https://blog.bertlamb.com/2009/03/28/links-for-2009-03-28/" />
		<id>http://blog.bertlamb.com/2009/03/28/links-for-2009-03-28/</id>
		<updated>2009-03-28T09:02:51Z</updated>
		<published>2009-03-28T09:02:51Z</published>
		<category scheme="https://blog.bertlamb.com" term="del.icio.us links" />		<summary type="html"><![CDATA[Academic Earth &#8211; Game Theory (tags: gametheory lecture economics lectures theory design)]]></summary>
		<content type="html" xml:base="https://blog.bertlamb.com/2009/03/28/links-for-2009-03-28/"><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://academicearth.org/courses/game-theory">Academic Earth &#8211; Game Theory</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/bertlamb/gametheory">gametheory</a> <a href="http://delicious.com/bertlamb/lecture">lecture</a> <a href="http://delicious.com/bertlamb/economics">economics</a> <a href="http://delicious.com/bertlamb/lectures">lectures</a> <a href="http://delicious.com/bertlamb/theory">theory</a> <a href="http://delicious.com/bertlamb/design">design</a>)</div>
</li>
</ul>
]]></content>
			<link rel="replies" type="text/html" href="https://blog.bertlamb.com/2009/03/28/links-for-2009-03-28/#comments" thr:count="0"/>
		<link rel="replies" type="application/atom+xml" href="https://blog.bertlamb.com/2009/03/28/links-for-2009-03-28/feed/" thr:count="0"/>
		<thr:total>0</thr:total>
		</entry>
		<entry>
		<author>
			<name>Bert</name>
						<uri>http://bertlamb.com</uri>
					</author>
		<title type="html"><![CDATA[links for 2009-03-25]]></title>
		<link rel="alternate" type="text/html" href="https://blog.bertlamb.com/2009/03/25/links-for-2009-03-25/" />
		<id>http://blog.bertlamb.com/2009/03/25/links-for-2009-03-25/</id>
		<updated>2009-03-25T09:06:36Z</updated>
		<published>2009-03-25T09:06:36Z</published>
		<category scheme="https://blog.bertlamb.com" term="del.icio.us links" />		<summary type="html"><![CDATA[Particletree Â» Rediscovering the Button Element (tags: programming web2.0 design css webdesign button html forms buttons form)]]></summary>
		<content type="html" xml:base="https://blog.bertlamb.com/2009/03/25/links-for-2009-03-25/"><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://particletree.com/features/rediscovering-the-button-element/">Particletree Â» Rediscovering the Button Element</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/bertlamb/programming">programming</a> <a href="http://delicious.com/bertlamb/web2.0">web2.0</a> <a href="http://delicious.com/bertlamb/design">design</a> <a href="http://delicious.com/bertlamb/css">css</a> <a href="http://delicious.com/bertlamb/webdesign">webdesign</a> <a href="http://delicious.com/bertlamb/button">button</a> <a href="http://delicious.com/bertlamb/html">html</a> <a href="http://delicious.com/bertlamb/forms">forms</a> <a href="http://delicious.com/bertlamb/buttons">buttons</a> <a href="http://delicious.com/bertlamb/form">form</a>)</div>
</li>
</ul>
]]></content>
			<link rel="replies" type="text/html" href="https://blog.bertlamb.com/2009/03/25/links-for-2009-03-25/#comments" thr:count="0"/>
		<link rel="replies" type="application/atom+xml" href="https://blog.bertlamb.com/2009/03/25/links-for-2009-03-25/feed/" thr:count="0"/>
		<thr:total>0</thr:total>
		</entry>
		<entry>
		<author>
			<name>Bert</name>
						<uri>http://bertlamb.com</uri>
					</author>
		<title type="html"><![CDATA[links for 2009-03-13]]></title>
		<link rel="alternate" type="text/html" href="https://blog.bertlamb.com/2009/03/13/links-for-2009-03-13/" />
		<id>http://blog.bertlamb.com/2009/03/13/links-for-2009-03-13/</id>
		<updated>2009-03-13T09:04:09Z</updated>
		<published>2009-03-13T09:04:09Z</published>
		<category scheme="https://blog.bertlamb.com" term="del.icio.us links" />		<summary type="html"><![CDATA[(Multiple Browser Supported) Java applet using XHTML &#039;object&#039; tag (tags: programming development java browser plugin applet tag applets javascript detection)]]></summary>
		<content type="html" xml:base="https://blog.bertlamb.com/2009/03/13/links-for-2009-03-13/"><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://ww2.cs.fsu.edu/~steele/XHTML/appletObject.html">(Multiple Browser Supported) Java applet using XHTML &#039;object&#039; tag</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/bertlamb/programming">programming</a> <a href="http://delicious.com/bertlamb/development">development</a> <a href="http://delicious.com/bertlamb/java">java</a> <a href="http://delicious.com/bertlamb/browser">browser</a> <a href="http://delicious.com/bertlamb/plugin">plugin</a> <a href="http://delicious.com/bertlamb/applet">applet</a> <a href="http://delicious.com/bertlamb/tag">tag</a> <a href="http://delicious.com/bertlamb/applets">applets</a> <a href="http://delicious.com/bertlamb/javascript">javascript</a> <a href="http://delicious.com/bertlamb/detection">detection</a>)</div>
</li>
</ul>
]]></content>
			<link rel="replies" type="text/html" href="https://blog.bertlamb.com/2009/03/13/links-for-2009-03-13/#comments" thr:count="0"/>
		<link rel="replies" type="application/atom+xml" href="https://blog.bertlamb.com/2009/03/13/links-for-2009-03-13/feed/" thr:count="0"/>
		<thr:total>0</thr:total>
		</entry>
	</feed>
