Questions tagged [naming]

A general purpose tag to cover anything concerning naming, be it files, programming constructs, data etc.

A general purpose tag to cover anything concerning naming, be it files, programming constructs, data etc.

1723 questions
0
votes
1 answer

Naming my DB tables - Suggestions?

I have a couple of properties in my sql server SLS.Customer table which are references to other tables. I can't think of proper names for those tables. Help please :) Table1: Contains the "How did you hear about us" values. (Example records: Through…
Yalda
  • 680
  • 1
  • 18
  • 39
0
votes
1 answer

awt Frame constructor not accepting naming of GraphicsConfiguration class

I am just starting my Java endeavour and have just finished reading through the learning java sections on the oracle website. So I'm just looking through a few packages seeing what is what. So I had a look at the awt package which I'm assuming is a…
Dominic Sore
  • 397
  • 2
  • 4
  • 14
0
votes
2 answers

how could I handle an iterative naming system for this?

I have a dataset of this kind, this dataset contains some missing values (I'm representing them with X). ID VA VB ... Vn | ID VA VB ... Vn | 1 a1 b1 ... n1 | 1 a1 X ... n1 | 2 a2 b2 ... n2 |=== …
stat
  • 699
  • 3
  • 10
0
votes
1 answer

How do I name different instances of the same object?

Im making a list of objects, where the list is of equal length to a list of file names. How can I make it so that each object is named after the corresponding name in the list of file names? file_list = ['file1.txt','file2.txt','file3.txt']…
user4298390
0
votes
1 answer

Gantt chart name suggestion - Length or Width

I'm not sure if this is the right Stack Exchange site to ask good name for bars in Gantt Chart. Data Structure public class GanttChartData { public ICollection BarCollection { get; set; } } public class GanttBarData { public…
Rohit
  • 6,365
  • 14
  • 59
  • 90
0
votes
1 answer

Function that takes variable names and concatenates them interally in R

I'd like to build a function that takes a variable and then concatenates it with other letters within a function to refer to different variables in a frame. For example (code does not work): set.seed(123) frame <- data.frame(x = rnorm(100), p01u =…
coding_heart
  • 1,245
  • 3
  • 25
  • 46
0
votes
2 answers

Assigning a name to a number

I'm currently writing a program involving random card selection and I'm wondering if there is a way to get the program to replace the numbers 11, 12, and 13 with jack, queen and king respectively? I could use an if statement to detect values…
lumpofiron
  • 154
  • 1
  • 8
0
votes
1 answer

Is there a common word in use for fields and properties?

Very often I need to name generated methods which operate on both fields and properties with the same intention of setting it. Is there a word that covers both of these terms?
toplel32
  • 1,162
  • 1
  • 7
  • 22
0
votes
1 answer

How to name methods and properties that traverse a tree as akin to moving down through a fully-expanded folder explorer?

Picture a File Explorer-style window with the folders fully expanded. Starting at an arbitrary node, I press the down arrow to move down through the tree. Maybe I'm reading it wrong but I couldn't find a name for this kind of traversal (note: this…
System.Cats.Lol
  • 1,620
  • 1
  • 26
  • 47
0
votes
1 answer

What does Class$S7119 signfy in GWT?

I'm getting the following error message in GWT: could not get type signature for class Class$S7119 What does this Class$S7119 signify? Anonymous classes have names like SomeClass$1, but I don't think that there are that many anonymous classes…
Harold L. Brown
  • 8,423
  • 11
  • 57
  • 109
0
votes
2 answers

How do I create and name objects when I run my program?

Is it possible to have my program name objects as they're created? Such as using a loop that names objects object1, object2, etc.. This is an issue because it won't always be clear how many objects are necessary, it depends on the users input. Or…
0
votes
1 answer

How to Copy Data from One Array to Another Without Names? (C++)

I'm working on an assignment right now and have run into a roadblock. The assignment is an array list in C++ that dynamically expands by a factor of 2 every time it runs out of room to store new elements (initially starts with room for 2 elements).…
Mock
  • 359
  • 1
  • 3
  • 11
0
votes
1 answer

RESTful naming: a POST call that is a GET?

In our API it should be possible to get all the metadata on some objects (can be over 1000 ids). But how should the endpoint look like? It is okay to make a POST api/objects/getmetadata with the following body? Body: { "Objects":[ {…
Vindberg
  • 1,502
  • 2
  • 15
  • 27
0
votes
2 answers

How to refer/assign an excel column in python?

I have a csv file (excel spreadsheet) of a column of roughly a million numbers in column A. I want to make a histogram of this data with the frequency of the numbers on the y-axis and the number quantities on the x-axis. I'm using pandas to do so.…
Daniel Hodgkins
  • 61
  • 1
  • 1
  • 6
0
votes
2 answers

Removing unwanted characters from a URL

Recently I published a website and it's working fine. But when I try to open any linked page its URL looks like this: http://www.englishseekhon.com/English%20Vocabulary%20with%20Hindi%20Meaning.html As you can see, there are a number of %20…