Chronicles of Slumberia

Yeah its been mostly a time of slumber – when you have been awake all the time and yet sleeping throughout. I am writing this post to document my academic, technological and a little bit of personal life from the last post onwards. I shall try to use images wherever possible to indicate what I had been doing all this time.

Nov-Dec 2011

I had joined a corporate and was being prepared as a soldier to fight the mighty business and IT wars. Joining literally could remind someone of the drafting phase in the military – specifically in numbers.

Jan-June 2012

The first few months in a corporate environment are a period of settling in. Before that, the only interaction I had with any firm was with a biomedical product firm in Mumbai for which I had worked as a consultant on Qt/Embedded project. The work there was challenging and was mostly directed on my terms. In a corporate environment and in a service based IT industry, I guess the scenario changes ten folds. The working hours changed, coffee intake started, evenings were mostly spent in the office and dinners were seldom. Though there were awesome Tex CROs and high-end debuggers lying around, this was no more the college lab. This was the real deal! The workplace was indeed nice and so were its inhabitants but the work was taking its toll at both my educational and intellectual development. I was no more experimenting with cool technologies. Though I became a Qt ambassador and Nokia gave me an N9 for a project I did during my Masters days, but this was all old stuff. I was lagging behind. When people were talking about HTML5 and Nexus protocols on embedded devices, when Meego ended its journey and Tizen was released, when Raspberry Pi was being launched and dual core Cortex A-9 chips were being discussed on mailing lists, when Fedora 17 launched as I just sat and watched the pictures of release parties all over the world, I had embraced myself in corporate shackles. I looked at the mailing lists silently. I saw what all action I was missing. I used to sit on weekends with Chaitannya, Nishchay, Shravan, Tanushri – good ol’ gang and used to discuss. That was all that was left. I told Tanushri one day about a simple image which represented my situation -

Thanks to the person who made this graphic!

Yeah..I was moving way deep in my comfort zone. A salary at the end of the month, a place to stay and some wheels to drive had made me think more about something which I had never thought about – money. I had always been told that its the relentless quest for knowledge that should be your holy grail and money follows automatically. But unfortunately, the holy grail had taken a back seat now and the issue of money had cropped up. I had to buy formal clothes for work. (never ever bought them before in my life) It required money. Fuel required money and so did the dinner at plush restaurants.

In college life, clothes were a 3 year old pair of jeans, a few T-shirts received from Fedora or Wikipedia, any pair of shoes lying around in the dorm – one size fits all :-) Transport was a 2 km walk from room to lab and dinner was college mess (monthly bill = cost of a single night’s dinner as of now). Stipend money was generously paid by college from which I could buy a Sony PSP and Guitar sometime. My mobile was a Nokia 1202 which literally cost me Rs 1202 only that time.

An Android one was later bought from the consultancy money I got before joining the firm and later on when Nokia showered blessings with an N9 I had a good cellphone. That was the life I wanted to live. Bare minimum on outside. Charging inside. Compared to the work I was doing in college, this phase seemed like an era of slumber. Bling-bling outside, bare minimum inside.

July 2012

In view of the above observations about the course my life was taking and in light of the recent developments about serious chances of my lifelong dream of doing a PhD and pursuing a career in research, teaching and freelancing, I quit my job.

What next?

I thank Tanushri and Nishchay for supporting my decision and in fact being the people whom I followed. Oh yeah! they quit before me and in the prime of the youth are surging ahead to conquer the technological landscape. Kudos to them! So as indicated before, I’m looking to a life full on turmoil and highs and lows, a life of action, where I have to travel to Lonavla in a Rs 13 local train and write blogs while being happily unemployed. I read Prisig’s Zen and the Art of Motorcycle Maintenance in between which is enough to brainwash me for some more time.

I am engaged with a few tasks for now and am happy to take more freelancing work in the field of Embedded Linux/Qt, UI design etc. Feel free to ping me if you have some interesting tasks. Let the games begin!

Qt Apps on Android! Part Two : An App(le) a day

No guys, this post is not related to Apple Inc or Steve Jobs but to my previous post :) We now are in a position to have our development setup ready for Qt app development on Android so lets begin with the actual stuff. I shall take an example of the digital clock app you had seen in the previous post (reproduced here for your sake).

For some Qt newbies, its also going to be a tutorial on using Qt Creator effectively. We shall cover UI design and then do some coloring and stuff like that to make it more beautiful. Then we shall code the app so that your clock works.

Requirements

For your reference, I have put up this simple app on my git repo or maybe you can get the tarball from here

Step 1

Start the Necessitas Qt Creator and create a new Qt Gui Application from File > New File or Project > Qt Widget Project > Qt GUI Application

Step 2

Choose the project name and location and after that choose the Qt version as  Qt for Android which we created in the last post.

You can also select the Desktop version to for prototyping your app for the desktop x86 host. Once the project is created you can see the auto generated files under Project as shown below. The file tuxologycloxk.cpp is the one in which all the logic goes.

Step 3

Under Forms, click the .ui file and start making the UI. Its a pretty easy job actually, you have to drag and drop the required widgets and arrange them properly in something called as layouts. Just analyse a bit how I have created the UI for the clock.

You can drag and drop the Widgets from the left panel to the form view and the corresponding Objects will be created in the right top panel as shown above. The property for each project can be set directly from here only. For eg. the initial value (initValue) for the lcdNumber object has been set as 1200 above. You can actually set the widgets background as well as the whole application colour palette by changing properties of the respective objects.

Notes on StyleSheets

You can also apply styleSheets to make your app a bit beautiful too. For example the Exit text that you see in the application is actually a button with some styles applied. You can set styles using the UI editor quite easily. Just right click the corresponding widget and click on Change styleSheet. You will get window as shown below in which you can apply your desired style.

The above stylesheet changes a button from the boring button widget to a sleek black button which mixes well with the application’s look and feel.

Step 4

Look closely and you will understand that writing code is no big deal too. Just refer my digital clock source and browse through the code to understand it. Just a small reminder on creating signals and slots – You can click on the widget directly to create slots for the specific signals they will emit. For eg. right click Exit and select Go to slot.. A dialog box will ask you the signal which will be emitted and when you hit Ok a slot in the code will  be automatically generated. Now you can write whatever code you want to implement in that slot.

Step 5

Assuming that you have created the application, you can do some other settings too. Just click on Projects on the left panel and you will see different targets for you application. We had opted for Android as well as Desktop in the beginning so both shall be shown here. Click on Run and then Details under Package Configuration. You will see some configuration tabs as shown below. You can fine tune some stuff from here of course such as Android Permissions, app name, app icon etc.

You also have an option to either deploy local Qt libs for the device or use device’s libs. If you have installed Ministro from Android market to your device, just leave it to use the devices qt libs. However, if you are going to use the emulator, make sure you get the Ministro apk from here and install it on the emulator by selecting the third option below.

Once all is set its time to connect your device, set platform as Android and hit Run (Ctrl+R) You can see the compile output on the compile output window and the debug messages in Application Output window (hit Alt+3 or Alt+4 to switch) Watch out for any build issues too. I hope the same stuff works fine with an AVD too as I haven’t tried that out actually. I do all my testing on my rooted Sony Xperia mini x10 Pro and the first image in this post is what you should get if you try to build the TuxologyClock project for your device.

Thats all Folks! Happy hacking!

Qt Apps on Android! Part One : <3 is in the Air :)

Have you loved two tangentially apart technologies at the same time? Its like holding one girl’s hand while you woo another one ;) Yeah something like that is the case with me. To my girl – “Its OK sweety, I’m just talking about Qt and Android :)

There must have been a time when you would have thought, “Oh God, I wish I could just port all these apps I run on my desktop to my new android phone.” Or maybe you are one of hose who say, “I wish I could use my Android cell to prototype my new Qt based embedded device that I am making. It’d be something cool to show to those black shoes, red tie morons in the conference room.”

The Necessitas project comes to your aid guys. I shall be writing a short tutorial series on creating small Qt app like these :

in the speediest of ways and port it to your device. This part will consist of setting up the tools necessary for Qt application development on Android

Necessitas

Also known as Android Lighthouse project, this is the individually developed port of Qt for Android. Necessitas comes with a modified Qt Creator IDE for building, deploying and even debugging your applications directly for your Android device. You will be amazed to see the ease with which you can develop and debug your apps. Say thanks to BogDan Vatra and those unsung heroes who have brought this to you. Now lets begin.

Get Necessitas SDK

Get the Necessitas 0.3 online installer from here. I however downloaded the 0.1.1 version available as an offline install which serves the purpose well. Its available in old versions directory. The installation is pretty straight forward. Just run the installer and make sure that you install the SDK in /opt/necessitas. You may have to make your /opt 777 for sometime and then revert back to 755 once the installation is over.  The SDK mainly consists of the cross compiler for android on ARM and lots of cross compiled ARM libs for Qt. I have mentioned in previous posts how to do all that manually but here, its all ready for you :) Once the installation is over, you will get a Necesitas Qt Creator in your applications. This is almost same as your traditional Qt Creator IDE. We shall move on to configure it now.

Configure Qt Creator

Requirements :

  • Install ant if required by yum install ant
  • Check whether you have JDK with java -version
  • Get Android SDK from here
  • Get Android NDK from here

Step 1

Extract the SDK and NDK at some locations and start Necessitas Qt Creator/Qt Creator for Android and go to Tools>Options. Click Qt4 tab and Add a new qmake path. Give this new qmake path from /opt/necessitas/Android/<qtversion>/bin/qmake This qmake will make the projects and makefiles cross-compile ready. Give some name to it – maybe Qt for Android

Step 2

Now that you have the new Qt setup, Click the Android tab on the left and specify the SDK and NDK target and set proper toolchain as shown below. Also set the ant location and hit Apply

If you are not having any Android device, then create a AVD to test your app. Lastly, some configuration is also required on your device.

Step 3

Now, we have almost everything ready for development on our device, however to run a Qt app we need libraries on the target device. For this, there are two options. Either while developing application, an option to use local Qt libs can be selected or a nifty tool called Ministro can be used. Ministro is an android application that can be downloaded from the Android market. This application performs a one time download of Qt libs from the net on the device as required by the application you have created. In a simple application mostly it will do a mostly 8Mb install of QtCore and QtGui modules.

The next post will describe how to create a small digital clock app (as shown above) using the Qt Creator, something about putting Style Sheets in Qt apps and then get it on your device! Keep experimenting.

Source : http://sourceforge.net/p/necessitas/home/necessitas/

FUDCon↔FUNCon @ Pune 2011

There are many things you remember once an event is over and then there are some which are etched on your mind. I’ll always remember everyone saying thanks for the artwork and the Tee design. I was happy and thoroughly excited to see the Fedora Design team’s efforts plastered all over the venue! And oh yes! above all, Kashyap‘s geekish quote of the event, “That’s nested bullshit!” will always remain the identifying bit for this FUDCon.

Day1

I missed half of it, thanks to Air India and the morons who were dancing on the Trivandrum Airport runway and caused a 12 hour flight delay. I entered the COEP auditorium only at the exact moment when Sitaram’s Gitolite talk came to an end. Being a TCS guy now, I felt proud to have him on the venue :) I had a small chat with Sitaram and he as confused about my name (as its Dutt/Sharma sometimes, somewhere) I told him that I chop my name sometimes so that others don’t get intimidated by the string array overflow in my name :P I was escorted to the speaker’s lounge where I met Shravan, Saleem, Kushal, Arun SAG, Siddhesh, Shakthi and Aditya Patwari. Ankur Sinha Vaidik and Ratnadeep were among the new folks I had met and got along with well due to the familiar geek chemistry we all share. Satya, PJP and Rahul also greeted me and I was among the titans by now. Both of my talks were scheduled for the next day and I had to get some stuff/codes from my lab. So mostly I missed the other sessions on day one too.

Day2

I came on time for Harish’s talks and grabbed some swag from Saleem and went off to Seminar Hall where my talk was scheduled. I could mostly see people I already knew sitting among the attendees. There were some new students who seemed interested too and were listening intently. I had expected 20-25 attendees and got what I wanted :) My talk was well received and a few guys actually came to ask some stuff. I immediately knew that a hackfest/workshop kind of stuff for them was essential to keep the inquisitiveness alive. I listened intently to Siji’s talk on Disko UI framework for embedded devices and then had a chat with my long time Embedded Nirvana buddy Chaitannya for quite sometime. We discussed about Siji’s talk for a while and then lots of other awesome stuff at length. I went to speakers lounge thereafter and started preparing for the Fedora Design session I had to eventually take. I intended to get more people involved in design activities related to Fedora by at least demoing them how I remixed art to create some graphics for this FUDCon.

I say FUD! You say CON!

The day also went by and I spent some time in speaker’s lounge preparing for hackfest tomorow before hitting the FUDPub!! Now this was the most interesting part of Day 2. It was truly an amazing experience to see Kushal dancing around and Rahul all energized and shouting Hey-you-bugger all the time. We later in the evening had a round table humour conference, where Rahul was pulling anyone’s leg whom he could get hold of. The rooftoop FUDPub was indeed a unique experience with Eugene and Jared Smith dancing to bollywood numbers while Shrishti discussed Arun’s baby pink slippers and Aditya telling me about Arun’s biceps and his screwdriver dreams! (sorry Arun I had to write that :P )

Day3

This was the workshop/hackfest day! This is what I was looking for at last. I knew some people might be interested and even if they were not, I managed to get at least half a dozen enthusiastic guys and girls for a Qt/Embedded Linux workshop we had. (I was planning to actually hijack other’s hackfests to get some people for mine but time and tide were merciful to the others it seems)

Thanks to Shakthi for the pic

We sat around in a circle in the auditorium and stared with basics of embedded Linux and then towards Qt application development on embedded devices. I had lots of interruptions wherein I had to go repeatedly with Saleem to get the awesome Fedora cake done :) (say thanks to us!) However I managed to show the workshop attendees a demo code cross-compiled and run on my rooted android device before we wrapped up the conference.  We went for a dinner later in the evening after having Rahul’s hey-you-bugger rounds once more at the hotel and laughing our asses off.

I had always been reading something about the Fedoraproject and its values since I got involved in it – Freedom, Friends, Feaures, First! This FUDCon was indeed the first time I was able to experience the true meaning of these words as the event went by. Love you guys (and girls) See you all soon!

FUDCon Pune (India) 2011 – Design Updates #2

The previous designs have been reviewed, commented on and then redesigned too by the design community. So here are the fresh designs for your eyes :

The Poster

The Logo

There is some more stuff too I have in the closet, but I’m waiting for the Design team guys to give me some feedback on the following work so I can finalize it ASAP.

The banner to be put up on the venue entrances

A non-standard size web-banner

There’s a web-button too which can be put up on sidebars if required as on my blog here. Next and the most important task left is the T-Shirts. There are many suggestions and discussions going on for same on the Design List. I hope we are gonna freeze it soon too :)

FUDCon India 2011 – Design Updates #1

So at last we are having a FUDCon in India after quite a long time, and that too in Pune! To top it all, its in College of Engineering Pune, (COEP as we call it) the place where I have spent my last two years learning about Linux, Embedded devices and a hell lot of things about the power of an Open Community (strangely, I am forgetting something…ah! my favourite course – How-To-Kill-Time 101) :-)

I am releasing some preliminary graphics related to FUDCon India this year. I’m mainly doing posters, banners, logos, web graphics etc. They are not in their final avatar but more or less they are gonna be on the same lines. Tatica has promised me to help me on these once she reviews them with her designer’s  eye.

Thats the FUDCon India 2011 Logo – just a dash of henna, like a crown on FUDCon

Thats the poster in current form. The building is of COEP – the venue, about which I shall be sharing you lots of stuff in the coming weeks.

InfoCanvas – A mini440 Based Web-Client

As part of my MTech project here at COEP, I had spent some considerable amount of time developing a ARM SBC based touchscreen web-client which can easily be customized to be used according to the desired application. (I have demonstrated its use as an information-desk and as a terminal which fetched sensor data from another ARM SBC based web-server) Throughout the development I have taken help from many Embedded Linux enthusiasts and used Open Source technologies all the way.  I posted some stuff about the software design on my blog and sometimes helped some guys through mail also but never ever did I think once even to tell the world how I did it until now when I realized that ethically its wrong not to share good stuff with good guys like you. Oh! its not that I have rewritten a better Kernel than Linux, but some bits here and there are always missing when you work on embedded devices. Thats all I have to give back from the project I have done. Its small and humble but still, its for all of you to play with now. Everyone releases software but no-one releases how to build a complete device kind of thing. I guess I did it at last. Now adapt it according to your needs and create new devices. Host a Diaspora pod on the ARM server or just think crazy.

I am going to release the documentation in the form of my M.Tech. Thesis (Its pretty rough but still covers most of the work) in public domain currently and then will put up the related code/scripts etc on git very soon. The thesis contains some images and and data from various sources from the internet, cited wherever possible. Make use of it as it suits you. Only the work done my me in the thesis is under public domain. At any places if you find some data which is copyrighted, don’t use it without proper permissions.

In case you require some incentive to get interested in playing with such a device, some excerpts from the first chapter :

In this report, which supports and explains the work supplied with it, details of development of an ARM9 SBC based network capable LCD touch-screen device is explained. The device is essentially a versatile HMI module which can be customized according to the various need under various conditions with minimum effort. Stress on the human interaction, networking standards and an aesthetic look has also been given during the development of such a device.

System Overview

As a demonstration, the project has been configured and developed as a full fledged product to be used as a student information desk and feedback system. This device thus is aptly named COEP InfoCanvas. In addition to this another small ARM SBC has been configured as a web-server which serves the latest sensor values attached to the it. This sensor is accessed by the COEP InfoCanvas which displays the remote sensor’s value in text as well as a time series graph on the LCD touch-screen. The COEP InfoCanvas is driven by SBC-I which along with another SBC-II and an Info-Server is connected to the LAN/WAN. Refer Figure 1. SBC-I being network capable acts as a web client an can fetch and display on its LCD, information and other data from any server on LAN/WAN in standard web formats such as HTML and Javascript from Info-Server machine and SBC-II. The Info-Server is a Linux server grade machine which runs a web-server and supplies data to SBC-I. The SBC-II present at a remote location, is designed itself as a tiny ARM web-server which gathers sensor data through its ADC and serves it to the SBC-I for display. The system is pretty modular and uses mainly standard TCP/IP protocols to communicate and send data to and fro.

Figure 1

The system has been designed almost completely using FOSS tools and technologies. Right from configuring the OS to developing applications on it, Open Source tools have dominated the development of this device.

Some Images

This slideshow requires JavaScript.

Follow

Get every new post delivered to your Inbox.