The first ever Chrome Live Coming to a screen near you on April 22nd


Chrome was a big bet when it was introduced six years ago and has since grown to provide a simpler, speedier and safer web for more than 750 million users around the world. Today, Chrome is an integrated hardware and software solution for work that meets the challenges of and innovates upon traditional platforms.


Join us online April 22nd at 10:00am PDT at Chrome Live, our first-ever online event, to hear from Googlers, technical experts and our customers about how Chrome is meeting the needs of a more mobile, social and cloud-oriented workplace. At Chrome Live, you’ll:

  • Have a front-row seat to two keynotes from:
    • Amit Singh, President of Google for Work, who’ll share how Chrome for Work is part of the transformational agenda of many businesses today. He’ll also be announcing a number of new products coming to the Chrome for Work family.
    • Rajen Sheth, Director of Product Management for Chrome for Work, who’ll discuss how devices have revolutionized the way we work. He’ll also uncover a few pathways of our top-secret roadmap and may have a few surprises in store.
    • Learn how the web, meeting technology and digital displays are being reimagined with Chrome for Work product managers Saswat Panigrahi and Vidya Nagarajan
    • See live deployment and management demos by Chrome team experts
    • Hear from IT leaders at Netflix, Pinterest and Chico’s about integrating devices with the cloud and enabling IT admins at top companies to streamline day-to-day operations
    • Get a sneak peek at the team’s plans to continue innovating and addressing new needs in the market

    To be a part of Chrome Live, all you need is a comfortable seat, an Internet connection and a computer, tablet or phone; pants are optional but recommended. You’ll be able to interact with Google experts and ask questions.

    Register now to learn all this and more at the first Chrome Live event on Wednesday, April 22nd at 10:00am PDT. And even if you can’t attend on the scheduled dates, be sure to register to stay up to date on all things Chrome. Feel free to share your thoughts, impressions and questions using #chromelive15 on social media.
    Read More..

    Ubuntu 13 10 for Galaxy Nexus first look


    I have to say I was very excited to install freshly released Ubuntu 13.10 for Nexus devices. I couldnt resist so I took my old Galaxy Nexus (maguro) and I started the installation procedure. Its very simple to do it all manually. Screenshots below!

    I didnt have much time to play with this OS on my device, but so far I have mixed feelings. I am aware its the first public release and it MUST have bugs. Of course all fundamental features are working fine (GPS, modem, camera, Bluetooth, touch panel etc.) and on the project site its clearly stated that:
    "It is an experimental development snapshot that can potentially brick your device. It does not provide all of the features and services of a retail phone and cannot replace your current handset. This preview is the first release of a very new and unfinished version of Ubuntu and it will evolve quickly."
    So far I had few issues like not responding touch screen, system hangs from time to time or it slows down, so that you cant basically do anything except from reboot. However, in most cases its very snappy. Navigating through the system is completely different than on Android. There are no back or home keys, you need to swipe left/right/down/up and swiping effect is different if you swipe from the centre of the screen or from the edge.

    I have a feeling that the whole UI is sort of "too large". Massive icons are taking a lot of space and working with this interface is far from being intuitive. I think that this OS would be much more suitable for tablets instead, where the average screen size is 10".

    In current stage this OS is surely not suitable for daily use, but the developers are working very hard to fix all submitted issues and to preview all commits. Here are the screenshots:

    Home Screen with 3 additional desktops: Music, Applications and Videos


    Lock-screen (swipe left to unlock)


    System Settings, About the phone and Battery


    Phone, Messages and Contacts


    Calendar and Album


    Sort of "Quick Settings" available from the notification menu



    Installed applications screen and a "must have" app ;)


    Weather, Gmail and Notes


    Navigation panel (available on every screen, even lock-screen), File Manager and Camera



    That would be all for now. I think the first preview of the Ubuntu OS for phones looks very promising, however its officially available only for 3 devices for now and it cant be used as a daily driver just yet.

    Have any questions or comments? Feel free to share! Also, if you like this article, please use media sharing buttons (Twitter, G+, Facebook) below this post!
    Read More..

    SUM THE FIRST 50 EVEN NATURAL NUMBERS

    /*PROGRAM TO SUM THE FIRST 50 EVEN NATURAL NUMBERS*/
    #include<stdio.h>
    main()
    {
    int sum=0,i=2;
    while(i<=100)
    {
    sum+i;
    i+=2;
    }
    printf("Sum of first 50 even natural numbers=%d
    ",sum);

    getch();
    }

    OUTPUT
    Sum of first 50 natural numbers=2550


    Read More..

    Blog Archive

    Powered by Blogger.