<?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>Technoticles&#187; browser</title>
	<atom:link href="http://technoticles.com/tag/browser/feed/" rel="self" type="application/rss+xml" />
	<link>http://technoticles.com</link>
	<description>(Techno)logy + Ar(ticles) = Technoticles</description>
	<lastBuildDate>Tue, 24 Jan 2012 07:26:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Developing for Android browser</title>
		<link>http://technoticles.com/2010/10/29/developing-for-android-browser/</link>
		<comments>http://technoticles.com/2010/10/29/developing-for-android-browser/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 17:48:22 +0000</pubDate>
		<dc:creator>technoticles</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[browser]]></category>

		<guid isPermaLink="false">http://technoticles.com/?p=458</guid>
		<description><![CDATA[(Author: Heena Rastogi)
Android.
For some time now this word had been cropping up in my discussions with people. But I never got around start learning about it.  So when at office I saw an opportunity, I tried to peep into the Android app development space.
I had a simple task at hand, to create the sharing [...]]]></description>
			<content:encoded><![CDATA[<p>(Author:<a href="http://lostintechworld.wordpress.com/"> <em>Heena Rastogi</em></a>)</p>
<p>Android.</p>
<p>For some time now this word had been cropping up in my discussions with people. But I never got around start learning about it.  So when at office I saw an opportunity, I tried to peep into the Android app development space.<br />
I had a simple task at hand, to create the sharing feature for an Android app. So I googled for code snippets to achieve this.  Here I present my quick consolidation of the google results based approach that I tried. There are in general two ways to do it:</p>
<ul>
<li>Either download API’s for Twitter, MySpace and Facebook and add dozens of lines in your code to create this feature.(will write soon about this)</li>
<li>OR just load the twitter,myspace and facebook sharing link in an android browser.</li>
</ul>
<p>I am sharing the browser method or as somebody said &#8220;the web way&#8221; of doing stuff.<span id="more-458"></span></p>
<p>Just load these URLs to your android browser on button click:<br />
Twitter:  <em>http://www.twitter.com/home?status=http://(name of your website:www.xyz.com;add this without quotes)</em><br />
MySpace:  <em>http://www.myspace.com/Modules/PostTo/Pages/?c=(name of your website:www.xyz.com;add this without quotes)</em><br />
Facebook:  <em>http://www.facebook.com/sharer.php?u=http//(name of your website:www.xyz.com;add this without quotes)</em></p>
<p><em> </em><br />
In the following code snippet,  I am sharing a link “www.inc.com” on button click:<br />
<code>//Post message to Facebook where facebook is a button<br />
<strong> facebook.setOnClickListener</strong>(new OnClickListener(){<br />
@Override<br />
public void onClick(View v) {<br />
Intent browse = new Intent( Intent.ACTION_VIEW ,<br />
Uri.parse("http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.inc.com%2f"<br />
) );<br />
startActivity( browse );<br />
}<br />
});</code><br />
<code><br />
//Post the message to Twitter where twitter is a button<br />
twitter.setOnClickListener(new OnClickListener(){<br />
@Override<br />
public void onClick(View v) {<br />
// TODO Auto-generated method stub<br />
Intent browse = new Intent( Intent.ACTION_VIEW ,<br />
Uri.parse("http://www.twitter.com/home?status=http://www.inc.com" ) );<br />
startActivity( browse );<br />
}<br />
});</code></p>
<p><code>// Post the message to Myspace where myspace is a button<br />
myspace.<strong>setOnClickListener</strong>(new OnClickListener(){<br />
@Override<br />
public void <strong>onClick</strong>(View v) {<br />
// TODO Auto-generated method stub<br />
<em>String test= "www.inc.com";<br />
Intent browse = new Intent( Intent.ACTION_VIEW ,<br />
Uri.parse("http://www.myspace.com/Modules/PostTo/Pages/?c="+test.toString()</em><br />
) );<br />
<strong>startActivity( browse )</strong>;<br />
}</code></p>
<p>Hope this get you started as well on your Android learning journey as it has got me started.</p>
]]></content:encoded>
			<wfw:commentRss>http://technoticles.com/2010/10/29/developing-for-android-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google phases out support for IE6</title>
		<link>http://technoticles.com/2010/02/03/google-phases-out-support-for-ie6/</link>
		<comments>http://technoticles.com/2010/02/03/google-phases-out-support-for-ie6/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 07:51:42 +0000</pubDate>
		<dc:creator>nitin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[html 5]]></category>
		<category><![CDATA[ie6]]></category>

		<guid isPermaLink="false">http://technoticles.com/?p=143</guid>
		<description><![CDATA[Today I got an email from Google (as a google apps admin) saying that over the course of 2010 they we will be phasing out support for Microsoft Internet Explorer 6.0.  The same is also communicated at their blog.
Also when opening Facebook from IE7 browser I got a box on the top suggesting me to upgrade [...]]]></description>
			<content:encoded><![CDATA[<p>Today I got an email from Google (as a google apps admin) saying that over the course of 2010 they we will be phasing out support for Microsoft Internet Explorer 6.0.  The same is also communicated at their <a href="http://googleenterprise.blogspot.com/2010/01/modern-browsers-for-modern-applications.html">blog</a>.</p>
<div id="attachment_146" class="wp-caption aligncenter" style="width: 610px"><a href="http://technoticles.files.wordpress.com/2010/02/google-phases-out-ie61.jpg"><img class="size-full wp-image-146" title="Email from Google" src="http://technoticles.files.wordpress.com/2010/02/google-phases-out-ie61.jpg" alt="google phases out ie6" width="600" height="192" /></a><p class="wp-caption-text">Email from Google</p></div>
<p>Also when opening Facebook from IE7 browser I got a box on the top suggesting me to upgrade to IE8. Earlier last year <a href="http://www.techcrunch.com/2009/07/14/youtube-will-be-next-to-kiss-ie6-support-goodbye/">similar phase out warnings had started to appear on YouTube</a> as well.<br />
<span id="more-143"></span><br />
I am sure seeing this would have brought smiles to the faces of  many web developers, as writing JavaScript code to work on IE6 is one of the most painful things in front end web development. So many things just don&#8217;t work.</p>
<p>This move by Google and Facebook is very welcome. It will definitely help in  the growth of HTML 5 and advanced JavaScripting.</p>
<p>Some organization have long been running on IE6 and upgrading the browser is a big task for their IT departments. No wonder IE6 still commands as much as 20% of the browser market. It is only such actions on part of major websites, that can shake the organizations to make the shift.</p>
<p>One of the other reasons for phasing out IE6 is its security vulnerability. As <a href="http://news.zdnet.co.uk/security/0,1000000189,39990635,00.htm">this Zdnet blog</a> points out, earlier last month Microsoft had admitted that the attack from China on Google and some other US companies had exploited a hole in IE6, which was also present in IE7 and IE8.</p>
]]></content:encoded>
			<wfw:commentRss>http://technoticles.com/2010/02/03/google-phases-out-support-for-ie6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

