A general purpose tag to cover anything concerning naming, be it files, programming constructs, data etc.
0
votes
0answers
29 views
C++ Manually extending generated code with safe names
A project of mine generates C++ code. Now I want to be able to extend the generated code with C++ code. The generated code uses a guard for each generated name (e.g. "d393jkdd").
So a generated class ...
0
votes
1answer
9 views
App name taken on App Store, how can I find developer if no App exists
I'm about to submit my first app to the App Store, but the name is already taken. I've searched the App Store, but I can't find any app by that name. I'm guessing Apple removed it after no update to ...
0
votes
0answers
24 views
Naming rebind execution time
I have a question regarding naming rebind operation execution time. In my test I do the following to initialize context:
Properties props = new Properties();
...
-2
votes
0answers
18 views
Opposite term for dependency relationship [closed]
If a javascript module A depends on module B. B is a dependency of A. What is A's relationship with B?
The context for this is a commonjs project.
4
votes
3answers
120 views
Why is the C++ STL set container's count() method thus named?
What it really checks for is contains() and not the count of the number of occurrences, right? Duplicates are not permitted either so wouldn't contains() be a better name than count()?
0
votes
1answer
42 views
is it better to name the subclass's mocked class same with subclass but in different .h in c++?
I have parent class:
BaseClass;
and it's sub class is SubClass,
when I need one mocked subclass for the subclass, how to name it?
I check someone's code sample, the subclass's mock class and ...
1
vote
2answers
103 views
Why is it called “Rust”?
Why is the Rust programming language called "Rust"?
Is there anything known about who named it, and why? (I am having a hard time coming up with a positive association).
0
votes
2answers
20 views
Selection of table (or view) in oracle, that I cannot find in TOAD
I am reverse-engineering an application which administers an Oracle database.
Everything is new to me (application + database)
There is a statement there somewhere, which is:
SELECT * FROM XXX@YYY ...
-1
votes
1answer
19 views
Can I have same WordPress theme name as an existing one?
I came up with a good name(as I thought) for a WordPress theme that I want to create. Unfortunately, I found another WP theme using the same name after googled it. My theme will be free and only ...
1
vote
7answers
227 views
What is the correct jargon for a class that has no functions but is used to store data [closed]
Is there any special jargon word for a class that has no functions but is used to store data?
0
votes
1answer
73 views
org.eclipse.birt.report.service.api.ReportServiceException: Error happened while running the report
I have a BIRT report in my app that uses hibernate as datasource. It keeps giving me an error like above. These reports are running on my team mates workstation so I am not sure what is happening to ...
1
vote
1answer
34 views
Why does using the unnamed package or smaller package names makes the Jar smaller?
I wasn't able to find much information about exactly why using shorter names on packages or using the unnamed package (default package) actually makes the jar size smaller.
I've read obfuscators ...
2
votes
2answers
34 views
Why does Visual Studio rename my project?
A project I started in WebMatrix I go back-and-forth with - some things are easier to do in WebMatrix, but in general I'm more comfortable in VS, so... anyway, when I opened it in VS for the first ...
1
vote
2answers
72 views
Naming issue in C#
I have a Namespace called "Core", which is the main namespace of my project .
Then I've created new sub namespace named "Interface" that will contain all GUI and WPF classes of the library . There ...
0
votes
1answer
66 views
What would be a good name for this class? [closed]
In a JPA/Spring app, I am implementing methods in my service layer to check an entity for dependent relationships. I plan to use this method for example before attempting to delete an entity.
For ...
-2
votes
2answers
55 views
How do you get the user to name an array in Java?
I know how to name an array when writing a program in Java, but how do I write it to where it ask the user for the name of the array?
0
votes
2answers
37 views
Propose how to name a “get/create & get” function
I am working on a function that returns an object from a container (e.g an Array) by value (e.g by name). If the object doesn't already exist, then a default copy of the object (default constructor) ...
0
votes
2answers
155 views
Generic base class wraps nested generic class to reduce type argument specification: Is there a name for this pattern?
Ok question title is far from being self-explanatory. I see myself doing this often:
From this answer:
public static class Equality<T>
{
public static IEqualityComparer<T> ...
0
votes
1answer
20 views
Case of names of built-in JavaScript types
In JavaScript, typeof 0 gives 'number' not 'Number', but instanceof 0 Number.
Would it be accurate to say the canonical names of the built-in types are capitalized, and the lowercase return value of ...
0
votes
0answers
33 views
CloudFormation S3 specify physical name
I deployed a template with an s3 bucket. I noticed that the 'Logical ID' field is the resource name, but the 'Physical ID' field is in the format of --. Is there a way to override this behavior? I ...
0
votes
1answer
51 views
Terminating app due to uncaught exception 'NSInternalInconsistencyException' Xcode
Ive recently renamed all of my xcode file names and the project name as well, it used to be called HelloThere and I have changed it to BoatTracker and have renamed .h, .m and xib files ...
-2
votes
1answer
55 views
how to naming class, struct, enum and union [closed]
Two examples:
I want define time:
class Time
{
month(){...}
year(){...}
private:
time_t a;
}
struct Time
{int year; int month;}
But c++ can not allow define same name. So ...
2
votes
2answers
37 views
MVVM ViewModel Naming
I have the views named as actions such as "SelectMethod". Wondering, if it makes sense to name the associated view model as "SelectMethodViewModel" or should it not use the action (i.e. Select) in the ...
0
votes
3answers
36 views
Layout naming strategies for android
I am developing an android app that has quite a few layouts. So far I have been naming these by what the layout is used for followed by a name for the layout eg: activity_base.xml, ...
0
votes
1answer
31 views
Xcode Renaming Class's and XIB ERRORS?
Ive been cleaning up my code abit and started renaming some .h and .m files which link to xib files. I did this to my main view controller and have no got about 20 Semantic Issues all linking to the ...
0
votes
0answers
9 views
Synonym for “thread-safe” when naming a class?
Perhaps a silly question, but is there any common naming convention for a class that provides thread-safe operations, other than ThreadSafeFoo? This is most explicit and works nicely, but I figured ...
0
votes
2answers
31 views
Naming dimensions of a existing array in R
I have a existing array that I made and I want to name the dimensions of this array. I can't use the dimnames= argument of array() because I need to make this array with a different function. I need ...
0
votes
1answer
54 views
VS2010 Code First MVC3 SQL default Logfile.ldf name format ignored, creates second logfile_log.ldf file
Using VS2010 code first and SQL Server 2008r2 with an MVC3 webapp, the SetInitializer creates a db as expected when missing or on model changes.
The db created has the filename format database.mdf ...
0
votes
0answers
10 views
How should I name these object manipulation procedures?
I have 3 procedures:
Target dynamic object inherits all properties from another dynamic object.
Target dynamic object inherits only existing properties from another dynamic object.
Target dynamic ...
0
votes
1answer
46 views
Naming Convention for Class/Interface “Default” Implementation
I've seen the canonical class/interface naming questions on StackOverflow and read a lot of other opinions on the subject, but I have a related question that I'm not sure is answered in any of those ...
1
vote
1answer
33 views
naming the sequences
I have a program for creating a fasta file of sequencesthrough itertools.
import itertools
...
0
votes
0answers
81 views
why do I can lookup EJB Client to Weblogic Server only once?
I'm newbie in EJB, starting my first project with Stateful EJB. I have istalled Oracle Fusion Midlleware (JDev 11g + Weblogic Server 11g) by the way.
Source code for BettyBean (purpose is to show, ...
2
votes
3answers
69 views
REST search API URI form
I'm implementing a search API which would allow searching on several types of objects in the system (clients, products etc.). Which form of URI would be preferable:
/clients/search
/products/search
...
2
votes
1answer
53 views
How to name similar methods in different levels?
For example, I have two methods CreateNewDocument and OpenDocument, which are in two different levels in my GUI code. One is a low level, which just does what the method name means; the other is a ...
1
vote
2answers
38 views
What problems could arise from having a model called 'Set'?
I'm coming up with names for some of my models, and am hesitating on the word 'set'.
The rails app is mostly concerned with managing trading cards, which are traditionally grouped by release into ...
1
vote
0answers
10 views
What is “plugin authoring”?
First time I see plug-in authoring term in jQuery docs: http://docs.jquery.com/Plugins/Authoring
What is "plugin authoring"? How is it different from "plug-in development", "plug-in tutorial", ...
2
votes
2answers
50 views
Use object names as list names in R
Of course I could name the objects in my list all manually like this:
#create dfs
df1<-data.frame(a=sample(1:50,10),b=sample(1:50,10),c=sample(1:50,10))
...
1
vote
2answers
537 views
PHP mysql Insert/Upload images to database/server naming issues
I'm building a form to allow users to upload images into a database, as part of an app for an eye doctor. My issue concerns the table containing information on these images (the shot table), the ...
0
votes
0answers
27 views
Method naming for a relation handler
I'm developing an entity and query manager for SQL databases in PHP 5.4. There is a method that joins two queries to a combined result set. It makes it possible to access a relation/association ...
2
votes
3answers
97 views
Different java packages & Visibility
The question I'm asking is about a very frequent topic but I didn't find my exact question so I'm asking it explicitly.
I'm programming in java and I need to implement some classes, let's say A, B, C ...
1
vote
2answers
56 views
What is a function executed by setTimeout called?
I currently use the following function to queue a function call in the event loop:
Function.prototype.async = function () {
setTimeout.bind(null, this, 0).apply(null, arguments);
};
This allows ...
1
vote
4answers
116 views
Why is the 64bit integer extension of C++ called “long long”?
Unlike other types:"int","boolean","double", etc.
And even custom classes, there are one word only.
There is only one word for their type, however, only that integer is using two words; how and why ...
1
vote
1answer
33 views
Make options accessible via camelCase and hyphens
Any thoughts how to make JSON-keys available with lowercase, UPPERCASE, camelCase, PerlCase and with hyphens. We've something like this object notation, which is declared with camelCase:
var options ...
0
votes
1answer
54 views
JavaScript function parameter naming conventions [closed]
Is it common to use the accepted parameter naming conventions for a JavaScript function? For example:
function MyFunction(nParam1, tParam2, oParam3) {..}
where nParam1 is a number, tParam2 is ...
1
vote
4answers
178 views
Can you start a C++ class name with a numeric digit?
In C++, is it possible to start a class name with a digit? For example,
template <class T> class 2DArray {
public:
// 1D ARRAY CLASS
class 1DArray {
public:
1DArray() { ...
1
vote
0answers
28 views
Proper capitalization when using __bases__ as a parameter
I have a long, but simple linear hierarchy. My Grandparent class needs to provide a common _something method for all children (however distant), but the thing is it needs to call a NextClass when it's ...
0
votes
0answers
23 views
Is there a name for this kind of Bug?
Is there a special name for a Bug that is caused by a change in code that can't possibly cause a change in behaviour?
Like the bug caused by changing this
...
X x = (X)getX();
...
Object getX(){
...
0
votes
0answers
21 views
About naming, extension or plugin?
We are desiging a javascript UI control library, now we encounter a problem related to naming.
In our case, we design such an architecture that, a special object can be "injected" in our control ...
0
votes
2answers
70 views
Enumeration Naming Guidelines, prefix?
I'm just wondering why it isn't a best practice to give all Enum's a prefix like Interfaces?
The letter I, indicates the type is an interface so why isn't the letter E used to indicate the type of ...
1
vote
1answer
84 views
Why can't I use “name” as static attribute in javascript / nodeJS
I couldn't figure out this, but maybe anyone can help me:
When I define a javascript class and try to add a static attribute "name", I can't use "name" afterwards.
var MyClass = function() {
...




