What was your final year CS project? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T02:42:21Z http://stackoverflow.com/feeds/question/461715 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project 25 What was your final year CS project? Yew Long 2009-01-20T15:18:31Z 2009-11-03T22:02:23Z <p>As per title, I would love to hear from anyone willing to share their experience working on their CS FYP.</p> <ul> <li><p>Was it academic/proof-of concept or did it have real world applications? </p></li> <li><p>Did it become bigger or was it shelved after you graduated? </p></li> <li><p>How did working on the project contribute to your skills/experience/future career?</p></li> <li><p>Which would you have preferred: An excellent implementation of a normal idea or a normal implementation of an excellent idea?</p></li> </ul> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/461724#461724 0 Answer by DannySmurf for What was your final year CS project? DannySmurf 2009-01-20T15:22:00Z 2009-01-20T15:22:00Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/461734#461734 4 Answer by Elie for What was your final year CS project? Elie 2009-01-20T15:23:58Z 2009-01-20T15:23:58Z <p>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.</p> <p>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.</p> <p>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).</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/461740#461740 20 Answer by Barry Kelly for What was your final year CS project? Barry Kelly 2009-01-20T15:24:52Z 2009-01-20T15:24:52Z <p>I wrote a compiler for regular expressions to JVM bytecode that outperformed JDK 1.4's java.util.regex.</p> <p>I'm now a compiler engineer, so I it may have helped in terms of CV.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/461750#461750 0 Answer by Guillaume for What was your final year CS project? Guillaume 2009-01-20T15:27:38Z 2009-01-20T15:27:38Z <p><strong>Resource Discovery with the help of WebServices for Distributed Computing</strong></p> <p>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.</p> <p>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).</p> <p>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 ;-)</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/461751#461751 2 Answer by leeand00 for What was your final year CS project? leeand00 2009-01-20T15:28:12Z 2009-01-20T15:28:12Z <p>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.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/461752#461752 3 Answer by Rocco for What was your final year CS project? Rocco 2009-01-20T15:28:13Z 2009-01-20T15:28:13Z <p>Attempted Video Recovery from FAT based filesystems for a Police force, who had promised me lots of help and support.</p> <p>No support materialised, especially as the original project was to recover from a proprietary platform. Very frustrating.</p> <p>Only completed about half of what I wanted to do and subsequently was not particularly happy with the results, got a 2:1 mind.</p> <p>In hindsight don't work with an outside party if you can avoid it. Absolute nightmare.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/461758#461758 8 Answer by Richard for What was your final year CS project? Richard 2009-01-20T15:28:57Z 2009-01-20T16:04:42Z <p>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:</p> <ul> <li><strong>3D interface</strong><br/> 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</li> <li><strong>Algorithm framework</strong><br/> 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</li> <li><strong>DJ-mode</strong><br/> 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 ;)</li> </ul> <p>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.</p> <p>Remember to be ambitious!</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/461779#461779 2 Answer by d03boy for What was your final year CS project? d03boy 2009-01-20T15:32:47Z 2009-01-20T15:32:47Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/461799#461799 2 Answer by Jeff Allen for What was your final year CS project? Jeff Allen 2009-01-20T15:36:03Z 2009-01-20T15:36:03Z <p>A client-library for Whois++, a directory technology from when LDAP didn't yet seem like the final winner.</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/461829#461829 5 Answer by Kezzer for What was your final year CS project? Kezzer 2009-01-20T15:41:58Z 2009-01-20T15:41:58Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/461843#461843 3 Answer by Anton for What was your final year CS project? Anton 2009-01-20T15:46:20Z 2009-01-20T15:46:20Z <p>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.</p> <p>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. </p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/461846#461846 2 Answer by rlb.usa for What was your final year CS project? rlb.usa 2009-01-20T15:47:45Z 2009-01-20T15:47:45Z <p>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.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/461860#461860 2 Answer by Booji Boy for What was your final year CS project? Booji Boy 2009-01-20T15:50:16Z 2009-01-20T16:51:46Z <p>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. </p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/462053#462053 3 Answer by Kena for What was your final year CS project? Kena 2009-01-20T16:32:57Z 2009-01-20T16:32:57Z <p>I extended an existing OCR algorithm to work in adverse robotics environments. That mostly involved:</p> <ul> <li>tweaking the algorithm to deal with bad lighting, skewness, etc. </li> <li>matching characters into words and lines</li> <li>using dictionary to improve recognition scores</li> <li>swearing at the wretched little robot when it ran out of batteries/froze/got stuck in a corner...</li> </ul> <p>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.</p> <p>It ended up part of a published paper, and got used for a couple of years after that at least.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/462056#462056 3 Answer by Paul Mitchell for What was your final year CS project? Paul Mitchell 2009-01-20T16:33:48Z 2009-01-20T16:33:48Z <p>In 1982, I wrote a FORTH interpreter in C. Teaching myself the language straight from K&amp;R as I went.</p> <p>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.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/462079#462079 3 Answer by Carra for What was your final year CS project? Carra 2009-01-20T16:40:27Z 2009-01-20T16:49:01Z <p>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.</p> <p>I'm pretty sure it got shelved but I learned quite a bit from it.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/462118#462118 2 Answer by WestDiscGolf for What was your final year CS project? WestDiscGolf 2009-01-20T16:50:32Z 2009-01-20T16:50:32Z <p>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!</p> <p>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.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/462163#462163 2 Answer by TWith2Sugars for What was your final year CS project? TWith2Sugars 2009-01-20T17:05:11Z 2009-01-20T17:05:11Z <p>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.</p> <p>Got 1st for it though (^_^)</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/462182#462182 2 Answer by dacracot for What was your final year CS project? dacracot 2009-01-20T17:09:04Z 2009-01-20T17:09:04Z <p>It was 1983. We built a Visicalc clone for the DEC-20. The language was Pascal.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/462188#462188 2 Answer by Matt Johnson for What was your final year CS project? Matt Johnson 2009-01-20T17:11:05Z 2009-01-20T17:11:05Z <p><strong>3D State machines</strong> in 2003</p> <p>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.</p> <p>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.</p> <p>As far as I know it was shelved after I left. I certainly haven't seen any royalty cheques in the mail recently ;o) </p> <p>Edit: Oh yeah, I used Java.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/476202#476202 2 Answer by Brian Stewart for What was your final year CS project? Brian Stewart 2009-01-24T16:00:41Z 2009-01-24T16:00:41Z <p>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...</p> <p>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.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/483750#483750 1 Answer by alepuzio for What was your final year CS project? alepuzio 2009-01-27T15:06:37Z 2009-01-27T15:06:37Z <p>I coded a tool for software measurement by UML diagrams in Java. The scenario was: </p> <ul> <li>by <a href="http://argouml.tigris.org" rel="nofollow">ArgoUML</a> or <a href="http://www-01.ibm.com/software/awdtools/developer/rose/" rel="nofollow">RationalRose</a> I draw a class or state diagram: the result is a <a href="http://en.wikipedia.org/wiki/XML_Metadata_Interchange" rel="nofollow">XMI</a> file;</li> <li>my tool parsed this file and populate a MySQL database;</li> <li>by Swing UI I could extract the measures (<a href="http://www.aivosto.com/project/help/pm-oo-ck.html" rel="nofollow">Chidamber &amp; Kemerer</a>, <a href="http://en.wikipedia.org/wiki/Function_point" rel="nofollow">Function Point</a>, etc); the user could create him personal metric (as SQL code) and could see the statistical values of every predefined metric;</li> <li>the user can export him result in CSV file;</li> </ul> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/483768#483768 2 Answer by Orkun Balkancı for What was your final year CS project? Orkun Balkancı 2009-01-27T15:09:58Z 2009-01-27T15:09:58Z <p>3D Cloud simulation using metaballs and marching cubes algorithm. It was written in C++ and openGl.</p> <ul> <li>That was it. Never worked on it later.</li> <li>But It was helpful with my first job which was game development. </li> </ul> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/483776#483776 0 Answer by George Stocker for What was your final year CS project? George Stocker 2009-01-27T15:12:07Z 2009-01-27T15:12:07Z <p><strong>Degree</strong>: Computer Information Systems</p> <p><strong>Project</strong>: Client Data Tracking System</p> <p><strong>Synopsis</strong>: The project was to build an information system for a local charity that would allow them to track their clients, aid given, and print reports based on such.</p> <p><strong>Result</strong>: Partial success. System was designed from scratch (full SDLC), software was written, and the client was able to use it for basic CRUD work. At the time, it couldn't produce reports.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/483784#483784 -1 Answer by ryeguy for What was your final year CS project? ryeguy 2009-01-27T15:13:44Z 2009-01-27T15:13:44Z <p>I had a capstone project as our final final class, but before that I had a software engineering class which was pretty much the same as a capstone but with more engineering methodologies in it. I've only finished my associates degree but here's my petty accomplishments: For my software engineering project, we created a top-down shooter game using C++ and DarkBasic. For my capstone, we made a Microsoft Money type system but it saved to a database instead of the local computer so you can login from anywhere to modify your stuff.</p> <p>Can't wait to see what I do this year!</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/483790#483790 4 Answer by Joel Marcey for What was your final year CS project? Joel Marcey 2009-01-27T15:14:45Z 2009-07-06T22:18:16Z <p>A search engine before search engines were popular. Too bad I didn't know then what I know now. </p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/483801#483801 0 Answer by Ian Jacobs for What was your final year CS project? Ian Jacobs 2009-01-27T15:17:29Z 2009-01-27T15:17:29Z <p>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</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/483818#483818 10 Answer by Ty for What was your final year CS project? Ty 2009-01-27T15:19:34Z 2009-01-27T15:19:34Z <p><strong>Automated Network Update System</strong></p> <p>or ANUS for short.</p> <p>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.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/487482#487482 1 Answer by Saj for What was your final year CS project? Saj 2009-01-28T12:44:10Z 2009-01-28T12:44:10Z <p>We developed a Mobile Information System (MIS) for our college so that the students can enroll through their mobile phones, get info on quizzes/exams, make a query on their class performace and all.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/487495#487495 1 Answer by Daniel Silveira for What was your final year CS project? Daniel Silveira 2009-01-28T12:48:41Z 2009-01-28T12:48:41Z <p>L2LB is an <strong>linux open-source alternative for load balancing TCP services</strong>, like HTTP, FTP, DNS.</p> <ul> <li>It is a front-end free solution, which means you build a cluster with only the processing servers.</li> <li>It runs as a linux kernel module, for ultra-fast response time and network packages mangling and filter</li> <li>It uses round-robin algorithm for load balancing the requests</li> <li>It uses client-server affinity for proper session handling</li> </ul> <p><a href="http://code.google.com/p/l2lb/" rel="nofollow">http://code.google.com/p/l2lb/</a> <br /> <a href="http://disciplinas.dcc.ufba.br/pub/MATA67/TrabalhosSemestre20082/Monografia_-_Daniel_Gomes_Silveira.pdf" rel="nofollow">http://disciplinas.dcc.ufba.br/pub/MATA67/TrabalhosSemestre20082/Monografia_-_Daniel_Gomes_Silveira.pdf</a> (Portuguese-BR)</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/487506#487506 2 Answer by Erik Hellström for What was your final year CS project? Erik Hellström 2009-01-28T12:51:40Z 2009-01-28T12:51:40Z <p>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... :)</p> <p>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.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/487557#487557 0 Answer by Dominic Rodger for What was your final year CS project? Dominic Rodger 2009-01-28T13:08:27Z 2009-01-28T13:08:27Z <p>I worked on a project called Kifano, which used a library for computing the differences between two pieces of music, to help generate music recommendations based on a set of known "liked" songs. The backend music analysis was done in Java, and the user application was a Ruby on Rails application.</p> <p>In answer to your questions:</p> <ol> <li>I suppose it was both - proof-of-concept in that the application demonstrated that "sounds-like" metrics generate reasonable recommendations; and real-world, in that actual people used the application.</li> <li>It was shelved, wish I had time to work on it more.</li> <li>It taught me an awful lot about working on large codebases, particularly the value of version control (i.e. I wish I'd used version control!).</li> </ol> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/490646#490646 2 Answer by Hao Wooi Lim for What was your final year CS project? Hao Wooi Lim 2009-01-29T06:15:32Z 2009-01-29T06:15:32Z <p>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.</p> <p>The method that I used is based on graph cut segmentation and SVM. In the end, a paper was published to ISNN 2008.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/490687#490687 3 Answer by Bhushan for What was your final year CS project? Bhushan 2009-01-29T06:43:09Z 2009-01-29T06:43:09Z <p>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.</p> <p>This was in 1998 and now we have infra red, bluetooth etc.</p> <p>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.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/494098#494098 0 Answer by HenryR for What was your final year CS project? HenryR 2009-01-30T00:48:29Z 2009-01-30T00:48:29Z <p>Streaming geometry for remote visualisation of very large datasets. </p> <p>Picking geometry that was perceptually relevant to the user (with a bit of machine learning on simulated user runs through the data set), guessing where they were going to go next and sending the right geometry as a prefetch, doing hidden surface removal on the server at run-time and via pre-processing. </p> <p>Plus some novel (but flawed) compression algorithms based on genetic algorithms. It was a real grab-bag of techniques. </p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/494129#494129 0 Answer by Richie_W for What was your final year CS project? Richie_W 2009-01-30T01:05:26Z 2009-01-30T01:21:28Z <p><strong>Degree: Computer Science</strong></p> <p><strong>Project: Post Room Computer</strong></p> <p>I made a somewhat more complex little man computer model (Based on my professor's design) called the Post Room Computer.</p> <p>The program featured an assembler / compiler (which supported label and macro substitution) and two different computers models (One absolute addressed and one Register addressed). </p> <p>The program 'compiled' the assembly language (No 3rd party parsing libraries were used) into decimal machine code which then could be executed on either of the emulated computers (were complete with memory, register, and ALU components). </p> <p>All of this ran on top of a pretty GUI (although it could be run from the command line also) The final project was awarded 72% (A 1:1).</p> <p><a href="http://compeng.hud.ac.uk/scomhro/Courses/PostroomComputer/" rel="nofollow">Post Room Computer homepage</a></p> <p><a href="http://compeng.hud.ac.uk/scomhro/Courses/PostroomComputer/PostroomComputers/PostroomComputer7/body.html" rel="nofollow">Download page</a></p> <p>Here is some sample code which will print out the numbers 0 to 99:</p> <pre><code>:loop: out :count: add :count: :one: mov :tmp: :count: sub :tmp: :max: jmp ltz :loop: hlt :count: (0) :tmp: (0) :one: (1) :max: (100) </code></pre> <p>That would be compiled to:</p> <pre><code>6006000 3006008 2007006 4007009 8002000 0000000 0 0 1 100 </code></pre> <p>The computer would then execute that code.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/494150#494150 0 Answer by geofftnz for What was your final year CS project? geofftnz 2009-01-30T01:16:09Z 2009-01-30T01:16:09Z <p>Document Image Highlighting. </p> <p>Basically given a scanned document image and the OCRed text, locate and highlight certain words in the image. The challenge was that the images were pretty poor quality. The dataset I was using was a <a href="http://nzdl.sadl.uleth.ca/cgi-bin/library?gg=_cgiarggg_&amp;e=p-00000-00---off-0niupepa--00-0--0-10-0---0---0prompt-10---4-------0-1l--11-mi-50---20-about---00-0-1-00-0-0-11-1-0utfZz-8-00&amp;a=p&amp;p=about&amp;l=en" rel="nofollow">collection of scanned 150+ year old newspapers</a>. Very dense print, torn pages, distorted pages and some were rotated up to 5 degrees on the scanner.</p> <p>I got it working for most situations, but I dont think it ever got integrated into the <a href="http://www.greenstone.org/" rel="nofollow">Greenstone</a> codebase.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/515868#515868 0 Answer by j4mie for What was your final year CS project? j4mie 2009-02-05T13:20:49Z 2009-02-05T13:20:49Z <p>My undergrad project was a system to translate compiled x86 binaries into Java VM bytecodes. It was very rudimentary (it actually took in assembler mnemonics and output Java source code, and it only worked for Hello World and some simple arithmetic instructions, but it had a nice pluggable architecture and could have been extended quite easily.</p> <p>My MSc project was about the evolution of camouflage patterns. I used a bio-inspired computer vision network build with <a href="http://www.numenta.com/" rel="nofollow">Numenta NuPic</a> to evaluate patterns generated with a particular kind of weighted cellular automaton. The vision system was looking for "prey" patterns embedded in a background pattern. It worked pretty well, and with a high-resolution image sensor and some co-adaptation between the vision system and the patterns, it could evolve pattern weight sets which more-or-less perfectly blended into the background.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/515984#515984 -1 Answer by chinnagaja for What was your final year CS project? chinnagaja 2009-02-05T13:57:34Z 2009-02-05T13:57:34Z <p>it was in 2002, i implemented the concept Steganography in c language. Its was the time when 9/11 attach and reports says the people involved might used this concept. having this an interest, we started learning the concept of steganograpy. The implementation is, embed a text file in to a BMP image and transfer the image via any medium. the decode algorithm extract the same file out from the bit map image raw bits. the same concept we tried in the WAV files and got success after the project. Now i am an application developer using c/c++ language. involved in writing a framework code which involved various report format (xml, pdf, csv)generation from application text report. </p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/524719#524719 1 Answer by Sophia for What was your final year CS project? Sophia 2009-02-07T22:24:14Z 2009-02-07T22:24:14Z <p>We wrote an online image management system for <em>thousands</em> of high resolution blood slides, for biology students and researchers at my uni. Basically, it had to restrict and track downloads, allow categorisation by different blood cell types and deformities etc, and provide some basic login and reporting features..</p> <p>It was in PHP, and it was before I learnt about the joys of PHP frameworks (it could have made our lives so much easier). We worked in a team of 5. It was a good opportunity to self teach ourselves how to do things like image processing, captchas, tagging systems, subversioning etcetera. </p> <p>It was a good lesson in dealing with clients as well, the client kept changing scope and feature requirements every couple of weeks. In the last week she even changed her mind about it running in PHP and MySQL and wanted us to change it to ASP and Oracle, because she'd heard that those were better.</p> <p>Last time I checked it was still in use at my old uni. Looking back, my code is quite horrific! But at least it proves that I have learnt something after uni :)</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/530997#530997 0 Answer by Amit for What was your final year CS project? Amit 2009-02-10T03:47:00Z 2009-02-10T03:47:00Z <p>As per the curriculum in my school, we had to carry out 2 final year projects, and 3 including the pre-final year internship. Here are they:</p> <ol> <li>I worked on Default Reasoning using Fuzzy logic during my summer internship and had succesfully done a literature survey of Commonsense Reasoning. I developed some worked out examples to demonstrate my work in Default Reasoning using Fuzzy Logic. The whole exercise was intellectually simulating</li> <li>For my first final year project, I studied parallel programming with MPI and PVM. Since, I did not have an idea about parallel computing till then, the project taught me a lot of them. I also brainstormed a MPI plugin for GIMP to enable Parallel Image Processing. Sad, that I never managed the time to implement it</li> <li>This was rather stupid, though learning experience. I developed a management tool with the all the stupid GUI for Software RAID on Linux. It was a pretty handy tool which could be used to teach software RAID</li> </ol> <p>The best part and the reason for which I chose them (My profs, didn't) was that each project taught me something which I didn't know previously and that IMO should be the ONLY goal for a project.</p> <p>Good Luck!</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/588979#588979 1 Answer by Nerdling for What was your final year CS project? Nerdling 2009-02-26T03:31:08Z 2009-02-26T03:31:08Z <p>I did the only research-oriented project in my graduating class: Separating easy and hard logic programming problems. This is related to <a href="http://en.wikipedia.org/wiki/Satisfiability" rel="nofollow">satisfiability</a> (3- and k-SAT) and <a href="http://en.wikipedia.org/wiki/Stable%5Fmodel" rel="nofollow">stable models</a>.</p> <p>The results are for use in solving logic (<a href="http://en.wikipedia.org/wiki/Np%5Fcomplete" rel="nofollow">NP Complete</a>), revealing what conditions in logic problems caused a noticeable increase in time-to-solve. I created a program to randomly generate hundreds of programs for every ratio of rules to variables and clauses. The results can then be graphed in various directions to show there is indeed an mixture that makes programs significantly more difficult to solve.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/629550#629550 1 Answer by Mike Roosa for What was your final year CS project? Mike Roosa 2009-03-10T10:10:25Z 2009-03-10T10:10:25Z <p>I did a proof of concept on Image Recognition. This was back in 1994 so it was the VB3.0 era. I used C however and the project was to track dolphins in the Gulf of Mexico. Apparently you can recognize dolphins by the fin on their backs. Each dolphin's fin has unique markings, shape, size and the marine biologists at our college wanted to track the dolphins from images. </p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/1113021#1113021 0 Answer by MJ for What was your final year CS project? MJ 2009-07-11T05:30:49Z 2009-07-11T05:30:49Z <p>I ended up with a team where we developed a scheduling system to be used in state run jails throughout the northern part of our state. We partnered with a local firm that got the bid for the project, and we did most of the hard work (ie developing the algorithm from an academic paper). We gave a large presentation with the chancellor and many of the university staff (we filled our large lecture hall). The firm was very impressed with our algorithm, but did end up re-doing our presentation layer.</p> <p>We did get a letter of recommendation from the chancellor and the CEO's firm.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/1243246#1243246 0 Answer by Alex for What was your final year CS project? Alex 2009-08-07T06:38:01Z 2009-08-07T06:38:01Z <p>Here is how it worked at my school: companies would present projects to the university. Students would choose a project and work in teams of 5-6 people. Someone from the company would act as the team mentor and make sure you were on the right track. </p> <p>It sounds like a good idea to run a project like this, structuring the project so that students get experience with a large development effort and deliver something with real world value.</p> <p>We were given the task of optimising a universal medical record application that was woefully slow. We were given a massive VB app and some DLLs that interpreted the format of the medical records. On inspection we discovered that the DLLs were the main bottleneck in the performance. Unfortunetely the company in question did not want to give us the source code to the libraries. The mentor was a business improvement type who didnt really understand the problem. It was too late by this time to start a new project. </p> <p>So in the end, all that we delivered was a document explaining where the bottlenecks were and why we couldnt fix them. It was supported by some charts generated by a profiling app.</p> <p>I remember being quite despondent at the time about the outcomes of the project and how little we'd managed to achieve from a technical point of view. We ended up with a fairly good mark though because our document was very thorough. That was about five years ago. </p> <p>Now I realise how much that project taught me about business communication and presenting technical arguments to non technical people. Being able to explain to management in a clear and quantifiable manner why some idea, approach or requirement is not a good idea has saved my sanity many times over. </p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/1243266#1243266 0 Answer by Spence for What was your final year CS project? Spence 2009-08-07T06:44:25Z 2009-08-07T06:44:25Z <p>We wrote a system in a team of 5 to manage safety on a project.</p> <p>Effectively you would create a fault tree in the software for a given system that you were analysing and the system would allow you to drill down and map the faults, failures etc. of the system to predict its probability of failure.</p> <p>You could then create requirements based on your analysis to try and prevent these from occuring. The system would print out a great report with a representation of the tree and the final derived requirements for establishing the software. Working with a defence contractor and the government looks <em>really</em> good on your resume as a graduate.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/1243282#1243282 0 Answer by kdmurray for What was your final year CS project? kdmurray 2009-08-07T06:48:49Z 2009-08-07T06:48:49Z <p>My final project was actually a series of projects that I was working on in the office that (thankfully) I was allowed to submit as my final project. The projects focused around the internal tooling of a team who needed to improve document management, password management (for servers, databases etc) as well as catalogue all of the tools that they were supporting (over 200 at the time).</p> <p>In a lot of ways the projects themselves were simple. It was a case of making everything work together. For example, the application database tied in to the infrastructure monitoring tool to help keep tabs on server uptime. It became a simple case of pulling a report to find all of the affected applications (and their dev leads) in the case of a server outage.</p> <p>The tooling was simple, but the tools served their purpose and are still in operation today.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/1243295#1243295 0 Answer by ufukgun for What was your final year CS project? ufukgun 2009-08-07T06:52:22Z 2009-08-07T06:52:22Z <p>Face recognizer and identifier tool...</p> <p>it was just proof-of-concept.. </p> <p>now i am working in graphics instead of image processing.. but the project was funny..</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/1645797#1645797 0 Answer by SnOrfus for What was your final year CS project? SnOrfus 2009-10-29T18:49:43Z 2009-10-29T18:49:43Z <p>I was on a 2 man team (well 3, but the third did sweet f-all) and we made a multiplayer overhead perspective shooter. It was tonnes of fun.</p> <p>I worked on it a bit after I left school, adding an existing OS physics engine to it, but once I started working full-time, I've always had so many other things to study and work on that would advance my current career.</p> <p>I learned a lot of little things, working on the project but I took the most from writing the network code and game state machine as they were my biggest introductions to network programming and design patterns that went beyond labs with instructions.</p> <p>The part about the project that really made it stick out as both memorable and a good learning experience was that the project was a 'choose your own adventure' type thing. Our prof told us to make whatever we want, he just had to vet it for difficulty first. Some people hacked up small firewalls, some wrote IMs (I had already written one for another course), some wrote webapps. So there was the option to make "an excellent implementation of a normal idea or a normal implementation of an excellent idea"</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/1670341#1670341 0 Answer by Dan Midwood for What was your final year CS project? Dan Midwood 2009-11-03T21:46:36Z 2009-11-03T21:46:36Z <p>I created an app in Java to discover solutions to the <a href="http://en.wikipedia.org/wiki/Prisoner%27s%5Fdilemma" rel="nofollow">Prisoner's Dilemma</a> using Genetic Algorithms. The bit string population was spread over an area with various selection techniques based on location and other things as well as the fitness.</p> <p>It included a front end that displayed a grid for the population area and then I made the display of each bit string a small circle of a colour (determined by its bits) and added legs and eyes, I called these (and the app) "Danimals". A picture of a few Danimals is available <a href="http://danmidwood.com/projects/danimals/danimals.jpg" rel="nofollow">here</a>.</p> <p>I received a first for the project but didn't continue it after university.</p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/1670411#1670411 0 Answer by MBCook for What was your final year CS project? MBCook 2009-11-03T21:58:30Z 2009-11-03T21:58:30Z <p><strong>A scheduling system for the school.</strong></p> <p>I worked part time at my school, and knew many of the admissions officers. While my team and I were trying to figure out what to do for our project, I showed a little program that I created to the head admissions officer and she <em>loved</em> it.</p> <p>I hated trying to schedule my classes. I would color boxes onto transparencies and lay them on each other to find schedules. I whipped up a little program with Java and Swing that would read in the times courses were offered and would show me every permutation of the schedule, giving me at least X hours. This meant that instead of spending a couple of hours trying to figure out a schedule (and change it as classes filled up), I could type in a couple dozen lines from the course catalog into a simple CSV like format and have my program display possible schedules for me.</p> <p>It looked quite nice, which was probably a help. Basically copying the way iCal shows things helped there.</p> <p>So for our project, my team and I took my little program and added a database back end and web front end that would allow the administrators to easily add/update classes so that students could always get the latest update of courses without having to filter them by hand with open/closed courses. We also added additional features such as supporting more schedules (half-semester classes instead of just full, etc.), printing (which was a big challenge), and more.</p> <p>It was actually a pretty fun project. I'd love to know if they use it, but I haven't asked. The corporate office was apparently interested in it. I found my program very useful, I <em>really</em> hated trying to piece schedules together.</p> <p>It had it's problems. The PHP front end to the database was rather ugly, but I knew that at the time. Having it connect directly to the database was a mistake. It couldn't do much thanks to right limits, but it should have asked through a web-service or something easier to secure/replace.</p> <p>Still, I learned a ton, especially with the requirements that I never would have thought of based on real world scenarios that the school had to deal with. It had to be able to show more than 8 different courses on a schedule and handle over 50 hours a week, both of which one poor student took once. </p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/1670429#1670429 0 Answer by Ian Devlin for What was your final year CS project? Ian Devlin 2009-11-03T22:02:23Z 2009-11-03T22:02:23Z <p>I had no idea what I wanted to do for my FYP. My university provided lists of projects that they would like to see done, so I ended up creating an Old Irish font with Metafont. That was it really and I could have done more.</p> <p>I would have preferred to do something more programming-like although I had to learn how to use Metafont myself as no-one in the university had ever used it! So I suppose that was useful.</p>