Evolution of a blogger

It has been almost 3 year, When I started blogging. Looking back to see how my blogging style has changed, change in content of blog post or change in my motivation for blogging to sum up how I am evolved as a blogger. First I’ll tell you how my reasoning behind blogging has changed:

Why do I Blog ?

In all above cases common things can be to pass time and share experience plus along with we are (I am) also always looking for recognition and admiration.

And about change in my blog content:

In all these time periods you will always have some good posts and some just blog posts.

Share with your motivation behind blogging and how you pick up content for your blog. I’m not a good writer (I try to share mostly technical, geeky stuff through my blog) so any suggestion/feedback to writing style are always welcome.

Adobe AIR: Web to Desktop

Past few days, I have came across Adobe AIR through digg, techmeme, delicious and so today i thought i should try this. Adobe AIR lets us their existing web development skills in HTML, AJAX, Flash and Flex to build and deploy rich Internet applications to the desktop. For Application development you will need two things:

Having Adobe AIR extension for Dreamweaver CS3 can be very helpful as it facilitates to package and preview .air application files directly within Adobe Dreamweaver CS3.

As my first AIR application, I ported my rubiks cube timer as a desktop application (RubikTimer.air). Its very easy using dreamweaver extension, have a look here : Create your first HTML-based AIR application with the AIR SDK (great tutorial for beginners).

One problem I faced: Usually setInterval(“display()”,500) works with Firefox/IE but it was not starting with no error message to look into but then i found out about using Adobe CommandLine tool. (via Three ways to debug Adobe javascript Application). It´s called ADL and resides in the /bin folder of the SDK. ADL showed the Error: “Unsafe javascript”. Then after some random changes when i change it to “setInterval(display,500)”, It started working. Another problem I faced was related to keypress events in javascript, were not working with AIR (still have to resolve this issue)

Download RubikTimer.air here
Web Based Rubik Cube Timer

Related Post:

Sample Adobe AIR Applications
Trying hands on Google gadgets

Making LaTeX Beamer Presentations

I came across this nicely compiled page on :
how to make Latex Beamer Presentations

If you want to create overhead presentations (á la Powerpoint) with LaTeX, you can do so by using Beamer class, which creates surprisingly professional and sophisticated documents that you can then display using any pdf viewer (e.g., such as Adobe Acrobat). The advantage of using LaTeX over a program like Powerpoint is that it doesn’t require expensive software for either creating or displaying your presentation; it thus makes the presentation truly “portable”.

Read More >>
Related Links :