Skip to main content

Good Bye Adobe

The title says it all. Today was my last working day at Adobe and I've decided to pursue my career elsewhere. I've spent more than three and half years at Adobe, working as a part of the ColdFusion Engineering team. Over the last few years I've learnt a lot from the team, from the ColdFusion community and from many others at Adobe. I've developed interests in HTML5, JavaScript and other related technologies and frameworks and I've decided to pursue my interests.

I really like the developments that have been happening in HTML5 space and also in the JavaScript world. There are tonnes of frameworks built and client-side development is becoming more and more complicated. If you've been a regular reader of my blog, you would've noticed that I've been learning and experimenting with JavaScript frameworks. I want to explore the opportunities in this space and build services using these technologies.

Back when I joined the team in 2009, I heard of ColdFusion for the first time, when I was being interviewed at Adobe. I was grateful to Adobe for offering me a place in their immensely talented team. The team members were very welcoming and are always fun to be around with. I've enjoyed my time being with them in doing various technical and fun activities at work place. I'm sure I've interacted with each and everyone of them at some point or the other.

A few notes on ColdFusion:

ColdFusion is a kick ass platform and provides great set of services right out of box. When I started to learn ColdFusion I felt that I should have learnt it when I was in college, but unfortunately it was not included in the curriculum. It has come a long way and one should definitely explore what it has to offer today.

Every once in a while I do come across people (especially on the #ColdFusion twitter feed) who blabber about ColdFusion. These are mere nuisances, ColdFusion still continues to innovate and I can see people adopting it. Many complain that ColdFusion is not being marketed well and Adobe treats it as its step child. I disagree. Some of the team members are present in almost all ColdFusion conferences, the ColdFusion blog - http://blogs.coldfusion.com/ is a great resource. And of course, there are e-seminars conducted every once in a while. There are some valid concerns and the team knows about it and I'm sure they are being worked upon.

Going forward: 

My next employer is as awesome as me :) I'll take a break for a few days and join this prospective employer sometime soon. I wish the ColdFusion team a very good luck with the next version of ColdFusion and I hope that they build something great.


Comments

  1. Hi Sagar: I know we've locked horns a bit in the past, but I've always thought you were one of the "good 'uns" on the CF team, and really seemed to know your stuff. So it's a shame - for us - that you're moving. However it's exciting stuff for you, so best of luck.


    One thing though... your mention of marketing. If Adobe think that marketing CF is best done by preaching to the converted - which is basically what you described - they I think everyone who has complained about Adobe's lack of direction and focus with ColdFusion marketing is basically right. You don't need to market it to us: we're already on board. You need to market it to everyone else. And I *don't* see a lot of that. Anyway: this wasn't your problem before, and sure isn't now, so leave that with the CF marketeers to mull over.


    Best of luck in your future, and thanks for all the work you put in to ColdFusion over the years. And thanks for putting up with me on the P/R programmes ;-)


    Cheers.


    --

    Adam

    ReplyDelete
  2. Good luck at your new employer! Thanks for all you did for ColdFusion.

    ReplyDelete
  3. I'm really sorry to see you go, and thank you for all of your hard work with ColdFusion over the years. Best of luck in whatever you choose to do!

    ReplyDelete
  4. Thanks for all your smart work for the ColdFusion and thanks for presenting at Chennai CFUG meetings as well.

    We are all going to miss you for sure and many congratulations on your New Job.

    ReplyDelete
  5. Thanks Adam, I really appreciate your contribution in PR programmes. I'm sure the team will try to address some of the concerns around marketing ColdFusion.

    ReplyDelete
  6. Thanks Akbar, I'm going to miss all that stuff.

    ReplyDelete
  7. Hi Sagar, I agree with Adam. It has always been a pleasure to chat with you and get to the nitty gritty of the bug.


    All the best for your new role.

    ReplyDelete
  8. Sagar, good luck with your next venture! And thanks for helping to make ColdFusion what it is.

    ReplyDelete
  9. Hi Sagar, wish you all the best on your new journey, and thank you so much for all you've done to ColdFusion!

    ReplyDelete
  10. Sagar, thanks for working on the product I know and love! I wish you the best in your future endeavors.

    ReplyDelete
  11. Couple of days late seeing this. Best of luck for the future Sagar. It was awesome meeting you at SotR last year. The CF team have definitely lost a fantastic engineer.

    ReplyDelete
  12. Thanks Andy, it was nice meeting you and many others at SOTR.

    ReplyDelete

Post a Comment

Popular posts from this blog

File upload and Progress events with HTML5 XmlHttpRequest Level 2

The XmlHttpRequest Level 2 specification adds several enhancements to the XmlHttpRequest object. Last week I had blogged about cross-origin-requests and how it is different from Flash\Silverlight's approach .  With Level 2 specification one can upload the file to the server by passing the file object to the send method. In this post I'll try to explore uploading file using XmlHttpRequest 2 in conjunction with the progress events. I'll also provide a description on the new HTML5 tag -  progress which can be updated while the file is being uploaded to the server. And of course, some ColdFusion code that will show how the file is accepted and stored on the server directory.

Server sent events with HTML5 and ColdFusion

There are several ways to interact with the server apart from the traditional request\response and refresh all protocol. They are polling, long polling, Ajax and Websockets ( pusherapp ). Of all these Ajax and Websockets have been very popular. There is another way to interact with the server such that the server can send notifications to the client using Server Sent Events (SSE) . SSE is a part of HTML5 spec:  http://dev.w3.org/html5/eventsource/

Adding beforeRender and afterRender functions to a Backbone View

I was working on a Backbone application that updated the DOM when a response was received from the server. In a Backbone View, the initialize method would perform some operations and then call the render method to update the view. This worked fine, however there was scenario where in I wanted to perform some tasks before and after rendering the view. This can be considered as firing an event before and after the function had completed its execution. I found a very simple way to do this with Underscore's wrap method.