academic

Study on the acceptance factors of open source contributions?

I am soon to be writing a dissertation as part of my degree course, which is based on enhancing an open source product. The main body of the dissertation will be about my research into how to enhance the product, how I implemented it, and how I evaluated it. In it I also want to briefly discuss the factors involved in my work being accep...

Why must I use "Resources" in WPF?

I'm just diving into WPF and find this a little odd and frustrating to my style: Why can the value of something be a Resource but you can't set the value directly to what the Resource represents? Example: This is valid: <ToggleButton> <ToggleButton.Resources> <Image x:Key="cancelImage" Source="cancel.png" /> </ToggleBut...

I am new to programming.How can I best start to learn?

Possible Duplicates: Good place to start learning ASP.NET Help getting started in programming? I am new to programming.How can I best start to learn?Thanx in advance...... ...

Is a Protocol based on an existing Protocol still a Protocol?

I am developing an open "protocol" for dynamic ridesharing services using mobile phones. It is based on XML-RPC and uses marshalled objects as parameters (quite like Soap). Every entity and operation will be heavily documented in the draft. As example, look at this first skeleton of a documented Prefs object to be used in the Protocol....

Introduction to various Attack types

I just read a paper on preventing buffer overflow attacks and in that vein, I am looking for a paper or set of papers that will explain the various types of attacks that programmers and sysadmins have to worry about. Can anyone help? even a keywords to search ACM under. ...

Suggestions for an academic project on Linux device driver programming

I am doing training in LINUX OS and device driver programming (introduction). I need to work on a live project which can be completed within maximim 10 days days. This is part of my under graduation course requirement. The project is compulsory and contributes to 70% of the total marks I get for this training. So a good project would c...

What is the formal name for a table that maps multiple data to a single id?

For example, if I wanted if I wanted to parse the input arguments from a java program and use the input option as a key to get a variable name... i.e. java optionTable ------------------------------------------------------ option | option help | internal option variable name | I could implement this using brute force tactics, such a...

Numerical precision in simple financial computations

Hi everyone I did a course at university that explained how (amongst other things) to order your mathematical execution to maximize precision and reduce the risk of rounding errors in a finite precision environment. We are working on a financial system with your usual interest calculations and such. Can somebody please share/remind me ...