Thursday, September 19, 2013

iPhone 5S fastest smart phone?

Performance numbers

http://www.anandtech.com/show/7335/the-iphone-5s-review/5

Tuesday, July 23, 2013

Leap Motion

 After mouse and multi-touch this innovative device has the potential to change the way we interact with computing devices. Don't miss the video on the home page of leap motion website...

https://www.leapmotion.com/

Wednesday, April 25, 2012

SilentCircle

With all the internet privacy concerns looming thanks to CISPA. Phil Zimmermann (original PGP founder) is announcing that he is starting a new startup company called Silent Circle.
Silent Circle will feature Encrypted EMail, Encrypted Mobile Phone Calls, Encrypted VOIP Teleconference, Encrypted Instant Messaging all in one place.

Checkout the silent circle website for more details

https://silentcircle.com/

Monday, March 19, 2012

Boot 2 Gecko

Boot 2 Gecko is the complete phone stack (including the telephony and message stack)on a Gecko engine.
Basically its a Mozilla's Gecko rendering engine running on a very light-weight Linux core.

Exciting facts about this mobile OS is
- Since the core of this stack is Gecko you can write apps using HTML5/CSS/JS
- Even the interface is written in HTML5.

https://wiki.mozilla.org/B2G

Wednesday, March 14, 2012

Happy π (Pi) day

Today is Pi Day.  Celebrate Pi day listening to this musical interpretation of Pi...

Sunday, January 15, 2012

LENR (low energy nuclear reactions)

NASA's LENR focuses on harnessing nuclear power at low energy levels.

Checkout the video to know more about LENR

Sunday, December 4, 2011

Trello: Simple and effective webapp

I tried many tools to manage my tasks and projects but nothing is as simple as this webapp. The resemblance of the tool to SCRUM wall makes it very intuitive. Hope my search for a to-do management tool will come to an end with this tool.
 Checkout Trello

Saturday, September 24, 2011

Dr. JP makes out a case for strengthening CBI and ...

Lok Satta News: Dr. JP makes out a case for strengthening CBI and ...: Lok Satta Party President Dr. Jayaprakash Narayan today placed startling facts before the Joint Parliamentary Committee on the Lokpal Bill a...

Thursday, September 1, 2011

Nitro-Hydrogen economy

Will Ammonia beat petroleum an established form of fuel and budding alternative fuel technologies like hydrogen etc.. Unlike petroleum ammonia burns cleanly and produces nitrogen and water (no green house gas). Also storing and transporting Ammonia is much cheaper and easier compared to Hydrogen. Silver Eagles Energy claims that they developed system which can replace the current petroleum based economy. Hope this Nitro-Hydrogen economy will put an end to the current fuel crisis.

Monday, August 15, 2011

Google acquires Motorola

I think Google is left with no other option to strengthen its patent portfolio in the mobile domain immediately to counter Apple and Microsoft's attack on Android for patent violations.

http://googleblog.blogspot.com/2011/08/supercharging-android-google-to-acquire.html

Wednesday, July 6, 2011

Hacking blogger template to create stand-alone archive page.

After knowing about the Blogger's "standalone page" feature I wanted to add archive page for my blog. To start with I explored blogger gadgets, there is no way for adding the gadget to display only in one page and hide it in rest of the pages without editing the blogger template (I wish blogger will add this feature soon). Later I explored all the hacks on the internet but none seem to give the results what I wanted. After some trail and error I devised a method to add the archive page. I tried this hack and added an archive page for this blog and my photo-blog.
At a very high-level my approach is
- Add default blogger archive gadget.
- Edit the blogger template to hide the gadget using CSS.
- Create a page with javascript to parse the hidden archive gadget DOM and display the data in the required format.

More detailed steps below.
  •  Log in to your blogger account select Design link of the blog which you want to modify
  • Select Page Elements tab and click on Add a Gadget and select blogger-archive gadget
  • Now configure the blog-archive gadget with below options
    - style: choose
    - Options: check  
    - Archive Frequency: choose monthly
  • After adding the archive gadget navigate to Edit HTML tab and take backup of your template by clicking Download Full Template. This backup will help you if you want to revert to old template.
  • Click on Expand Full Template and  add the following CSS snippet in the tab section of the template and the save it.

  • #BlogArchive1 {  display:none; }                           

  • Navigate to Posting -> Edit Pages -> NewPage in the page editor switch to Edit HTML modeand copy the following javascript and publish the page.

  • <div id="myArch" style="float: left;">
    <script type="text/javascript">
    var archContent = document.getElementById("ArchiveList").innerHTML;
    var linkIdx=archContent.indexOf('post-count-link');
    var pCL= archContent.slice(linkIdx);
    var year;
    var yrOrMon;
    do{
    yrOrMon = /post-count-link.*?>(.*?)<\/a>/i.exec(pCL); // ';
    if (isNaN(yrOrMon[1])){
    var sIndx = pCL.search(/<ul class="?posts"?>/i);
    var eIndx = pCL.indexOf('<\/ul>',sIndx);
    document.write('<b>'+yrOrMon[1]+' '+year+'<\/b><br \/>');
    document.write(pCL.slice(sIndx, eIndx)+'<\/ul>');
    }else{
    year = yrOrMon[1];
    }
    linkIdx=pCL.indexOf('post-count-link', 15);
    pCL= pCL.slice(linkIdx);
    } while( linkIdx > 0);
    </script></div>

 You may need to change the script if you want to change the format or look and feel of the archive page.

Advertisements:
Beginning Google Blogger ,Google Blogger For Dummies (For Dummies (Computer/Tech)),Blogger: Beyond the Basics: Customize and promote your blog with original templates, analytics, advertising, and SEO (From Technologies to Solutions),

Tuesday, June 21, 2011

Graffiti on computer screen

I am a fan of graffiti. I never imagined that the most interesting part of the graffiti, the motion can be captured using a markup language. GML (Graffiti Markup Language) is a universal, XML-based, open file format designed to store graffiti motion data (x coordinates, y coordinates and time) thanks to EvanRoth and team.
Mozilla hosted a website(www.markup.mozilla.org) dedicated for this new markup language.You can create and share your graffiti markups here.
Graffiti created by me on the mozilla's markup site you can play the motion of this graffiti here.
This site uses canvas HTML5 element and javascript to capture the graffiti motion and create a GML file.
Note: I am not sure whether this website works in browsers other than FireFox.

Advertisements:
GRAFF: The Art & Technique of Graffiti, Graffiti World (Updated Edition): Street Art from Five Continents, Graffiti Planet: The Best Graffiti from Around the World, Wall and Piece

Tuesday, April 12, 2011

Switching Firefox update channels

After Mozilla's announcement of switching to an accelerated development process, Firefox on mozilla-central will be forked to aurora channel. Going ahead Firefox builds will be available on nightly, aurora, beta and release channels. There is no straight forward way to switch the update channel in the current nightly builds, but you can achieve this by editing about:config on the latest nightly builds.

Steps to enable channel switching option in Firefox:
  •  In address bar type in about:config and hit enter.
  • Right-click the parameter listing and select New > String from the options
  • Enter app.update.desiredChannel and give the new parameter the value release, beta or aurora.
  • open the Help > About Minefield menu. you will see the option to change the channel

Tuesday, March 22, 2011

Mozilla's revamped development process

Inspired by the success of Google Chrome's success Mozilla drafted a new development process (schedule-driven) for its Firefox browser. As per the draft Firefox we will see frequent releases with lesser features.

More details here http://people.mozilla.com/~sayrer/2011/temp/process.html