Questions tagged [methodology]

A methodology is usually a guideline system for solving a problem, with specific components such as phases, tasks, methods, techniques and tools.

368 questions
3
votes
3 answers

unit testing philosophy

I have a "recipe" method which i am trying to write using TDD. It basically calls out to different methods and occasionally makes decisions based on results of these methods: public void HandleNewData(Data data) { var existingDataStore =…
dmg
  • 608
  • 8
  • 15
3
votes
4 answers

Using Different IDEs in the same development team

I'm about to join a new (Java) development team and a thought came to mind - do they use Eclipse? I have been working with Eclipse for the past 6 years and don't see myself switching to another IDE if the team is using that IDE (e.g. IntelliJ). Is…
RonK
  • 9,472
  • 8
  • 51
  • 87
3
votes
4 answers

How do you prove a function works?

I've recently gotten the testing religion and have started primarily with unit testing. I code unit tests which illustrate that a function works under certain cases, specifically using the exact inputs I'm using. I may do a number of unit tests to…
glenn
  • 651
  • 1
  • 6
  • 14
3
votes
5 answers

PHP debugging with remote shell access

I'm playing with a PHP weblog application using a shared hosting service, as a part of my PHP learning process. The service provider has a typical LAMP environment with remote ssh access. Vim has been my best friend in exploring the PHP code.…
PolyThinker
  • 5,152
  • 21
  • 22
3
votes
1 answer

Statistics based on MySQL and PHP

I'm struggling with a problem I hope some of you might be able to help me with. I got the following table structure for a table which contains lots of actions. I then would like to make a php script which generates some statistics.…
nickifrandsen
  • 423
  • 1
  • 7
  • 14
3
votes
3 answers

How can I figure out which programming methodology (if any) that we're using?

My group is moving to Team Foundation Server soon. Actually, I'm heading up the effort. One of the things you get to decide is which methodology you're using - Agile, CMMI, etc. Thing is - I have no idea what methodology we use. By which I mean,…
Tom Kidd
  • 12,830
  • 19
  • 89
  • 128
3
votes
2 answers

asp.net mvc stand alone ascx control how do i link (css and js) most efficiently

I need some advice. (For those who have already read this before I have re-edited this question heavily) I have developed some asp.net mvc web pages. Each page has a master and some ascx controls (between 2 - 6) embedded into it a js and css…
user425445
3
votes
2 answers

Selecting the right technology and environment

We are two developers on the edge of starting new web product development. We are both fans of lean start-up approach and would like to practice continuous deployment. Here comes the dilemma - we are both coming from a C# / Windows background and we…
Tor
  • 595
  • 2
  • 10
3
votes
4 answers

methodology for a team coursework

I need a methodology to organize my team for a university assignment. I am a university student and already have some programming experience. My experience of working in teams of more then 2 people on a relatively large project is that everything…
Aleksandrs Ulme
  • 1,262
  • 1
  • 12
  • 21
3
votes
4 answers

Development methodologies for immature teams

While studying a software methodologies, I often see disclaimers along the lines of "This methodology requires a mature development team." Which development methodologies are specifically geared towards immature development teams? I'd assume this…
Mike M. Lin
  • 9,992
  • 12
  • 53
  • 62
3
votes
4 answers

Which Programming methodology to used for Final Year Project?

I am a final year Computer Science Student and as part of my Bachelors degree I am doing a project on Data Mining of Microarray DNA expression data. I will have to develop a few algorithms such as Bayesian Networks to run on my datasets to find out…
Jetnor
  • 521
  • 2
  • 11
  • 26
3
votes
2 answers

spirit of a jUnit test

Suppose that you have the following logic in place: processMissing(masterKey, masterValue, p.getPropertiesData().get(i).getDuplicates()); public StringBuffer processMissing(String keyA, String valueA, Set dupes) { // do some magic } I…
James Raitsev
  • 92,517
  • 154
  • 335
  • 470
3
votes
0 answers

Alternative approach to reproducible research where source code is the primary medium

TL;DR: The common dynamic document (IPython notebook style) approach to reproducible research usually does not result in reusable source code modules. Are there tools/approaches that use the source code as the primary medium and include text within…
3
votes
7 answers

When not / to write tests before implementation?

I'm not sure how "tests first" works and I'd like to hear arguments about when and why one would take this approach. I hear that it's often recommended to write tests and mock things before writing a single line of implementation. However, I can't…
Wayne Bloss
  • 5,370
  • 7
  • 50
  • 81
3
votes
2 answers

MongoDB - PHP - Factory method implementation

There are lots of articles regarding factory method implementation in PHP. I want to implement such a method for my MongoDB implementation in PHP. I wrote the code something like below. Please Look at that code.
user10
  • 5,186
  • 8
  • 43
  • 64