VS 2010 CTP Preview

Written by praveen on February 18, 2009 – 8:42 pm


Tags: , ,
Posted in .Net, Tech | No Comments »

Ajax Load Indicators – A few links

Written by praveen on January 26, 2009 – 6:55 pm


I have been looking for a while now, for a site where I could download some cool Ajax indicator images. All I had to do was use Google properly I guess! I found a couple of sites off of ScottGu’s article on ASP Alliance. Nice and slick images.

Check’em out

http://www.ajaxload.info/

http://mentalized.net/activity-indicators/


Tags: ,
Posted in .Net | No Comments »

Image resizing while maintaining aspect ratio

Written by praveen on June 16, 2008 – 6:25 pm

While working on one of my projects, I had a requirement to resize user uploaded images before storing them to the web server. My prime concern while resizing an image was losing the aspect ratio. Since there isn’t anything readily available in the Framework, I decided to look around and I found Rufan Redi’s blog post. I have taken that code forward and come up with a refactored C# version that could be used as part of a library. Thanks Rufan for your insightful post.

Download Source


Tags:
Posted in .Net, Tech | No Comments »

Pics from Agile Austin Open Space Conf 08

Written by praveen on June 7, 2008 – 4:18 pm

Steven “Doc” List has been kind enough to post pics from the recently held Agile Austin Open Space Conference. Since I’m still relatively new to the group, I’m yet to acquaint myself with all the people and their names. Please excuse me if I left out any “important” ones.

Jeff Palermo, CTO of HeadSpring Systems
Jeffrey Palermo

The ever-charismatic Scott Bellware who is also pretty active on the ADNUG group.
Scott Bellware

Sharon Cichelli
Sharon Cichelli

Joe Ocampo, the Agile evangelist
Joe Ocampo

Robert Stackhouse as laid back as ever :D
Robert Stackhouse

Chad Myers
Chad Myers

Me me me :D
Steve Teliki Session
The link to the set is here

Thanks Doc for the great pix.


Tags: ,
Posted in .Net, Austin, Design, Tech | No Comments »

VS Add-In to locate unused files

Written by praveen on May 23, 2008 – 7:34 pm

I’m not sure any of you guys have faced this problem but this has been a major issue for me on many of my projects. The problem I’m talking about is when you have that one file that you excluded from your project but forgot to delete from your hard drive and it somehow makes it to production without your knowledge! Or if you have an application that loads user controls at run-time or does http calls to other parts of the application at run-time. You made sure that you ‘excluded’ the file from your project but somehow it shows up. This could be applied to various kinds of files (think about overriding stylesheets).

The problem gets exacerbated when you’re working with a team and you merge your projects every now and then. Different team members work on multiple releases of the app (usually at the same time!) and team members include/exclude files over time. Then you have that big ‘merge party’ where you decide to merge all your branches. The problem arises when you try to merge project files. Many popular source control providers (hint: ahem, starts with a V) do not let you merge your project files. So what do you do? You just decide to use one of the several project files your team has been working on. So now you have a project with multiple files excluded (your team member didn’t like the way you implemented that class and excluded it;)) which were previously part of the project. The project compiles fine, however you have those old files lying on your disk. You use xcopy or some other utility to copy your files while creating your build package and boom, you have a file that’s not supposed to be there in your build.

You might argue why not just use the show/hide toggle on solution explorer. Well that would work well if you had a project with say 10-15 files but imagine enterprise level apps with 1000s of classes/files.

This add-in is a simple utility that lets you see what files are not part of your project. The program is still in Beta meaning it does not actually let you ‘clean’ your files but I promise to update it soon. Please feel free to provide feedback.
Download here


Tags: ,
Posted in .Net | 4 Comments »