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

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 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
vote up -1 vote down

Yup www.my-clock.net, an online alarm clock :p soon to be time tracker, calendar and so on. Using it to learn javascript and web development.

link|flag
vote up -3 vote down

No - just don't have enough time.
Besides, there's more to life than just a programming. There are a lot places to visit, people to meet, things to try.
So why burying yourself in front of a computer?

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.