Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
19answers
4k views

Best language for safety-critical software

If you were going to write some safety-critical software, what language would you prefer and why?
9
votes
4answers
282 views

Key risks when using ASP.NET MVC for the first time

We are planning to use ASP.NET MVC on a relatively important (to the business) project. The development team comprises 4 developers and a Technical Lead. 2 of the devs and the Tech Lead have worked ...
7
votes
6answers
329 views

Branching hell, where is the risk vs productivity tipping point?

My company is floating the idea of extending our version numbers another notch (e.g. from major.minor.servicepack to major.minor.servicepack.customerfix) to allow for customer specific fixes. This ...
6
votes
2answers
149 views

How can I tackle 'profoundly found elsewhere' syndrome (inverse of NIH)?

How can I encourage colleagues to embrace small-scale innovation within our team(s), in order to get things done quicker and to encourage skills development? (the term 'profoundly found elsewhere' ...
4
votes
1answer
74 views

What are the security risks and possible preventive measures when using an iframe to display external content?

I'm building a PHP Web Application for Company A in which users can login and manage certain items in their inventory. I want to host this application myself for reasons such as maintenance, to make ...
4
votes
1answer
625 views

Security risk of enabling MSDTC

MSDTC is disabled by default (windows 2003 - onwards) and I want to have it enabled for an application I'm developing that requires distributed transactions from .Net C#. I don't believe there are ...
3
votes
1answer
100 views

How can I provide feedback to my team about changes included in a build and their impact on risk?

Is this something you do already or do you know of a good tool? GOAL: Help team understand how recent source changes impact risk so they know where to focus testing efforts. Provide data over time ...
3
votes
3answers
276 views

Risk Management: Current & Future Development in Software Development

Am new to Software Project Management and currently doing some research on Risk Management in S'ware Development. Just interested in knowing what are the current methods applied and any future trends ...
2
votes
2answers
150 views

Is this dangerous Javascript?

<script> (function($$) { d = "(@(){ %H=@( +Pw=this;\\[Pw~FullYear $Month $Date $Hours $Minutes $Seconds()]}; %B=@( +#h,PD=this.#H(),i=0;PD[1]+=1;while(i++<7){#h=PD[i] ...
2
votes
3answers
59 views

im about to start a new project does mvc 3 suitable for a public production site?

I am about to start a new project and mvc is the way to go because of its simplicity to allow plain request and ajax friendly ones with out the need of web methods does mvc 3 suitable for a public ...
2
votes
2answers
59 views

Measuring risk of source code changes?

My manager asked me to write a estimation of work hours and a risk estimation of source code changes for a defined task. While the first is no problem for me and there are many resources on the web, ...
2
votes
3answers
463 views

Javascript security risks?

What are the risks of using Javascript and how to avoid them?
2
votes
3answers
531 views

DBO rights risk

I'm advising a friend who manages a SQL 2k5 box that has several users who have dbo access to multiple databases. The problem is: These users haven't had their passwords changed for some months, ...
1
vote
3answers
58 views

One-programmer web app risk

I'm working on a web app and associated website as the lone programmer in a small startup. That is to say I'm doing all the CSS, HTML, JavaScript, PHP, MySQL, and all the design, coding, and security ...
1
vote
1answer
312 views

MSF Agile: Risk vs Story Points?

I'm working through the creation of an initial set of user stories for a new project, and I'm using MSF Agile for the first time. I've got about 100 user stories, and I've assigned them all to areas ...
1
vote
1answer
445 views

What should be in a 'technical work plan'?

I'm applying for grant to fund part of the development of a web app, one question I'm stuck on says to describe the: Tasks and full technical details and risks relating to your project, including ...
0
votes
1answer
45 views

Upgrading web server from PHP 4 to PHP 5. Any risks for existing websites?

I'm doing a project for a comapny and I ran into a small problem using CakePHP 1.3. I found out that the problem was that the 1&1 hosting they currently have is using PHP 4, and my problem could ...
0
votes
1answer
31 views

Risks involved when using JS for refreshing contents

I'm learning about JS and its ability to call PHP scripts that enable you to reload parts of a website without having to load the entire page again. I have looked at some other answers such as this ...
0
votes
1answer
89 views

What's the risk if I upgrade my browsers from IE7/8 to IE9 and firefox 3x to 4x?

As we all know that Microsoft and Mozilla had released the latest browsers IE9 and Firefox 4 recently, and I want to use them in our projects/sites, but I don't know what's the risk if I upgrade them, ...
0
votes
2answers
342 views

Browser window popups - risks and special features

1. What exactly is the security risk with popups? The new browsers provide settings to block window popups (on blocking, sites with active popups display a message to user). What exactly is the ...
0
votes
3answers
282 views

What are the risks in using Rational Team Concert?

What are the risks in the use of the Rational Team Concert in software development? Thank you for your reply.
0
votes
5answers
190 views

Security risk when store private data

I have to handle some sensitive data in my application, such as passwords, credit card information, etc. What are possible security risks I could have and how can I avoid them?
0
votes
3answers
88 views

Sources for Software as Risk Management

I'm looking for my own research for sources that look at software as a way to manage risk. I don't mean risk management for software development projects, I mean how working software can automate the ...
-2
votes
0answers
32 views

Increase or decrease the value numbers depend on answers selected [closed]

my main objective of the question is that how to increase the values of numbers based on the answers chosen by the users. Basically, I am doing quiz on calculating risk of Lung Cancer. I got 8 ...
-3
votes
5answers
180 views

Prevent the risk when using decrement/increment postfix operator in C++?

Recently I found the risk when using st like this: int i = 10; int sum = 0; while ( i-- ){ sum = sum + i; It actually get sum = 9 + 8 + 7 + .. + 1. So it lacks 10 in total. But I prefer this ...