up vote 31 down vote favorite
36
share [g+] share [fb]

As per title, I would love to hear from anyone willing to share their experience working on their CS FYP.

  • Was it academic/proof-of concept or did it have real world applications?

  • Did it become bigger or was it shelved after you graduated?

  • How did working on the project contribute to your skills/experience/future career?

  • Which would you have preferred: An excellent implementation of a normal idea or a normal implementation of an excellent idea?

link|improve this question
feedback

closed as off topic by Brad Larson, g.d.d.c, Adam Rackis, Joe, dmckee Dec 10 '11 at 0:32

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

56 Answers

1 2

I wrote a compiler for regular expressions to JVM bytecode that outperformed JDK 1.4's java.util.regex.

I'm now a compiler engineer, so I it may have helped in terms of CV.

link|improve this answer
feedback

Automated Network Update System

or ANUS for short.

ANUS was a system to help out with administering networks. It would discover computers on the network, catalog them and then based on defined criteria, try to update them with the latest software.

link|improve this answer
8  
Why on earth wouldn't we? It was awesome and the TA got a laugh out of it. Sometimes you just have to do something because it is silly and fun. – Ty. Jan 28 '09 at 19:45
5  
+1 for the project name :D – Richie_W Jan 30 '09 at 1:10
1  
The name really did make me laugh out loud. +1 for the name – AntonioCS Jul 6 '09 at 22:27
show 2 more comments
feedback

me and my pals came up with the idea of doing a music player. we had all used various ones, such as iTunes and media monkey, with varying levels of success. We liked some features of all of them, so decided to create our own with all the best features. The most important thing we found was to be ambitious. If you think you can't do something, remember that you have about 6 months to do it, you don't have to do it tomorrow. The main features we implemented included:

  • 3D interface
    We decided to make the UI completely 3D, with a cube at the centre, that would rotate to show the album artwork of the new song. This is similar to the iPod touch visual display
  • Algorithm framework
    We built a framework to plug-in algorithms as we created them, that would analyse each song we added to the Library. This was an important feature as it allowed other features to use the information gained from these algorithms. Examples of these included BPM detection
  • DJ-mode
    This was the big fish of our project. Given a set of criteria set out by the user, such as the artists they liked/disliked, or the genre or BPM range of songs that they prefered, the applicatuon would scan through the library to create a playlist of songs to match the criteria. This is similar to the new Genius functionality in iTunes, but i'd like to point out, we completed this in April '08. If only we patented it ;)

Thats just a small snippet of what we did. 6 months of blood, sweat and tears later, we were contenders for project of the year.

Remember to be ambitious!

link|improve this answer
feedback

Multi-player paint. No, seriously. I wrote an application which shared a canvas over the Internet, it was proof of concept but I got it working and demonstrated it at a computing event. I think I've still got it around here somewhere.

As for how it helped me in my career, well it gave me a real insight into fast-paced development. I've learnt far more from my job, but it helped me get my degree which essentially helped me to get my job in the first place.

link|improve this answer
show 4 more comments
feedback

Did an analysis of an algorithm for automating gene location in a large DNA strand. My supervisor had developed the algorithm, but he was a CS prof, and I had minored in Biology, so I could actually look at his algorithms and see if they made biological sense.

Mostly it was fairly theoretical, mixing between pattern matching and tests for randomness, but there was a practical component of being able to identify true results, as well as false positives and negatives.

I learned to be politically aware from this project (the prof didn't like my results, as they indicated that his algorithms were not as good as he thought). I believe it was shelved after I left, for the same reason. So far I have not made use of it, although I wouldn't mind working in that field again (bio-tech, bioinformatics, etc).

link|improve this answer
feedback

A search engine before search engines were popular. Too bad I didn't know then what I know now.

link|improve this answer
show 1 more comment
feedback

Attempted Video Recovery from FAT based filesystems for a Police force, who had promised me lots of help and support.

No support materialised, especially as the original project was to recover from a proprietary platform. Very frustrating.

Only completed about half of what I wanted to do and subsequently was not particularly happy with the results, got a 2:1 mind.

In hindsight don't work with an outside party if you can avoid it. Absolute nightmare.

link|improve this answer
feedback

Me and my team built a web application. It was an online photo editor with a huge social networking component. Think facebook, but with the ability to edit all your pictures in a very powerful editor.

We thought of expanding it, since it was at the time, the best photo editor out there, but then photoshop express came out a month later.

link|improve this answer
feedback

I extended an existing OCR algorithm to work in adverse robotics environments. That mostly involved:

  • tweaking the algorithm to deal with bad lighting, skewness, etc.
  • matching characters into words and lines
  • using dictionary to improve recognition scores
  • swearing at the wretched little robot when it ran out of batteries/froze/got stuck in a corner...

It was no rocket science, but it was a good foundation for learning how to work in a research lab, including all the politics involved, to work independently on a long term project, and to write reasonably scientific-sounding reports. Plus, it looked impressive on my graduate scholarship applications. A pretty good learning experience all in all.

It ended up part of a published paper, and got used for a couple of years after that at least.

link|improve this answer
feedback

In 1982, I wrote a FORTH interpreter in C. Teaching myself the language straight from K&R as I went.

No help from any academic staff since they didn't know the language. They were against me using C at all and wanted me to do it in Pascal, but I reckoned I needed pointers to functions to do the project justice.

link|improve this answer
2  
All practical Pascal dialects have had pointers to functions since forever, and are functionally isomorphic with C, preprocessor and variadics aside. – Barry Kelly Jan 20 '09 at 22:03
1  
If only I had a time machine. – Paul Mitchell Jan 23 '09 at 8:13
feedback

A Java framework for distributed algorithms, a bit like SETI@home. Plus two algorithms to test it. One of which tried to calculate the shortest route between all the cities in Belgium running on the school pcs.

I'm pretty sure it got shelved but I learned quite a bit from it.

link|improve this answer
feedback

3D State machines in 2003

My project was to see if humans could better visual complex state machines using 3D space (think minority Report style but without the crazy gloves and massive telly's). It would interpret 2D statemachines that you created or were already available and give them depth and allow the user to move around, zoom in/out, run the state machine etc.

The basic answer from nearly 9 months work was that most of the time 3D actually made it more complicated to comprehend. Maybe in the future when humans get more and more used to seeing 3D shapes on a 2D screen and methods of interaction are improved it will get better.

As far as I know it was shelved after I left. I certainly haven't seen any royalty cheques in the mail recently ;o)

Edit: Oh yeah, I used Java.

link|improve this answer
feedback

I developed a software in C++ to transfer data from one computer to another using FM frequency. I managed to send data from one to another but not vice-versa. Next year students picked up the project to develop two way communication. I don't know if they were successful or not.

This was in 1998 and now we have infra red, bluetooth etc.

I am in IT field developing applications for travel industry so not exactly matching to what I did in the project but yeah it helps providing experience of developing a working software.

link|improve this answer
feedback

Mine CS final project was a question/answer memorizing web app in J2EE. I figured I'd need it in the future for my career. It was a bit like Quizlet. Only the kid that wrote Quizlet had better technology to work with than I did (I had pure servlets). J2EE was really new when I built it, and it never really got it completely finished, but I got a good grade on it. I also used a Java Applet that would store the values of the question/answer being edited in a hidden field on the page to be submitted to the server. I never did get the sharing quizes bit done, the semester ended before that.

link|improve this answer
feedback

I worked with a team on a project for viewing stock trades and purchasing them through an account with a company. This was a Blackberry application and it was very difficult to program for because of the unfamiliarity with Blackberry and no working hardware device. As far as I know the project was intended for use within the company but I can't be sure what actually happened to it. The project didn't really contribute a lot to my success or demise as a software developer. It did teach me how to waste 9 months documenting things unnecessarily.

Once the project was finished, RIM decided to come out with a Blackberry plugin for Eclipse. That could have saved us a lot of work.

link|improve this answer
feedback

A client-library for Whois++, a directory technology from when LDAP didn't yet seem like the final winner.

Got me my first job, where I was lead developer (release manager, QA, etc) for the reference Whois++ server and where I edited the RFCs defining the protocol. Dead-end technology in the end, but it was a great gig for a kid just out of school, trying to decide which way to go.

Also, I expected to make a career of System Administration, and I wanted to have a solid research, IETF, and software development job on my resume before wading into the sysadmin ghetto. Why? Because I'd noticed at a summer job that there are two kinds of sysadmins, the ones who just muddle through for 30 years, and the ones who are engineers first, and sysadmins second. I wanted to be the engineer kind, not the muddling-through kind.

link|improve this answer
feedback

Wrote an IDE in java to take in a JAR and output statistics and UML, sort of like a backwards IBM Rational Architect combined with Java's Reflect.

link|improve this answer
feedback

I wrote a PDA application which connected to a central server to access data for remote engineers around our computer science block (within wifi range) to stop them having to go back to their help desk to get new / updated help tickets. It had the details and could access and notes (and add new ones). It was pretty basic, but got to learn c#, web services, few other bits and got to play with a PDA for a year. It was in VS2003 and .net 1.1 and I learnt a lot ... and it helped me pass my degree!

Looking back I'd have done it a lot differently now but that's looking through the eyes of experience. Also if I was doing it now I'd use WCF and an ORM etc. etc.

link|improve this answer
feedback

I wrote (in 1997) a Bot in Perl that looked for broken hyperlinks on webserver. I had a flag that would turn turn off the "stay on this webserver" which would cause it end up in the weirdest places on the internet. I wrote it on Slackware 5. We used DEC Alpha's at school.

link|improve this answer
feedback

Last year my project was to build a Diagram Editor (ER Diagrams) using SilverLight (Alpha) - Took some time to do since at that time not much documentation existed.

Got 1st for it though (^_^)

link|improve this answer
feedback

It was 1983. We built a Visicalc clone for the DEC-20. The language was Pascal.

link|improve this answer
feedback

My senior CS project was a working donor database application (this was 1987) for the school's Association of Graduates - my understanding was that it was going to be the starting point for the system they would eventually use. I even implemented a text-mode windowing system for the entry and query forms, and you could start typing a donor's last name, and it would interactively display all matching records instantaneously. It would also pop up an easter egg when you typed the professor's name in... But that was easy compared to my EE project - we built a working RAM card for an STD-Bus computer. That project ate my life...

Edit: I forgot my graphics track senior project - I built a 3D, interactive Rubik's cube, which was exhibited at SIGGRAPH in a display for computer science student's work. And this was without a nice standard graphics library like IrisGL/OpenGL. But it was an awesome project.

link|improve this answer
feedback

3D Cloud simulation using metaballs and marching cubes algorithm. It was written in C++ and openGl.

  • That was it. Never worked on it later.
  • But It was helpful with my first job which was game development.
link|improve this answer
feedback

2005 I developed a software for controlling, programming and monitoring industrial robot working cells and then used it on a cell which assembles robot controllers. So the software today controls robots that build robots... :)

We started a company last year and we're now doing a new version of the application with more commercial focus. We've taken some steps towards a patent for some of the ideas in the first version but it is unfortunately too expensive to take it all the way.

link|improve this answer
feedback

I worked on the "detection" aspect of a vehicle license plate detection system. The challenge was to get a dumb computer to detect where the location of a vehicle's license plate on the image is. Given very tight constraint, the problem is surprisingly easy. However, I wanted it to be robust for arbitrary rotation of the license plate. I also wanted it to worked regardless of the lighting condition. Finally, I wanted it to make no assumption on the minimum and maximum size of the license plate itself on the image. To a certain degree, I have achieved these goals but still there are lots more opportunity for improvement.

The method that I used is based on graph cut segmentation and SVM. In the end, a paper was published to ISNN 2008.

link|improve this answer
show 1 more comment
feedback

Built a database that pulled data for the top S&P500 companies every 15 minutes for 6 months then trained an artificial neural network to identify trend data and make predictions on future trades for single stocks as well as groups of similar stocks. This project along with two other pretty cool ones caught the attention of local employers and landed me the job I'm in right now writing writing distributed SCADA applications. I plan on picking the up the code base when I get some time to make the process modular, more automated and expand the size of the neural net by a factor of 3-4x in an effort to apply the technique to other data sets such as march madness basketball or much longer larger blocks of stock data.

link|improve this answer
feedback

My team was working on a corporate social networking type thing. We did plan on continuing with it after school, but half the team didn't want to keep going after we graduated, so it was shelved. However, a big chunk (probably about a third) of the code in it has been repurposed.

The biggest contribution to my life from that project was experience as a project manager and systems analyst (I've always been a programmer, but never had to manage other programmers, and did little real - outside of class - analysis). It's given me a lot of insight into my job. My side projects have also benefited tremendously.

link|improve this answer
feedback

Resource Discovery with the help of WebServices for Distributed Computing

Or at least that's how I would translate it in english. We had to create an extension to ParoC++ (a language based on C++ that help you write and run large distributed programs for High Performance Computing). We had to replace the resource discovery part with an implementation based on Java, SOAP and Globus.

This was mainly academic. The based project (ParoC++) is used in error detection of textile printing and avalanche simulations. But our implementation has never been used in any real project (as far as I know).

It was a lot of fun. It helped me understand quite a few things about C++, Parallel programing and multi-threading. The title sounds dificult enough that when I mention it in an interview people might think that I am actually smart ;-)

link|improve this answer
feedback

I coded a tool for software measurement by UML diagrams in Java. The scenario was:

  • by ArgoUML or RationalRose I draw a class or state diagram: the result is a XMI file;
  • my tool parsed this file and populate a MySQL database;
  • by Swing UI I could extract the measures (Chidamber & Kemerer, Function Point, etc); the user could create him personal metric (as SQL code) and could see the statistical values of every predefined metric;
  • the user can export him result in CSV file;
link|improve this answer
feedback

My partner and I built a digital thermostat that was USB programmable. we built a small MFC front-end that let us set 5 independent alarm times that could set the temperature

link|improve this answer
feedback
1 2

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