A methodology is usually a guideline system for solving a problem, with specific components such as phases, tasks, methods, techniques and tools.
Questions tagged [methodology]
368 questions
0
votes
1 answer
Is OWASP suitable for network security testing?
I'm actually testing a mobile phone, from a security point of view.
I used the OSSTMM methodology, did the security tests, analysis, pen-test and so on.
I was wondering if there was a part of OWASP that could be used in this scope.
After doing a…

nrocha
- 384
- 1
- 2
- 9
0
votes
2 answers
Giving web designers autonomy to publish
I would like to give web designers autonomy to publish web pages but letting them to edit aspx files is a serious security risk as they don't have the required programming skills.
I was thinking about two approaches:
They are only able to edit html…

Eduardo
- 5,645
- 4
- 49
- 57
0
votes
0 answers
Methodology: Recursive datasets - tree branch refinement
I have a number of sets of data. These sets contain numbers that specify how much points a user gains upon passing to the next index:
A = (2,[2],2,6,6,10)
B = (2,4,[4],2,5,7,7,6,10,12,10,6)
C = (2,3,[4],5,6,7,7,8,10)
In this example I use three…

JohannesB
- 1,995
- 21
- 35
0
votes
2 answers
How to fetch thousands of data from database without getting slow down?
I want auto search option in textbox and data is fetching from database. I have thousands of data in my database table (almost 8-10000 rows). I know how to achieve this but as I am fetching thousands of data, it will take a lot of time to fetch. How…

Sagar
- 7,115
- 6
- 21
- 35
0
votes
1 answer
Struggling with REST and Larman's (RCP?) system operations
In Craig Larman's book Applying UML and Patterns: An Introduction to Object-Oriented Analysis and Design and Iterative Development (3rd Edition), a use case is converted to a System Sequence Diagram (SSD) which contains system operations. It's a way…

Fuhrmanator
- 11,459
- 6
- 62
- 111
0
votes
2 answers
Iterative development approach good or bad for a web application
could someone explain to me the iterative development methodology and the benefits/limitations for using it in developing a web application?
Also, I've been researching it but I am confused, is it part of Agile or not? Some sources say that it is…

alice
- 3
- 1
- 5
0
votes
3 answers
Languages and development methodologies
Having never worked with Ruby on Rails, I looked it up on Wikipedia. It says
It is intended to be used with an
Agile development methodology that is
used by web developers for rapid
development.
This got me asking how a given…

Carlos
- 5,991
- 6
- 43
- 82
0
votes
4 answers
When building Java RESTful Service, what has bigger advantages - to create POJOs or XML documents for them first?
For instance, when I know how all representations should look like, which path has more advantages.
Creating/Annotating Java classes and then document them in (lets say) XML documentations.
Write XML representation and then generate Java…

LaRRy
- 626
- 5
- 20
0
votes
2 answers
Folder structure of a SMACSS project – Where to put class?
I am starting to follow the SMACSS principle when writing CSS. Having read the book twice, I think I got a good grip on the theory, but now I've got some problems putting that to actual work.
In my base folder, I've got normalize.css together with a…

Sven
- 12,997
- 27
- 90
- 148
0
votes
1 answer
Learning Qt: Which methodology to be used for this "advanced UI"?
I am learning Qt5 using PyQt.
My goal is to create a UI with several goals (I will base my need on the screenshot below).
So here are my goals:
My need
Add directories to a list of directories to be scanned (I know how to use…

Plouff
- 3,290
- 2
- 27
- 45
0
votes
3 answers
How to represent / calculate / use non-linear burndown charts
Our company relies heavily on burndown charts to track the progress of the different teams. One issue we are facing is that the 'ideal' trend is a straight line that goes from the initial capacity to 0 and that does not represent what the team can…

Ignacio Soler Garcia
- 21,122
- 31
- 128
- 207
0
votes
1 answer
passing user data between pages
I have a web app that shows a list of online users. The user may select one other user from that list to connect to, which, brings it to a new page. This new page will be where the users "connect" (using WebRTC). For my connection method I need the…

chRyNaN
- 3,592
- 5
- 46
- 74
0
votes
1 answer
software methodology used in project
Currently I am working on porting a benchmark application to another system. I am working alone, so I am frustrated about which software methodology I really have to use. Please give me some ideas.

Davy
- 125
- 1
- 12
0
votes
2 answers
Using Essential Use Cases to design a UI-centric Application
I'm begging a new project (oh, how I love the fresh taste of a new project!) and we are just starting to design it. In short: The application is a UI that will enable users to model an execution flow (a Visio like drag & drop interface). So our…

Bruno Brant
- 8,226
- 7
- 45
- 90
0
votes
0 answers
Is the following procedure the correct way to delete 2 linked lists that have some common elements?
struct node* tempA;
struct node* tempB;
n = 501;
m = 501;
tempA = A;
tempB = B;
while ( tempA != NULL && tempB != NULL )
{
if ( tempA->data == tempB->data )
{
int common = tempA->data;
if…

Thejas
- 59
- 5