vote up 15 vote down star
16

Hopefully, I'm going to finish my undergraduate studies next semester and I'm thinking about the topic of my final project. And yes, I've read the questions with duplicate title. I'm asking this from a bit different viewpoint, so it's not an exact dupe.

I've spent at least half of my life coding stuff in different languages and frameworks so I'm not looking at this project as a way to learn much about coding and preparing for real world apps or such. I've done lots of those already. But since I have to do it to complete my degree, I felt I should spend my time doing something useful instead of throwing the whole thing out. I'm planning to make it an open source project or a hosted Web app (depending on the type) if I can make a high quality thing out of it, so I decided to ask StackOverflow what could make a useful project.

Situation

I've plenty of freedom about the topic. They also require 30-40 pages of text describing the project. I have the following points in mind (the more satisfied, the better):

  • Something useful for software development
  • Something that benefits the community
  • Having academic value is great
  • Shouldn't take more than a month of development (I know I'm lazy).
  • Shouldn't be related to advanced theoretical stuff (soft computing, fuzzy logic, neural networks, ...). I've been a business-oriented software developer.
  • It should be software oriented. While I love hacking microcontrollers and other fun embedded electronic things, I'm not really good at soldering and things like that.
  • I'm leaning toward a Web application (think StackOverflow, PasteBin, NerdDinner, things like those).

Technology

It's probably going to be done in .NET (C#, F#) and Windows platform. If I really like the project (cool low level hacking), I might actually slip to C/C++. But really, C# is what I'm efficient at.

Ideas

Programming language, parsing and compiler related stuff:

  • Designing a domain specific programming language and compiler
  • Templating language compiled to C# or IL
  • Database tools and related code generation stuff

Web related technologies:

  • ASP.NET MVC View engine doing something cool (don't know what exactly...)
  • Specific-purpose, small, fast ASP.NET-based Web framework

Applications:

  • Visual Studio plugin to integrate with Bazaar (it's too much work, I think).
  • ASP.NET based, jQuery-powered issue tracker (and possibly, project lifecycle management as a whole - poor man's TFS)

Others:

  • Something related to GPGPU

Looking forward for great ideas!

Unfortunately, I can't help on a currently existing project. I need to start my own to prevent further problems (as it's an undergrad project, nevertheless).

flag
"seriously, this BS didn't worth much more work. I just went to undergrad so that I could get to grad school ;) " So, you want us to do your homework for you? – DOK May 25 at 19:57
@DOK: No I'm actually asking for something like "open-source" project idea that I could implement and at least some people could benefit from it. – Mehrdad Afshari May 25 at 19:58
8  
You have a negative view of the project since it's "bs". Why should we give you an idea that you'll only put half effort into, and then possibly release unfinished garbage to the community? – Jared May 25 at 20:03

11 Answers

vote up 2 vote down

Mehrdad, I don't know if you are still interested ideas, but I will propose this one to you anyway, because I think it would be of great value to the developer community, and I know that I won't pursue it myself.

The idea is a Visual Debugger. I've worked on a bit, and named it 'obivis', but if you start again, I think you should name it yourself, as it will be only your work.

The basic concept is:

A real-time debugger that you can attach to any running .net process (or launch one). It will then show you, with 3D graphics, the calls between all live objects.

General features:

  • Navigate the world with a mouse/keyboard to see what objects are doing
  • Start/Stop any application and watch calls
  • Click on an object in the 3d debugging world, to get the member variables/other properties of it

Below is an image of my previous attempts in WPF:

image of obivis in wpf

I hit a roadblock because the AOP functionality in the .NET framework was not sufficient, and I needed to go to the profiler API in C++, but this was beyond my abilities, so I couldn't proceed further.

The beauty of doing the rendering engine in WPF is that it can be adapted to Silverlight, and hence you would have the ability, through some WCF interface (or similar), 'visually debug' ASP.NET processes.

I wouldn't intend this system to replace general debugging in Visual Studio. My thought with this system is that it will let you understand the relationships between objects in a system that you potentially didn't write. It could let you understand how the system calls itself.

More specific features would be:

  • Conditional breaking [obvious feature for a debugger :P]
  • Ability to filter namespaces, or get a general 'overview' view of the conversations between namespaces
  • And many more

I personally would find it quite interested and useful, and I think the developer community at larger would enjoy it as a useful open-source addition to the typical debugging techniques. Currently it is hard to get an overall 'idea' of how an application integrates with itself, any suffuciently complicated application anyway, and I think this project would provide a nice way to do that, and be generally fun and interesting to work on. I also think for someone of your capability it should be possible :)

I leave it to you.

link|flag
vote up 0 vote down

If you're interested in developing something useful for the community, go ask people in your college. Most students in non-IT related areas usually have great ideas but just don't know how to deploy them.

link|flag
I want it to be useful for "developer community." Many people who teach at my college can't write a line of code themselves so that's out. – Mehrdad Afshari Jun 21 at 10:30
vote up 0 vote down

I would target something with accessing data over the Web and presenting it in a friendly manner.

So, may be:

  • a site that would allow to answer comparison questions from Wikipedia ("top peak in africa" -> "from Mountains where location=Africa select Highest" -> ...)

  • a distributed, secure, Tor-like gateway to social networks

It certainly would be interesting to learn parallelization (OpenCL?). You could also use the opportunity to learn Python, it's similar to .NET in many ways but imho easier while implementing important concepts. Please keep us informed how it's going. I hope the question is still relevant.

(update) I wouldn't go with compilers, etc. First, there was an excellent post by Joel about how people overestimate the need for code tools. Second, it's good to learn to write things that would be used by the average Internet user (this is kind of a special skill which not every high-level programmer has).

link|flag
The quote I mentioned (from joelonsoftware.com/articles/fog0000000348.html/…: I knew one thing: programmers who start businesses often have the bad habit of thinking everybody else is a programmer just like them and wants the same stuff as them, and so they have an unhealthy tendency to start businesses that sell programming tools. That's why you see so many scrawny companies hawking source-code-generating geegaws, error catching and emailing geegaws, debugging geegaws, syntax-coloring editing tchotchkes, ftping baubles, and, ahem, bug tracking packages. – ilya n. Jun 21 at 1:46
vote up 1 vote down

Personally I would go for something that I was interested in so I wouldn't have to drag myself to the keyboard, just to get it done ;). In my case it would be game development.

Your game wouldn't need a good story to be playable/enjoyable as you could make it physics or AI related ( it's like John Carmack said.. "Story in a game is like a story in a porn movie. It's expected to be there, but it's not that important." ). . Also you could try some game engine development but it's quite a lot work if you are not strong with graphics programming.

link|flag
Respect to Carmack as a great hacker. I guess that's why I hate Doom and love the original Prince of Persia :) – Mehrdad Afshari May 25 at 21:23
If you like the original POP you should find the this link interesting ( jordanmechner.com/old-journals ). You can find there the old journals of the developer behind the POP from when he was developing it, from start to finish! – MariuszMarciniak May 25 at 22:30
I'd read the whole journals long time ago ;) – Mehrdad Afshari May 26 at 8:16
vote up 1 vote down

I wouldn't recommend you to do a compiler/interpreter, for a few simple reasons:

  • It's a hell of a job
  • There are too many out there (and most of them aren't used by anybody)

My advice is that you shouldn't close your mind to what you call "advanced topics", because they're not so difficult (at least not more difficult than implementing a good compiler xD) and they will probably make your work shine a little bit more... and also you will learn some cool stuff that may be helpful someday and you wouldn't otherwise learn.

What about some kind of game? Everybody likes games ^_^

link|flag
I thought of game right before posting the question: 2 problems: I'm not a 3D guru, which is not a real problem. The real problem is a good game requires a good story. :)) – Mehrdad Afshari May 25 at 20:47
There are lots of games without awesome graphics nor stories that are very fun to play... remember tetris, pacman or arkanoid? xD Or maybe something more in your line, what about a web mmorpg? Like OGame, for example. – fortran May 26 at 7:56
I agree. Even think of the game "I Wanna be the Guy". Its a 2D.. sidescroller I guess, with absolutely no storyline, yet its one of the best games I've ever played. – DeadHead Jun 28 at 5:06
Yet the academics would argue a game doesn't benefit the community unless it introduces some novell technology.. – Michael Foukarakis Aug 28 at 10:48
vote up 0 vote down

This may be a stretch for you since it doesn't make use of .NET and might not be a "self-contained" project that fits into a month's worth of work, but I suggest trying to help out on the Shed Skin project. You or its author can probably find a suitably sized chunk of work that you can do in a month and write it up. It would be of both academic and practical value.

link|flag
Shed Skin is really cool (I make sure all my Python code compiles with it), but he did say that he couldn't just contribute to an open source project. – Zifre May 25 at 20:18
@Zifre: His comment wasn't on my screen at the time I posted my answer. (Even if I saw it in time, I probably would have gone ahead with my answer anyway. The answer isn't just for the original poster but for anyone reading Stack Overflow.) – John Y May 25 at 20:30
vote up 5 vote down

I like the idea of the DSL that compiles down to a .NET executable. I'm working on something similar for one of my final projects here at school.

If you are looking for any resources on this topic here is what I have found so far:

I actually emailed Mike Stall and asked him for some advice on writing a .NET compiler as a university project. He gave me some great tips:

  • Writing the lexer by hand is relatively easy, but if you can use a parser generator (such as ANTLR). Writing the parser is fairly tedious
  • For the code generation phase of the compiler, you basically have three options:

    1. Reflection.Emit - Emits IL opcodes. However! Reflection.Emit() cannot emit all possible constructs (incomplete with certain generic things)
    2. Spew out your IL codes to a textfile by hand, and run ILASM on the file.
    3. Use the newly created CCI (Common Compiler Infrastructure) - CCI is very new and very cool in how it works. It takes a tree structure and will emit the IL opcodes based off the tree you pass in. Easiest option for this project by far.
  • PEVerify.exe is very useful when testing your compiled executables. It does static validation on IL.

  • Use ILDASM with programs that you have compiled with CSC.exe to help make sure you are getting the IL sequence correct in your own compiler.

Be sure to let us know what project you think you are going to take on!

link|flag
I'm really into the DSL thing but the real problem is the idea of it. What DSL specifically... Implementation is not much of an issue. – Mehrdad Afshari May 25 at 20:14
vote up 1 vote down

Create a web application framework that easily integrates RDF or a similar technology with the published content, making all that content easily discoverable and usable by semantic-web apps, such as SearchMonkey or Twine

link|flag
Looks like a nice idea... – Mehrdad Afshari May 25 at 20:12
vote up 3 vote down

there's also the recent opening of data.gov which you could use to do some kind of information mashup (which is pretty much the given trend now in webdev). there's even a contest associated with all this.

http://www.sunlightlabs.com/contests/appsforamerica2/

link|flag
It's mostly about client side user experience and extremely polished thing. Not developer friendly and not easy to write a text about... – Mehrdad Afshari May 25 at 20:16
vote up 0 vote down

Have you looked at project ideas that were accepted and, more importantly, almost accepted for, Google's Summers of Code? It sounds like you have fairly similar criteria, and I know that there are every year a lot of SoC projects that are good and wanted, but don't make it because there are just to many.

link|flag
I can't really contribute to an open source project. It should be a project of its own as they don't understand and they thing you've just stolen it. – Mehrdad Afshari May 25 at 20:07
vote up 0 vote down

Something I would like to see is an IL compiler. I know it sounds pretty stupid but it would be fun to play in. I think it would also give you a view of what is going on behind the scenes in the CLR.

link|flag
IL to x86 compiler? – Mehrdad Afshari May 25 at 20:00
IL to x86 compiler - see ngen – ASk May 25 at 20:04
COSMOS uses a pretty much complete IL to x86 compiler too. – Mehrdad Afshari May 25 at 20:05
Yeah, or x86_64 if your on a 64 bit PC. Could you imagine writing a hello world in IL ;-) I know this is probably to hard to do in a month, but I thought it was cool – Lucas McCoy May 25 at 20:05
1  
@Lucas Aardvark, what is hard about writing a hello world in IL? – Simucal May 25 at 20:22
show 1 more comment

Your Answer

Get an OpenID
or

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