vote up 57 vote down star
56

Do you have your own hobby development project, that you like to work on your own?

If "yes", could you please tell a bit more about it (links are welcome)?

  • What kind of project is it?
  • Did it help you professionally? How?
  • Is it open-source? Do other people use it?

If "no" - Do you want to start one?

PS: This question came up after this answer ("Let's have a look at your hobby projects") to the question Write a program in 30 minutes (for a C# programmer candidate interview question) and was suggested by itsmatt

Related Questions:

Pet Projects - Should we have one?

flag
show 7 more comments

98 Answers

prev 1 2 3 4
vote up 0 vote down

What kind of project is it? JSMS: A program I created for myself years ago to quickly send SMS text messages without having to open a web browser. I'm Irish. All the Irish mobile companies provide hundreds of free "web" texts to their users each month. JSMS works with all these Irish companies SMS interfaces plus over 25 international providers (not free but very low cost SMS).

The program has evolved from a very simple GUI application to a fully features SMS tool including:

  • Full Phone Book manager
  • Create/edit groups
  • Import contacts from various sources including GMail,Outlook and web based phonebooks
  • Export contacts
  • Spell Checker
  • Multi-platform (Windows/Mac OS/Linux)
  • Auto-update mechanism

I've also re-written the code in Objective-C to run on the iPhone.

Did it help you professionally? How?

Yes. i learned a lot about Java and learned a new language (Objective-C). I may soon be working on an iPhone demo project at work because of my experience.

Is it open-source? Do other people use it?

Yes. It has been downloaded over 15,000 times so far. Source code is available under the GPL.

link|flag
vote up 0 vote down

One of my most recent personal coding projects was implementing MD5 in Scheme. The MD5 algorithm lends itself to lots of "functional" ideas, and if you don't care about speed (as conventional implementations do), you have lots of room to play. :-)

Once done, try it for the SHA-1 and SHA-2 algorithms. :-P

Oh, and it doesn't have to be Scheme. Just try writing implementations in various different languages. It's probably a good way for you to get familiar with whatever language you're coding it in.

link|flag
vote up 0 vote down

Here's a recent one I did:
http://stackoverflow.com/questions/761121/performance-issue-building-a-string

I built a "CompiledFormatter" class to address one of the short-comings of the String.Format() method. In the end it turned out to not be much of a gain, but it was a for-fun project from the beginning and I learned some things about how .Net works internally, so I figure it was a net success.

link|flag
vote up 0 vote down

When I was a teenager I used to spend my time programming games. It was easy then (1980s) now it's difficult to do tiny games that look even funny when paired with the incredible games out there. But I still believe game programming is the funniest area and you can learn a lot there.

link|flag
vote up 0 vote down

It's been awhile, but I wrote a staff picture gallery in Ruby on Rails as an effort to learn how to use it. RoR introduced me to the ActiveRecord database pattern which has become my standard DB pattern for all of my .NET web apps.

link|flag
vote up 1 vote down

I'm a transportation engineer by training, and a lot of the software we use in the industry is archaic and/or is terrible. I usually spend my spare time reading the research behind the methodology and programming it using python then interfacing it on my local intranet.

What i'm trying to say is that find something that you are really fond of. for example, my buddy does a lot of music related coding with ruby. Another friend does the so called "scripts under 50 lines" for linux. We share code between each other and we don't critique each other either.

Another thing I do sometimes, is i code some of the proposed answers on stackoverflow in different languages. For the color coding question posted the other day, I recoded the answer in python and in c++ just for shits and giggles.

Find a topic that you love, and explore the areas that haven't been tackled yet.

link|flag
show 1 more comment
vote up 0 vote down

Yes, I work on a web site I call History Based Estimation.

It is a solution for recording elapsed time and estimates for tasks and projects. It uses the accuracy of historical estimates for making simulations that result in statistical probabilities of various completion dates. Read more about it here.

It is inspired by Evidence Based Scheduling, and I am just starting to use it for my estimates and schedules for both work and home projects.

It is open source on SourceForge.net. I started a few weeks ago and guess it has not been downloaded from SourceForge by anyone yet.

I hope this project will help me handling my estimates and schedules. If it can be turned into something that would help other people as well, that would be great.

Technical note: It is written with ASP.NET WebForms / C# / LinqToSql / Sql Server database, and I try to use a repository pattern with dependency injection.

link|flag
vote up 0 vote down

Yes. I work on Free Stock Market Software

  • JStock makes it simple to track your stock investment. It provides compact and organized stock market information, to help you decide your best investment strategy.
  • It acts as a solid prove that I am able to create a software which is accepted by end user market. After 2 years of work, there are around 45,000 downloads, and several positive independent software reviews.
  • It is open source. It is used by others. Its current download rate is 100~200 copies per day.
link|flag
prev 1 2 3 4

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.