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
0 answers
Is there a reason why configuration files options are commented instead of set to false in many systems?
I was wondering why it seems to be a convention to comment options in configuration files instead of setting them to false.
In most cases, instead of having an option like that :
#This an option to enable something
enable_something=NO
It will be…

B.T
- 521
- 1
- 7
- 26
0
votes
0 answers
root user faces "Permission denied". How to find the cause?
I wonder how one investigates the cause of denied access in a case like that:
uid=0(root) gid=0(root) groups=0(root)
root@host:/tmp# chown root .mount_app
chown: cannot access '.mount_app': Permission denied
root@host:/tmp# ls -la…

Semnodime
- 1,872
- 1
- 15
- 24
0
votes
1 answer
git: freeze/unfreeze working directory according branches
I am working with git developing a feature, for this I have created a topic/1 branch
The development of this feature has been stopped, as I am waiting for a response
I have a lot of changes in my working directory that are temporary things, that I…

user60108
- 3,270
- 2
- 27
- 43
0
votes
2 answers
How to work on a project with limited access?
It's nice to have a complete project at your disposal to see how an application works when it's modified.
That's in an ideal situation. Now, say you have ftp access to a web site root with all the source files, you're unfamiliar with the site…

James P.
- 19,313
- 27
- 97
- 155
0
votes
2 answers
What performance testing methodology are you using for your webapps?
I would like to performance test a typical web application. The application offers some web2.0 functionalities, like writing blogs, wikis, search for contents and something like this. I've analysed the access log and got know an unterstanding what…

Mork0075
- 5,895
- 4
- 25
- 24
0
votes
0 answers
How to decide whether to keep the duplicate rows or remove them. I have two duplicate records but they refer to two different persons
I am trying to build an NLP model on this data set where I have data from some accidents where I need to predict the Accident Level. There are a total of 13 duplicate rows. But on looking into them I figure out that they are for different people…

Priyanshi Tyagi
- 7
- 2
0
votes
1 answer
CFA in data with 3 levels - estimating factor scores at level 2?
I am working on a dataset with 3 levels:
Teacher
School
Country
Using survey responses from the teachers, the aim is to use Confirmatory Factor Analysis (CFA) with the ultimate goal of having the factor scores at the school level.
A further…

Anders
- 75
- 1
- 8
0
votes
1 answer
Swift method chaining, how to reuse classes and methods?
Consider the following example
class ClassA {
func createAnInstanceOfAnotherClass() -> AnotherClass {
return AnotherClass()
}
func callMeA() {
}
}
class ClassB {
func createAnInstanceOfAnotherClass()…

sago92
- 51
- 6
0
votes
1 answer
Custom class ideology / design
I have two objects profile1 and profile2 that both inherit from a generic class called profile. Many profile2s can relate to a profile1 but only 1 profile1 can relate to a profile2. For the most part they have similar functionality and inherit most…

NoobGingrich
- 1
- 1
0
votes
1 answer
How to adjust population weights block wise along with adjusting the religion weights?
For example, in a particular block with actual population of 100 000 and with religion ratio as 60-20-20 as Hindu, Muslims, other respectively. and the sample we have collected is 1000 and religion ratio as 30-60-10.
How to add weights such that the…
0
votes
4 answers
XNA C# Code Question
Here is my class I made to draw a HUD:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework;
namespace Sleyser1
{
public class Hud
{
…

Crash_Override
- 368
- 1
- 3
- 20
0
votes
2 answers
Adding BEM classes to html TAG
Recently I started learning BEM methodology and I'm struggling with one thing, to wit: if I code webpage using BEM should I use BEM classes in every html TAG or only there where in my opinion they are useful? Let's say we have this piece of…

vadelbrus
- 11
- 2
0
votes
1 answer
To nest conditionals inside your Main, or to not nest conditionals
Issue
Attempting to identify which is the best practice for executing sequential methods. Either, nesting conditionals one after another, or nesting conditionals one inside another, within a main function. In addition, if you could supply "why" one…

Justin Byrne
- 179
- 1
- 2
- 12
0
votes
1 answer
Comment on the Methodology of Primary Research investigating "The Effect of Hardware Variances on the Performance of the Merge Sort Algorithm"
I am a highschool student and am conducting primary research on "To what extent do variances in the performance of CPU, RAM, and storage affect the performance of the merge sort algorithm when it is run on large data sets?"
Methodology
The research…

Devul Nahar
- 11
- 2
0
votes
0 answers
In MVP how can a View know if it is allowed to be displayed?
We have used the MVP methodology within our embedded system (using the LittlevGL library). With our current implementation its our Views which first get activated, these then in turn activate their Presenter. So far this has worked fine for our…

TheGrovesy
- 251
- 4
- 13