<?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>Gautam Gupta&#039;s Blog</title> <atom:link href="http://gaut.am/feed/" rel="self" type="application/rss+xml" /><link>http://gaut.am</link> <description>On Life, Open Source and Other Things!</description> <lastBuildDate>Fri, 03 Feb 2012 09:42:21 +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>Making a Simple OCR Android App using Tesseract</title><link>http://gaut.am/making-an-ocr-android-app-using-tesseract/</link> <comments>http://gaut.am/making-an-ocr-android-app-using-tesseract/#comments</comments> <pubDate>Wed, 09 Nov 2011 15:43:24 +0000</pubDate> <dc:creator>Gautam</dc:creator> <category><![CDATA[Android]]></category> <category><![CDATA[App]]></category> <category><![CDATA[Tesseract]]></category><guid isPermaLink="false">http://gaut.am/?p=1219</guid> <description><![CDATA[This post tells you how you can easily make an Android application to extract the text from the image being captured by the camera of your Android phone! We&#8217;ll be using a fork of Tesseract Android Tools by Robert Theis called Tess Two. They are based on the Tesseract OCR Engine (mainly maintained by Google) [...]]]></description> <content:encoded><![CDATA[<p>This post tells you how you can easily make an Android application to extract the text from the image being captured by the camera of your Android phone! We&#8217;ll be using a fork of Tesseract Android Tools by Robert Theis called Tess Two. They are based on the Tesseract OCR Engine (mainly maintained by Google) and Leptonica image processing libraries.<span id="more-1219"></span></p><p><strong>Note</strong>: These instructions are for <a title="Android SDK" href="http://developer.android.com/sdk/index.html">Android SDK</a> r16 and <a title="Android NDK" href="http://developer.android.com/sdk/ndk/index.html">Android NDK</a> r7, at least for the time being (written at <a href="https://github.com/rmtheis/tess-two/tree/0cddf3aad30b9e826d7e0286525a39e3c1b918c3">this tree</a>). You would also need proper PATH variables added.</p><ol><li>Download or check out the source from this <a title="Tess Two by Robert Theis" href="https://github.com/rmtheis/tess-two">git repository</a>. This project contains tools for compiling the Tesseract, Leptonica, and JPEG libraries for use on Android. It contains an Eclipse Android library project that provides a Java API for accessing natively-compiled Tesseract and Leptonica APIs. You don&#8217;t need eyes-two code, you can do without it.</li><li>Build this project using these commands (easy to do it on Mac and Linux &#8211; <strong>does not work on Windows </strong>- try an Ubuntu VM) (here, tess-two is the directory inside tess-two &#8211; the one at the same level as of tess-two-test):<pre>cd &lt;project-directory&gt;/tess-two
ndk-build
android update project --path .
ant release</pre></li><li>Now import the project as a library in Eclipse. File -&gt; Import -&gt; Existing Projects into workspace -&gt; tess-two directory. Right click the project, Android Tools -&gt; Fix Project Properties. Right click -&gt; Properties -&gt; Android -&gt; Check Is Library.</li><li>Configure your project to use the tess-two project as a library project: Right click your project name -&gt; Properties -&gt; Android -&gt; Library -&gt; Add, and choose<code></code> <em>tess-two</em>. You&#8217;re now ready to OCR any image using the library.</li><li>First, we need to get the picture itself. For that, I found a simple code to capture the image <a title="Simple Android Photo Capture" href="http://labs.makemachine.net/2010/03/simple-android-photo-capture/">here</a>. After we have the bitmap, we just need to perform the OCR which is relatively easy. Be sure to correct the rotation and image type by doing something like:<pre>// _path = path to the image to be OCRed
ExifInterface exif = new ExifInterface(_path);
int exifOrientation = exif.getAttributeInt(
        ExifInterface.TAG_ORIENTATION,
        ExifInterface.ORIENTATION_NORMAL);

int rotate = 0;

switch (exifOrientation) {
case ExifInterface.ORIENTATION_ROTATE_90:
    rotate = 90;
    break;
case ExifInterface.ORIENTATION_ROTATE_180:
    rotate = 180;
    break;
case ExifInterface.ORIENTATION_ROTATE_270:
    rotate = 270;
    break;
}

if (rotate != 0) {
    int w = bitmap.getWidth();
    int h = bitmap.getHeight();

    // Setting pre rotate
    Matrix mtx = new Matrix();
    mtx.preRotate(rotate);

    // Rotating Bitmap &amp; convert to ARGB_8888, required by tess
    bitmap = Bitmap.createBitmap(bitmap, 0, 0, w, h, mtx, false);
    bitmap = bitmap.copy(Bitmap.Config.ARGB_8888, true);
}</pre></li><li>Now we have the image in the bitmap, and we can simple use the TessBaseAPI to run the OCR like:<pre>TessBaseAPI baseApi = new TessBaseAPI();
// DATA_PATH = Path to the storage
// lang for which the language data exists, usually "eng"
baseApi.init(DATA_PATH, lang); baseApi.setImage(bitmap);
String recognizedText = baseApi.getUTF8Text();
baseApi.end();</pre></li><li>Now that you&#8217;ve got the OCRed text in the variable <em>recognizedText</em>, you can do pretty much anything with it &#8211; translate, search, anything! ps. You can add various language support by having a preference and then downloading the required language data file from <a title="Language Data Files Download for Tesseract" href="http://code.google.com/p/tesseract-ocr/downloads/list">here</a>. You might even put them in the assets folder and copy them to the SD card on start.</li></ol><p>To make things easy, and for you to have a better understanding, I have uploaded a simple application on OCR that makes use of Tess Two on Github called <a title="Simple Android OCR Android Application by Gautam" href="https://github.com/GautamGupta/Simple-Android-OCR">Simple Android OCR</a> (for beginners). If you want a full-fledged application, that has a selectable region while capturing the image, translating the text, preferences etc., then you can checkout Robert Theis&#8217;s <a title="Android OCR Application by Robert Theis" href="https://github.com/rmtheis/android-ocr">Android OCR application</a> on Github too (for intermediate+)!</p><p><strong>Updated</strong>: 3 February 2012</p><p><strong>References</strong></p><ol><li><a title="Using Tesseract Tools for Android to Create a Basic OCR App" href="http://rmtheis.wordpress.com/2011/08/06/using-tesseract-tools-for-android-to-create-a-basic-ocr-app/">Using Tesseract Tools for Android to Create a Basic OCR App</a> by Robert Theis</li><li><a title="Simple Android Photo Capture by MakeMachine" href="http://labs.makemachine.net/2010/03/simple-android-photo-capture/">Simple Android Photo Capture</a> by MakeMachine</li><li>tess-two README</li></ol><p><strong>Troubleshooting</strong></p><div class='et-learn-more clearfix'><h3 class='heading-more'><span>About updating PATH</span></h3><div class='learn-more-content'>You need to update your PATH variable for the commands to function, otherwise you would see a command not found error. For Android SDK, go <a href="http://developer.android.com/sdk/installing.html#sdkContents">here</a> and expand <em>How to update your PATH</em> section. For Android NDK, use the same process to add the <em>android-ndk</em> directory to the PATH variable. Check <a title="Setting proper path variables on linux" href="http://www.harshadura.net/2011/12/making-simple-ocr-android-app-using.html">Setting proper path variables</a> by Harsha Dura for more information for linux users.</div></div><p><strong>Translations</strong></p><ol><li><a title="Making a Simple OCR Android App using Tesseract Tutorial in Japanese by datsuns" href="http://d.hatena.ne.jp/datsuns/20120105">Japanese</a> by datsuns</li></ol> ]]></content:encoded> <wfw:commentRss>http://gaut.am/making-an-ocr-android-app-using-tesseract/feed/</wfw:commentRss> <slash:comments>59</slash:comments> </item> <item><title>Minimum Learning Program in School</title><link>http://gaut.am/minimum-learning-program-in-school/</link> <comments>http://gaut.am/minimum-learning-program-in-school/#comments</comments> <pubDate>Thu, 03 Nov 2011 12:19:01 +0000</pubDate> <dc:creator>Gautam</dc:creator> <category><![CDATA[Education]]></category> <category><![CDATA[Exams]]></category><guid isPermaLink="false">http://gaut.am/?p=1211</guid> <description><![CDATA[Our school has introduced a new program named &#8220;Minimum Learning Program&#8221;, in which teachers basically give you the questions that would come in the Unit Test (weekly tests, not the term-end exams) which could help you get get you the passing marks. This program is already in effect and in my opinion, this system is [...]]]></description> <content:encoded><![CDATA[<p>Our school has introduced a new program named &#8220;Minimum Learning Program&#8221;, in which teachers basically give you the questions that would come in the Unit Test (weekly tests, not the term-end exams) which could <del>help you get</del> get you the passing marks. This program is already in effect and in my opinion, this system is flawed from the bottom up.</p><p><span id="more-1211"></span></p><ol><li>This program would encourage students to just learn the things that would come in the UT to help them pass. This means that they won&#8217;t actually try to study anything more than that, leaving them with half-learned concepts or even quarter-learned concepts. They wouldn&#8217;t actually read the book, but just skim through the topics. Even though it might help them achieve short term results and improve the school&#8217;s Xth class result, it won&#8217;t help them in their entire life for sure!</li><li>Some students might still not even learn that portion and just cram up the answer of those question. I know many like this. This is definitely a setback as it removes the &#8220;learning&#8221; word from the program&#8217;s name itself.</li><li>Going back to the history of the start of exams, they were basically made to compare the students&#8217; ability. Forcefully passing them is illogical. With this program in effect, logically, students could just only be compared based on the questions that the teachers didn&#8217;t give them before the test.</li></ol><p>At the end, I would just like to say that this is not a &#8220;Minimum Learning Program&#8221;, but a &#8220;Minimum Scoring Program&#8221;.</p><p><strong>Update</strong>: This post was written on the basis of as-before-told and as-before-done, which was just the beginning of the program. Now, instead of questions and instead of everyone, only the special students would be given very short notes from the whole chapter.</p> ]]></content:encoded> <wfw:commentRss>http://gaut.am/minimum-learning-program-in-school/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>SiriHome</title><link>http://gaut.am/sirihome/</link> <comments>http://gaut.am/sirihome/#comments</comments> <pubDate>Sat, 29 Oct 2011 19:23:50 +0000</pubDate> <dc:creator>Gautam</dc:creator> <category><![CDATA[Thoughts]]></category> <category><![CDATA[Apple]]></category> <category><![CDATA[Siri]]></category><guid isPermaLink="false">http://gaut.am/?p=1207</guid> <description><![CDATA[I was recently reading Steve Jobs&#8217;s biography by Walter Isaacson and I read that he had a music system in his whole house, and also used it as a microphone, to hear family&#8217;s discussions until his father discovered that and made him stop doing it. Now. You would have made the rest of the post [...]]]></description> <content:encoded><![CDATA[<p>I was recently reading Steve Jobs&#8217;s biography by Walter Isaacson and I read that he had a music system in his whole house, and also used it as a microphone, to hear family&#8217;s discussions until his father discovered that and made him stop doing it. Now. You would have made the rest of the post by yourself, by reading that title and the first sentence &#8212; exactly that. When Siri wasn&#8217;t there, sound could be played on the stereos and sound could be heard from the stereos. But what if we have a helper connected to that speaker, who gets the input, performs some search and says back the results? What&#8217;s the time, Siri? Siri, how&#8217;s the weather today? Where can I get a cup of coffee Siri? Just from your desk, or while reading the newspaper, think about it!</p><p>ps. Doesn&#8217;t necessarily need to be Siri, but that&#8217;s an interesting piece of software.</p> ]]></content:encoded> <wfw:commentRss>http://gaut.am/sirihome/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>If I don&#8217;t write on my blog, who would?</title><link>http://gaut.am/if-i-dont-write-on-my-blog-then-who-would/</link> <comments>http://gaut.am/if-i-dont-write-on-my-blog-then-who-would/#comments</comments> <pubDate>Thu, 27 Oct 2011 12:02:00 +0000</pubDate> <dc:creator>Gautam</dc:creator> <category><![CDATA[Announcements]]></category><guid isPermaLink="false">http://gaut.am/?p=1189</guid> <description><![CDATA[I have been asking this question to myself lately &#8211; &#8220;If I don&#8217;t write on my blog, then who would?&#8221;. I started this blog to mainly blog on tech-related things and announce the projects or plugins I make or work on &#8211; then, the tagline was &#8220;bbPress, WordPress and Other Things&#8221;. But now I&#8217;ve started [...]]]></description> <content:encoded><![CDATA[<p>I have been asking this question to myself lately &#8211; &#8220;If I don&#8217;t write on my blog, then who would?&#8221;. I started this blog to mainly blog on tech-related things and announce the projects or plugins I make or work on &#8211; then, the tagline was &#8220;bbPress, WordPress and Other Things&#8221;. But now I&#8217;ve started to blog upon other things, topics like my own life and hence the tagline of this blog is now &#8220;On Life, Open Source and Other Things&#8221;. Although you won&#8217;t find my writing to be of that quality which would get you intrigued to read each and every word of my blog, mainly because I would just blog to put my point across. <img src='http://gaut.am/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> <span id="more-1189"></span>The main problem is that I&#8217;ve the time to write something quickly, without giving some second thoughts, and that first draft still makes some sense. But when I&#8217;d read it again and again, correct the mistakes, run spell checks, that would take some time and hence discourage me from even blogging. Therefore, I&#8217;m going to make it a point to write a blog post at least every week, correct or partially correct, as a start. I might then even not need to run through my own post for corrections, it would just be perfect in the first shot. <img src='http://gaut.am/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><blockquote><p style="text-align: center;"><strong>Write easy. Write often.</strong></p></blockquote> ]]></content:encoded> <wfw:commentRss>http://gaut.am/if-i-dont-write-on-my-blog-then-who-would/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Sweet Sixteen</title><link>http://gaut.am/sweet-sixteen/</link> <comments>http://gaut.am/sweet-sixteen/#comments</comments> <pubDate>Wed, 19 Oct 2011 18:30:04 +0000</pubDate> <dc:creator>Gautam</dc:creator> <category><![CDATA[Announcements]]></category> <category><![CDATA[Announcement]]></category><guid isPermaLink="false">http://gaut.am/?p=1160</guid> <description><![CDATA[So it seems like I&#8217;ve revolved around the sun 16 times, without appreciating the fact that Earth takes such an effort in transporting us. The same day, Sri Lanka beat West Indies to win Sharjah Champions Trophy final and Columbia 18 was launched into orbit as some history sites tell me, but I was really [...]]]></description> <content:encoded><![CDATA[<p>So it seems like I&#8217;ve revolved around the sun 16 times, without appreciating the fact that Earth takes such an effort in transporting us. The same day, Sri Lanka beat West Indies to win Sharjah Champions Trophy final and Columbia 18 was launched into orbit as some history sites tell me, but I was really too young at that time to understand those things (I do now, though! <img src='http://gaut.am/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ). Put another way, I&#8217;ve turned 16 years old also dubbed as &#8220;sweet sixteen&#8221;. <img src='http://gaut.am/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> <span id="more-1160"></span>I just wanted to share some updates of my life, things that I was busy with, things I&#8217;ve been busy with and things I would be busy with.</p><h3>Things that I was busy with</h3><ol><li><a title="Speak Gautam Gupta - WordCamp Jabalpur '11" href="http://2011.jabalpur.wordcamp.org/2011/09/13/speaker-gautam-gupta/">WordCamp Jabalpur 2011</a> &#8211; This was one of those awesome events that I&#8217;ve attended in my life. I was invited as a speaker and I spoke on the topic bbPress. There I met many amazing people, whom I had been willing to meet for long. It was a very nice experience for me. I&#8217;d really like to thank the organising team. <img src='http://gaut.am/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></li><li><a title="CyberFundu" href="http://www.youtube.com/thecyberfundu">CyberFundu</a> &#8211; A YouTube channel of various cyber related videos, started with my schoolmates.</li></ol><h3>Things that I&#8217;ve been doing</h3><ol><li><a title="DatumDroid" href="http://datumdroid.com/">DatumDroid</a> &#8211; An Android application that I&#8217;m developing for IITB TechFest Appsurd event. Should be over by October or November.</li><li><a title="Fests.in" href="http://fests.in/">fests.in</a> &#8211; Check the site to know more! I hope it&#8217;s big! Launch date is probably the first day of 2012.</li><li><a title="AIMUN" href="http://aimun.in/">AIMUN</a> &#8211; Amity International Model United Nations, to be held in November.</li><li><a title="Discover I Foundation" href="http://discoveri.in/">Discover I</a> &#8211; As mentioned in a previous post, this is a project that I&#8217;m working on as a part of Youth Power.</li><li><a title="SpaceSet" href="http://spaceset.org/">SpaceSet</a> &#8211; A project in which we&#8217;ve to design a full Space settlement. The deadline keeps getting extended and we keep missing it. Next is November 15.</li><li><a title="CBSE" href="http://cbse.nic.in/">Studies</a> &#8211; CBSE&#8217;s CCE has really proven to be exhaustive, than stress relieving.</li></ol><h3>Things I&#8217;d be doing</h3><ol><li><a title="Google Code-in &#039;11" href="http://www.google-melange.com/gci/homepage/google/gci2011">Google Code-in &#8217;11</a>: I&#8217;d be participating in this year&#8217;s Google Code-in too! And try to make it to the Googleplex again to take the pictures I couldn&#8217;t, or forgot to. <img src='http://gaut.am/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ps. I&#8217;ve also made it to the front page of the competition&#8217;s site, check it out!</li><li><a title="TCS IT WIz" href="http://tcsitwiz.com/">TCS IT Wiz</a>: One of the competitions, I really like to attend. Would be held on 12 November, so I better prepare.</li><li><a title="Amity 46 MUN" href="http://amity46mun.com/">Amity 46 MUN</a> &#8211; Our school&#8217;s very own MUN to be held in December.</li><li>Learn Java, Python and C++</li></ol><p>Following all this, I had also deactivated my Facebook account as that really used to eat up a lot of my time and has wasted months of my life. I changed it&#8217;s password to something that I myself didn&#8217;t know, tried to reactivate it today for my birthday via forgot password, and it has asked me to wait for 24 hours &#8211; when all the fun would have got over. Though it looks like it has been activated, but I&#8217;m still locked out. When I again have access to it, I would probably permanently delete it.</p><h3>Future Plans</h3><p>In India and elsewhere, one really needs to study hard to get into a good university. I would probably do the same as it would help me get my skills polished and do even better in life. Being over-confident is bad. For that I would study more of Physics, Chemistry and Maths (subjects which I like the most) in the following two years &#8211; XI and XII, than coding. I would still like to continue with a project or two but not with that pace.</p><p>More things follow as soon as they hit my mind. Just want to make sure that it&#8217;s published at 00:00 IST. <img src='http://gaut.am/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /></p><p><strong>Update</strong>: As Shobhan tells me, our dear moon has revolved around me 204 times.</p> ]]></content:encoded> <wfw:commentRss>http://gaut.am/sweet-sixteen/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Announcing Discover I Foundation</title><link>http://gaut.am/announcing-discover-i/</link> <comments>http://gaut.am/announcing-discover-i/#comments</comments> <pubDate>Sat, 08 Oct 2011 11:17:19 +0000</pubDate> <dc:creator>Gautam</dc:creator> <category><![CDATA[Announcements]]></category> <category><![CDATA[Announcement]]></category> <category><![CDATA[Discover I]]></category><guid isPermaLink="false">http://gaut.am/?p=1151</guid> <description><![CDATA[I&#8217;m proud to announce a new organisation named Discover I, which helps in bringing out the hidden talent among the underprivileged children to the real world. Visit the website to know more or like the Facebook page to show your support.]]></description> <content:encoded><![CDATA[<p><img class="size-full wp-image-1152 alignleft" title="Discover I Foundation" src="http://gaut.am/wp-content/uploads/2011/10/logo.png" alt="Discover I Foundation Logo" width="195" height="52" />I&#8217;m proud to announce a new organisation named Discover I, which helps in bringing out the <em>hidden</em> talent among the underprivileged children to the real world. Visit the <a title="Discover I Foundation" href="http://discoveri.in/">website</a> to know more or like the <a title="Discover I Foundation Facebook Page" href="http://www.facebook.com/pages/Discover-I-Foundation/184864394923344">Facebook page</a> to show your support. <img src='http://gaut.am/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://gaut.am/announcing-discover-i/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Deactivated My Facebook Account</title><link>http://gaut.am/deactivated-fb/</link> <comments>http://gaut.am/deactivated-fb/#comments</comments> <pubDate>Mon, 22 Aug 2011 18:30:31 +0000</pubDate> <dc:creator>Gautam</dc:creator> <category><![CDATA[Social Networking]]></category> <category><![CDATA[Facebook]]></category> <category><![CDATA[life]]></category><guid isPermaLink="false">http://gaut.am/?p=1059</guid> <description><![CDATA[I have deactivated my Facebook account, following mass requests from my mind and I don&#8217;t plan to reactivate it &#8211; am happy without it. I&#8217;d probably join Google+ when it removes its age limit. I&#8217;ve already migrated all my contacts to Gmail and pictures/videos to Picasa. I have also resumed coding &#8211; 3 patches and [...]]]></description> <content:encoded><![CDATA[<p>I have deactivated my Facebook account, following mass requests from my mind and I don&#8217;t plan to reactivate it &#8211; am happy without it. I&#8217;d probably join Google+ when it removes its age limit. I&#8217;ve already migrated all my contacts to Gmail and pictures/videos to Picasa. I have also resumed coding &#8211; 3 patches and a plugin in a day is a good start. <img src='http://gaut.am/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> My exams are near too (starting ~September 10), so there would be a bit pause on coding at that time. <img src='http://gaut.am/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /></p><p><strong>Update</strong>: I&#8217;ve permanently deleted it. <img src='http://gaut.am/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://gaut.am/deactivated-fb/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Technothlon 2011 Question Papers</title><link>http://gaut.am/technothlon-2011-question-papers/</link> <comments>http://gaut.am/technothlon-2011-question-papers/#comments</comments> <pubDate>Mon, 18 Jul 2011 14:50:27 +0000</pubDate> <dc:creator>Gautam</dc:creator> <category><![CDATA[Education]]></category> <category><![CDATA[Answers]]></category> <category><![CDATA[IQ]]></category> <category><![CDATA[Quiz]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Technothlon]]></category><guid isPermaLink="false">http://gaut.am/?p=1048</guid> <description><![CDATA[I participated in Technothlon yesterday and the questions were amazing, the marking scheme too. Never thought of using Euler&#8217;s equation in such a way! For those who weren&#8217;t able to participate or their partners took the question papers, I have uploaded a scanned copy of it. It contains some signs, answers, wrong answers, drawings etc. [...]]]></description> <content:encoded><![CDATA[<p>I participated in Technothlon yesterday and the questions were amazing, the marking scheme too. Never thought of using Euler&#8217;s equation in such a way! For those who weren&#8217;t able to participate or their partners took the question papers, I have uploaded a scanned copy of it. It contains some signs, answers, wrong answers, drawings etc. made by us, please ignore that. <img src='http://gaut.am/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br /> <span id="more-1048"></span></p><h2>Junior</h2><p>You can view it below or <a title="Technothlon 2011 Junior Squad Question Paper PDF Download" href="http://gaut.am/wp-content/uploads/2011/07/Technothlon-2011-Junior-Squad-Question-Paper.pdf">download the PDF</a> (2.1 mb, water-marked).</p><p><iframe style="width: 584px; height: 500px;" src="http://docs.google.com/gview?url=http://gaut.am/wp-content/uploads/2011/07/Technothlon-2011-Junior-Squad-Question-Paper.pdf&amp;embedded=true" frameborder="0" width="584" height="500"></iframe></p><h2>Hauts (Senior)</h2><p>You can view it below or <a title="Technothlon 2011 Hauts (Senior) Squad Question Paper PDF Download" href="http://gaut.am/wp-content/uploads/2011/07/Technothlon-2011-Hauts-Senior-Squad-Question-Paper.pdf">download the PDF</a> (2.7 mb, water-marked).</p><p><iframe style="width: 584px; height: 500px;" src="http://docs.google.com/gview?url=http://gaut.am/wp-content/uploads/2011/07/Technothlon-2011-Hauts-Senior-Squad-Question-Paper.pdf&amp;embedded=true" frameborder="0" width="584" height="500"></iframe></p> ]]></content:encoded> <wfw:commentRss>http://gaut.am/technothlon-2011-question-papers/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Trip to Googleplex</title><link>http://gaut.am/trip-to-googleplex/</link> <comments>http://gaut.am/trip-to-googleplex/#comments</comments> <pubDate>Sat, 11 Jun 2011 19:07:26 +0000</pubDate> <dc:creator>Gautam</dc:creator> <category><![CDATA[Announcements]]></category> <category><![CDATA[Pictures]]></category> <category><![CDATA[bbPress]]></category> <category><![CDATA[Development]]></category> <category><![CDATA[gci]]></category> <category><![CDATA[Google]]></category><guid isPermaLink="false">http://gaut.am/?p=1029</guid> <description><![CDATA[Helloe folks! Did I tell you about my Google Code-in achievement? As a part of the prize, I also got a chance to visit the Googleplex in Mountain View, California! Yay! And I was there from June 5th to 11th and had loads of fun touring the Googleplex, talking to Googlers, getting Google Goodies including [...]]]></description> <content:encoded><![CDATA[<p>Helloe folks! Did I tell you about my <a title="Google Code-in – In the Top 5! W00t!" href="http://gaut.am/google-code-in-in-the-top-5-w00t/">Google Code-in achievement</a>? As a part of the prize, I also got a chance to visit the Googleplex in Mountain View, California! Yay! And I was there from June 5<sup>th</sup> to 11<sup>th</sup> and had loads of fun touring the Googleplex, talking to Googlers, getting Google Goodies including the <em>Bug</em>droid, buying Google Schwag and what not. <img src='http://gaut.am/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p><p><span id="more-1029"></span><img class="aligncenter" title="Google Code-in" src="http://code.google.com/opensource/gci/2010-11/images/gcilogo.jpg" alt="Google Code-in Flier" width="300" height="200" /></p><p>The trip to Google was one of the most memorable and happiest moments of my life. I got to meet all the intelligent high-school coders from around the world, meet all the amazing Googlers and learn from them, receive a beautiful (but heavy <img src='http://gaut.am/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ) trophy, have a lunch at Charlie&#8217;s Cafe at Google HQ, hack around the Google buildings, clicking pictures in photography-prohibited areas (well, kidding <img src='http://gaut.am/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ), getting the Google Goodies (which included bottles, chocolates, pens, notebooks, books, stickers, big android plushie aka <em>bug</em>droid, souvenirs, shirts, jackets and a <em>blanket</em>), buying Google Schwag (mouse, torch, key chain, USB port hub and other geeky stuff), having wonderful dinners at restaurants, touring the California Academy of Sciences and riding those cool Segways. It all amounted to be a whole ton of fun and enjoyment, but wouldn&#8217;t of course not have been possible without the efforts and hard work of <a title="Google Code-in and Why I Care - By Carol Smith" href="http://fossygirl.blogspot.com/2010/11/google-code-in-and-why-i-care.html">Carol</a>, Stephanie and the whole Google team, to which I salute!</p><p>A picture says a thousand words and, I have ~150 pictures uploaded on Picasa. That amounts to 150,000 words! OMG! Here is a slideshow of all of the pics that I took.</p><p><object width="400" height="267" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="https://picasaweb.google.com/s/c/bin/slideshow.swf" /><param name="flashvars" value="host=picasaweb.google.com&amp;captions=1&amp;hl=en_US&amp;feat=flashalbum&amp;RGB=0x000000&amp;feed=https%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Fgautam.2011%2Falbumid%2F5628116390259792849%3Fkind%3Dphoto%26alt%3Drss%26authkey%3DGv1sRgCLuZx9LTp9D7cg" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" /><embed width="400" height="267" type="application/x-shockwave-flash" src="https://picasaweb.google.com/s/c/bin/slideshow.swf" flashvars="host=picasaweb.google.com&amp;captions=1&amp;hl=en_US&amp;feat=flashalbum&amp;RGB=0x000000&amp;feed=https%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Fgautam.2011%2Falbumid%2F5628116390259792849%3Fkind%3Dphoto%26alt%3Drss%26authkey%3DGv1sRgCLuZx9LTp9D7cg" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></p> ]]></content:encoded> <wfw:commentRss>http://gaut.am/trip-to-googleplex/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Google Code-in Grand Prize Winners Announced!</title><link>http://gaut.am/google-code-in-winners-announced/</link> <comments>http://gaut.am/google-code-in-winners-announced/#comments</comments> <pubDate>Mon, 14 Feb 2011 18:00:52 +0000</pubDate> <dc:creator>Gautam</dc:creator> <category><![CDATA[Announcements]]></category> <category><![CDATA[gci]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[Open Source]]></category><guid isPermaLink="false">http://gaut.am/?p=1014</guid> <description><![CDATA[Google Gode-in 2010 Grand Prize Winners have been officially announced on the Google Open Source blog. You can view the list here (it is ordered by last name, you can view the rank-wise list here in which I&#8217;m 5th). Google is inviting 14 participants instead of the pre-announced 10 to their Google Headquarters in Mountain [...]]]></description> <content:encoded><![CDATA[<p>Google Gode-in 2010 Grand Prize Winners have been officially announced on the Google Open Source blog. You can view the list <a title="Google Code-in 2010 Grand Prize Winners" href="http://google-opensource.blogspot.com/2011/02/google-code-in-grand-prize-winners.html">here</a> (it is ordered by last name, you can view the rank-wise list <a title="Google Code-in 2010 Rankings" href="http://0-8-20110320.socghop.appspot.com/gci/program/show_ranking/google/gci2010">here</a> in which I&#8217;m 5<sup>th</sup>). <img src='http://gaut.am/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p><p>Google is inviting <strong>14</strong> participants instead of the pre-announced 10 to their Google Headquarters in Mountain View, California. This would happen somewhere in May. Anybody whom I could meet? <img src='http://gaut.am/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://gaut.am/google-code-in-winners-announced/feed/</wfw:commentRss> <slash:comments>17</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using xcache
Page Caching using xcache (User agent is rejected)
Database Caching 6/75 queries in 2.502 seconds using xcache
Object Caching 1096/1220 objects using xcache

Served from: gaut.am @ 2012-02-05 13:23:14 -->
