<?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>Start IT up &#187; Uncategorized</title>
	<atom:link href="http://www.techjini.com/blog/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techjini.com/blog</link>
	<description>The blog of TechJini Solutions</description>
	<lastBuildDate>Fri, 30 Dec 2011 10:31:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Customizing Background and Text color in Options Menu Android</title>
		<link>http://www.techjini.com/blog/2011/04/19/customizing-background-and-text-color-in-options-menu-android/</link>
		<comments>http://www.techjini.com/blog/2011/04/19/customizing-background-and-text-color-in-options-menu-android/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 11:53:22 +0000</pubDate>
		<dc:creator>Meghana</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://www.techjini.com/blog/?p=454</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.techjini.com/blog/2011/04/19/customizing-background-and-text-color-in-options-menu-android/' addthis:title='Customizing Background and Text color in Options Menu Android '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>Options menu in android can be customized to set the background or change the text appearance. The background and text<a href="http://www.techjini.com/blog/2011/04/19/customizing-background-and-text-color-in-options-menu-android/" class="searchmore">Read the Rest...</a><div class="clr"></div><div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.techjini.com/blog/2011/04/19/customizing-background-and-text-color-in-options-menu-android/' addthis:title='Customizing Background and Text color in Options Menu Android ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.techjini.com/blog/2011/04/19/customizing-background-and-text-color-in-options-menu-android/' addthis:title='Customizing Background and Text color in Options Menu Android '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div><p>Options menu in android can be customized to set the background or change the text appearance. The background and text color in the menu couldn&#8217;t be changed using themes and styles. The android source code (data\res\layout\icon_menu_item_layout.xml)uses a custom item of class “com.android.internal.view.menu.IconMenuItem”View for the menu layout. We can make changes in the above class to customize the menu. To achieve the same, use LayoutInflater factory class and set the background and text color for the view.</p>
<p>@Override<br />
public boolean onCreateOptionsMenu(Menu menu) {<br />
MenuInflater inflater = getMenuInflater();<br />
inflater.inflate(R.menu.my_menu, menu);</p>
<p>getLayoutInflater().setFactory(new Factory() {<br />
@Override<br />
public View onCreateView(String name, Context context,<br />
AttributeSet attrs) {</p>
<p>if (name			.equalsIgnoreCase(&#8220;com.android.internal.view.menu.IconMenuItemView&#8221;)) {<br />
try {<br />
LayoutInflater f = getLayoutInflater();<br />
final View view = f.createView(name, null, attrs);</p>
<p>new Handler().post(new Runnable() {<br />
public void run() {</p>
<p>// set the background drawable<br />
view					           									.setBackgroundResource(R.drawable.my_ac_menu_background);</p>
<p>// set the text color<br />
((TextView) view).setTextColor(Color.WHITE);<br />
}<br />
});<br />
return view;<br />
} catch (InflateException e) {<br />
} catch (ClassNotFoundException e) {<br />
}<br />
}<br />
return null;<br />
}<br />
});<br />
return super.onCreateOptionsMenu(menu);<br />
}</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.techjini.com/blog/2011/04/19/customizing-background-and-text-color-in-options-menu-android/' addthis:title='Customizing Background and Text color in Options Menu Android ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.techjini.com/blog/2011/04/19/customizing-background-and-text-color-in-options-menu-android/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Hindustan Times writing about Indian War Comics</title>
		<link>http://www.techjini.com/blog/2011/02/15/hindustan-times-writing-about-indian-war-comics/</link>
		<comments>http://www.techjini.com/blog/2011/02/15/hindustan-times-writing-about-indian-war-comics/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 12:27:29 +0000</pubDate>
		<dc:creator>kaustubh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Jinibooks]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[techjini]]></category>
		<category><![CDATA[Bangalore Mirror]]></category>
		<category><![CDATA[Hindustan Times]]></category>
		<category><![CDATA[Indian War Comics]]></category>
		<category><![CDATA[TechJini Solutions]]></category>

		<guid isPermaLink="false">http://www.techjini.com/blog/?p=396</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.techjini.com/blog/2011/02/15/hindustan-times-writing-about-indian-war-comics/' addthis:title='Hindustan Times writing about Indian War Comics '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>After the Bangalore Mirror, it is now Hindustan Times publishing a news about JiniBooks and Indian War Comics available on<a href="http://www.techjini.com/blog/2011/02/15/hindustan-times-writing-about-indian-war-comics/" class="searchmore">Read the Rest...</a><div class="clr"></div><div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.techjini.com/blog/2011/02/15/hindustan-times-writing-about-indian-war-comics/' addthis:title='Hindustan Times writing about Indian War Comics ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.techjini.com/blog/2011/02/15/hindustan-times-writing-about-indian-war-comics/' addthis:title='Hindustan Times writing about Indian War Comics '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div><p>After the <a href="http://bangaloremirror.com/article/10/201101312011013107472188426d62132/Indian-war-heroes%E2%80%99-comics-on-iPad.html">Bangalore Mirror</a>, it is now <a href="http://www.hindustantimes.com/Indian-War-Heroes-on-IPad/Article1-659528.aspx">Hindustan Times</a> publishing a news about <a href="http://www.jinibooks.com/">JiniBooks</a> and Indian War Comics available on iPad. </p>
<p>We all are now aware about &#8216;Indian War Comics&#8217; and &#8216;BraveHearts of Mumbai &#8211; 26/11&#8242; are available on iPad via JiniBooks. Its an honest and sincere effort by <a href="http://www.techjini.com/">TechJini</a> to make the content available digitaly, via iPad. Soon the other comics released by Indian War Comics will be available on <a href="http://www.techjini.com/services-ipad.html">iPad</a> and other tablets as well. We are glad this effort is paying off and different media is also taking a note of our effort. </p>
<p>Congrats again to all the team!</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.techjini.com/blog/2011/02/15/hindustan-times-writing-about-indian-war-comics/' addthis:title='Hindustan Times writing about Indian War Comics ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.techjini.com/blog/2011/02/15/hindustan-times-writing-about-indian-war-comics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Indian war heroes’ comics on iPad</title>
		<link>http://www.techjini.com/blog/2011/01/31/indian-war-heroes%e2%80%99-comics-on-ipad/</link>
		<comments>http://www.techjini.com/blog/2011/01/31/indian-war-heroes%e2%80%99-comics-on-ipad/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 08:51:35 +0000</pubDate>
		<dc:creator>kaustubh</dc:creator>
				<category><![CDATA[Android Tablets]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[techjini]]></category>
		<category><![CDATA[bangalore]]></category>
		<category><![CDATA[Bangalore Mirror]]></category>
		<category><![CDATA[Indian War Comics]]></category>
		<category><![CDATA[iPad Application for publishing industry]]></category>
		<category><![CDATA[Jinibooks]]></category>

		<guid isPermaLink="false">http://www.techjini.com/blog/?p=381</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.techjini.com/blog/2011/01/31/indian-war-heroes%e2%80%99-comics-on-ipad/' addthis:title='Indian war heroes’ comics on iPad '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>Today Bangalore mirror published a small write up about TechJini&#8217;s efforts to salute the war heroes of Indian army. Congrats<a href="http://www.techjini.com/blog/2011/01/31/indian-war-heroes%e2%80%99-comics-on-ipad/" class="searchmore">Read the Rest...</a><div class="clr"></div><div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.techjini.com/blog/2011/01/31/indian-war-heroes%e2%80%99-comics-on-ipad/' addthis:title='Indian war heroes’ comics on iPad ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.techjini.com/blog/2011/01/31/indian-war-heroes%e2%80%99-comics-on-ipad/' addthis:title='Indian war heroes’ comics on iPad '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div><p>Today <a href="http://bangaloremirror.com/article/10/201101312011013107472188426d62132/Indian-war-heroes%E2%80%99-comics-on-iPad.html">Bangalore mirror published a small write up</a> about TechJini&#8217;s efforts to salute the war heroes of Indian army. </p>
<p>Congrats to all TechJini team and especially Amit and Shyamal.</p>
<p>About &#8216;Bravehearts of Mumbai&#8217;</p>
<p>26/11/2008 is a sad day in Indian history, when the terrorists attacked the city of Mumbai. It was by brave effort of various Indian security forces like NSG, Mumbai Police the terror was brought to an end. Now Indian War Comics has immortalized story of one such hero, Maj Sandeep Unnikrishnan AC by launching their 3rd comic ‘Braveheart of Mumbai – 26/11’. The comic details Maj Sandeep Unnikrishnan’s valour while he was fighting Ajmal Kasab’s associates in Taj Hotel, during 60 hour Mumbai terror attacks in Nov 2008.</p>
<p>Indian War Comics has also partnered with <a href="http://www.techjini.com">TechJini Solutions</a>, a Bangalore based IT company, to publish the stories on Smartphones and tablets using <a href="http://www.jinibooks.com">JiniBooks</a>, an interactive content publishing platform. <a href="http://www.jinibooks.com">JiniBooks</a>, enables small to medium size publishers and authors to reach bigger audience via digital medium. Authors can not only have static content but also build interactive magazines. Jinibooks is currently available only as an <a href="http://www.techjini.com/services-ipad.html">iPad application</a> and soon it will be available for <a href="http://www.techjini.com/services-android.html">Android</a> based tablets like Samsung tab etc. </p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.techjini.com/blog/2011/01/31/indian-war-heroes%e2%80%99-comics-on-ipad/' addthis:title='Indian war heroes’ comics on iPad ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.techjini.com/blog/2011/01/31/indian-war-heroes%e2%80%99-comics-on-ipad/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Introduction to HTML 5 (part 1 of 10)</title>
		<link>http://www.techjini.com/blog/2010/12/10/introduction-to-html-5/</link>
		<comments>http://www.techjini.com/blog/2010/12/10/introduction-to-html-5/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 10:07:34 +0000</pubDate>
		<dc:creator>Avidnyat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[techjini]]></category>
		<category><![CDATA[Bangalore based web development companies]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[TechJini Solutions]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[WHATWG]]></category>

		<guid isPermaLink="false">http://www.techjini.com/blog/?p=203</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.techjini.com/blog/2010/12/10/introduction-to-html-5/' addthis:title='Introduction to HTML 5 (part 1 of 10) '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>HTML 5 HTML is always considered as one of the important aspects of web development. Here, we are discussing about<a href="http://www.techjini.com/blog/2010/12/10/introduction-to-html-5/" class="searchmore">Read the Rest...</a><div class="clr"></div><div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.techjini.com/blog/2010/12/10/introduction-to-html-5/' addthis:title='Introduction to HTML 5 (part 1 of 10) ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.techjini.com/blog/2010/12/10/introduction-to-html-5/' addthis:title='Introduction to HTML 5 (part 1 of 10) '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div><p><strong>HTML 5</strong></p>
<p>HTML is always considered as one of the important aspects of <a href="http://www.techjini.com/services-webapplication.html">web development</a>. Here, we are discussing about HTML5.</p>
<p>HTML5 which is currently under development is the next major revision of the HTML standard. Like its immediate Predecessors HTML4.01 and XHTML 1.1 , HTML5 is a standard for structuring and presenting content on world wide web.</p>
<p>This new standard incorporates features like video playback , drag and drop , geolocation, data storage , visiting websites offline , forms and many more.</p>
<p>Here is a brief history of HTML5.</p>
<p> HTML5 which is currently under development is the next major revision of the HTML standard.</p>
<p> There was never any such thing as HTML 1</p>
<p> The first official specification was HTML 2.0, published by the IETF, the Internet Engineering Task Force.</p>
<p> Later on the role of the IETF was superceded by the W3C, the World Wide Web Consortium, where subsequent iterations of the HTML standard have been published.</p>
<p> In the latter half of nineties HTML 4.01 was published.</p>
<p> After HTML 4.01, the next revision to the language was called XHTML 1.0</p>
<p> The content of the XHTML 1.0 specification was identical to that of HTML 4.01. No new elements or attributes were added.</p>
<p> The only difference was in the syntax of the language.</p>
<p> Valid XHTML 1.0 document requires all tags and attributes to be in lowercase. All attributes must be quoted.All elements must have a closing tag.</p>
<p> These rules were similar to that of XML.So they were moving towards XML more.</p>
<p> Then the W3C published XHTML 1.1.</p>
<p> It seemed as if the W3C were losing touch with the day-to-day reality of publishing on the web as they were moving towards XML.</p>
<p> They began working on XHTML 2</p>
<p> XHTML 2 wasn’t going to be backwards compatible with existing web content or even previous versions of HTML</p>
<p> Representatives from Opera, Apple and Mozilla were unhappy with this direction.</p>
<p> They formed their own group: the Web Hypertext Application Technology Working Group, or WHATWG</p>
<p> They started working on HTML Standard and came out with new revision HTML5</p>
<p>The W3C uses a consensus-based approach: issues are raised, discussed, and voted on. </p>
<p>At the WHATWG, issues are also raised and discussed, but the final decision on what<br />
goes into a specification rests with the editor. The editor is Ian Hickson.</p>
<p> While HTML5 was being developed at the WHATWG, the W3C continued working on XHTML 2</p>
<p> Later on W3C admitted that the attempt to move the web from HTML to XML just wasn’t working.</p>
<p> Rather than start from scratch, they wisely decided that the work of the WHATWG should be used as the basis for any future version of HTML.</p>
<p> Later on W3C announced that they will stop working on XHTML 2 and they will support WHATWG.</p>
<p> There are two groups working on HTML5. The WHATWG is creating an HTML5 specification using its process of “commit then review.” The W3C HTML Working Group is taking that specification and putting it through its process of “review then<br />
commit.” </p>
<p><strong><a href="http://techjini.com">TechJini Solutions</a></strong><br />
TechJini Solutions is Bangalore, India based company working in the areas of software product engineering services and creating next generation software products that bring real business value. We take pride in our philosophy of taking on challenging problems and providing innovative and outstanding solutions. We are proud to develop applications on different mobile/tablet platforms including iPhone, iPad, BlackBerry and Android. </p>
<p>Next time, we will look at Forms in HTML 5. Feel free to email me for more details – avidnyat@techjini.com</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.techjini.com/blog/2010/12/10/introduction-to-html-5/' addthis:title='Introduction to HTML 5 (part 1 of 10) ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.techjini.com/blog/2010/12/10/introduction-to-html-5/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Height of &#8216;plagiarism&#8217;</title>
		<link>http://www.techjini.com/blog/2009/08/29/height-of-plagiarism/</link>
		<comments>http://www.techjini.com/blog/2009/08/29/height-of-plagiarism/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 11:38:34 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.techjini.com/blog/2009/08/29/height-of-plagiarism/</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.techjini.com/blog/2009/08/29/height-of-plagiarism/' addthis:title='Height of &#8216;plagiarism&#8217; '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>Today while generating leads Santosh came across one of the most shocking and ridiculous ways companies seem to be &#8216;trying&#8217;<a href="http://www.techjini.com/blog/2009/08/29/height-of-plagiarism/" class="searchmore">Read the Rest...</a><div class="clr"></div><div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.techjini.com/blog/2009/08/29/height-of-plagiarism/' addthis:title='Height of &#8216;plagiarism&#8217; ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.techjini.com/blog/2009/08/29/height-of-plagiarism/' addthis:title='Height of &#8216;plagiarism&#8217; '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div><p>Today while generating leads Santosh came across one of the most shocking and ridiculous ways companies seem to be &#8216;trying&#8217; to do business.</p>
<p>Verna Technologies &#8211; I thought a lot but I have no idea what these guys are trying to do. They have copied our site word by word, even the founders name <img src='http://www.techjini.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Only thing that is different is their address.</p>
<p>I tried to call the number but it is switched off, tried to contact their domain registrar but they are not working on Saturday. Will evaluate on Monday after talking to them once whether this calls for a legal action or not.</p>
<p>Are they real? or are they really so creative that they can&#8217;t even write what they have to offer?<br />
<a href='http://www.techjini.com/blog/wp-content/uploads/2009/08/techjini.JPG' title='TJHome'><img src='http://www.techjini.com/blog/wp-content/uploads/2009/08/techjini.thumbnail.JPG' alt='TJHome' /></a> |  <a href='http://www.techjini.com/blog/wp-content/uploads/2009/08/index.JPG' title='VernaHome'><img src='http://www.techjini.com/blog/wp-content/uploads/2009/08/index.thumbnail.JPG' alt='VernaHome' /></a><br />
<a href='http://www.techjini.com/blog/wp-content/uploads/2009/08/techjini_about.JPG' title='TJAbout'><img src='http://www.techjini.com/blog/wp-content/uploads/2009/08/techjini_about.thumbnail.JPG' alt='TJAbout' /></a> | <a href='http://www.techjini.com/blog/wp-content/uploads/2009/08/varna_about.JPG' title='VernaAbout'><img src='http://www.techjini.com/blog/wp-content/uploads/2009/08/varna_about.thumbnail.JPG' alt='VernaAbout' /></a><br />
<a href='http://www.techjini.com/blog/wp-content/uploads/2009/08/varna_contact.JPG' title='VernaContact'><img src='http://www.techjini.com/blog/wp-content/uploads/2009/08/varna_contact.thumbnail.JPG' alt='VernaContact' /></a></p>
<p><a href='http://www.techjini.com/blog/wp-content/uploads/2009/08/whoisvernatechnologies.png' title='WhoisVerna'><img src='http://www.techjini.com/blog/wp-content/uploads/2009/08/whoisvernatechnologies.thumbnail.png' alt='WhoisVerna' /></a></p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.techjini.com/blog/2009/08/29/height-of-plagiarism/' addthis:title='Height of &#8216;plagiarism&#8217; ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.techjini.com/blog/2009/08/29/height-of-plagiarism/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Restoring monitor resolution on 17&#8243; TFT</title>
		<link>http://www.techjini.com/blog/2008/02/16/restoring-monitor-resolution-on-17-tft/</link>
		<comments>http://www.techjini.com/blog/2008/02/16/restoring-monitor-resolution-on-17-tft/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 12:42:03 +0000</pubDate>
		<dc:creator>Ved</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.techjini.com/blog/2008/02/16/restoring-monitor-resolution-on-17-tft/</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.techjini.com/blog/2008/02/16/restoring-monitor-resolution-on-17-tft/' addthis:title='Restoring monitor resolution on 17&#8243; TFT '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div>A lot of times I found my Acer 1702W 17&#8243; TFT Monitor loosing its native resolution of 1400 X 900,<a href="http://www.techjini.com/blog/2008/02/16/restoring-monitor-resolution-on-17-tft/" class="searchmore">Read the Rest...</a><div class="clr"></div><div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.techjini.com/blog/2008/02/16/restoring-monitor-resolution-on-17-tft/' addthis:title='Restoring monitor resolution on 17&#8243; TFT ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.techjini.com/blog/2008/02/16/restoring-monitor-resolution-on-17-tft/' addthis:title='Restoring monitor resolution on 17&#8243; TFT '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_counter addthis_pill_style"></a></div><p>A lot of times I found my <strong>Acer 1702W 17&#8243; TFT Monitor</strong> loosing its native resolution of <strong>1400 X 900</strong>, which is ideal for the monitor to display the content properly. Even after doing a lot of search on various search engines I couldn&#8217;t find a method that guaranteed me results. Though I have an <em>Intel Accelerated Graphics</em> driver, I feel this solution should work for any card <em>ATI, NVidia</em> etc.</p>
<p>Follow the following steps in order to get back your monitor&#8217;s native resolution: -</p>
<p>1. From display settings, set screen resolution to higher resolution, I changed it to 1600 X 1024.<br />
2. From your display driver installation CD, run setup application.<br />
3. After the drivers are installed restart your computer.</p>
<p>This would bring back the native resolution for the monitor.</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.techjini.com/blog/2008/02/16/restoring-monitor-resolution-on-17-tft/' addthis:title='Restoring monitor resolution on 17&#8243; TFT ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.techjini.com/blog/2008/02/16/restoring-monitor-resolution-on-17-tft/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

