The names tag has no wiki summary.
25
votes
22answers
2k views
Smelly class names? [closed]
In your experience, what are some "smelly" keywords in class or function names that might be warning signs of bad object-oriented design?
I've found that classes containing the word Manager or Base ...
20
votes
8answers
1k views
Why the “mutable default argument fix” syntax is so ugly, asks python newbie
Now following my series of "python newbie questions" and based on another question.
Prerogative
Go to ...
12
votes
12answers
4k views
What are all of the allowable characters for people's names? [closed]
There are the standard A-Z, a-z characters, but also there are hyphens, em dashes, quotes, etc.
Plus, there are all of the international characters, like umlauts, etc.
So, for an English-based ...
11
votes
2answers
144 views
You can abbreviate list names? Why?
This got me pretty bad. You can abbreviate list names? I never noticed it before and I got totally screwed for like a day. Can someone explain what is happening here and why it could be more useful ...
9
votes
3answers
4k views
What is a nested name specifier?
Related to this
I want to know what exactly is a nested name specifier? I looked up in the draft but I could understand the grammar as I haven't taken any Compiler Design classes yet.
void S(){}
...
7
votes
3answers
2k views
Checking if a domain name is registered
How would I go about checking if a domain name is registered? I was thinking about checking if it has a corresponding IP but it doesn't seem to work as well as I had hoped. Is there a solution in ...
7
votes
7answers
657 views
Sort on last name, first name, or both?
I have a dilemma that I've encountered before. What's the best in terms of usability when one displays personal names in a table? Should there be a single column for the name? If so, is "firstname ...
7
votes
1answer
207 views
Capital letters for named patterns
In Mathematica built-in Symbols start with capital letters. Therefore it is accepted practice to not start user created symbol names with capital letters.
How far should this restriction be extended ...
7
votes
3answers
97 views
Online guide to naming software objects?
Is there a resource that defines and gives guidance to naming objects in software? For instance, when to call something a service vs a handler? When to include nouns or verbs in the name.
I'm ...
6
votes
2answers
534 views
MySQL retrieve column names where datatype == X
I need to write some code that applies to only certain fields within our database. Specifically I'm looking for any field in all tables of a single database that are of type DECIMAL(12,5);
If it's of ...
6
votes
4answers
1k views
R: losing column names when adding rows to an empty data frame
I am just starting with R and encountered a strange behaviour: when inserting the first row in an empty data frame, the original column names get lost.
example:
> a<-data.frame(one = ...
6
votes
2answers
897 views
Access and preserve list names in lapply function
I need to access list names inside the lapply function. I've found some threads online where it's said I should iterate through the names of the list to be able to fetch each list element name in my ...
5
votes
5answers
2k views
Concatenating Variable Names in C?
Is it possible to concatenate variable names in C? Specifically, I have a struct that contains 6 similar variables in it called class1, class2, class3, etc.
I want to run through a for loop to assign ...
5
votes
4answers
6k views
PHP Regex for human names
I've run into a bit of a problem with a Regex I'm using for humans names.
$rexName = '/^[a-z' -]$/i';
Suppose a user with the name Jürgen wishes to register? Or Böb? That's pretty commonplace in ...
5
votes
6answers
734 views
How to check if a string can be used as a variable name in PHP?
In PHP one can use variable variables...
For example...
class obj { }
$fieldName = "Surname";
$object = new obj();
$object->Name = "John";
$object->$fieldName = "Doe";
echo ...
5
votes
1answer
299 views
'default' as a variable name
While debugging some code, I came across an array named default. I thought that keywords were not allowed as variable names.
#include "stdafx.h"
#include <stdio.h>
int main()
{
int default = ...
5
votes
5answers
783 views
(K&R) At least the first 31 characters of an internal name are significant?
When taken literally, it makes sense, but what exactly does it mean to be a significant character of a variable name?
I'm a beginning learner of C using K&R. Here's a direct quote from the book:
...
5
votes
2answers
304 views
Is there a way to get a vector with the name of all functions that one could use in R?
I would like to have a call that returns me a vector with the names of all function that I could call in the current R session. Does anybody know how to achieve this?
(I would like to check user ...
5
votes
1answer
92 views
What's the difference between Name and CanonicalName?
What is the difference between Java's Class.getName() and Class.getCanonicalName()?
5
votes
3answers
504 views
deleted names in a Wbk still exist and refer to locations that don't exist, slow Excel
In VBA Help for the RefersTo Property, they give this example of listing all the Names in a Wkb (fleshed out so you can run it as is)
Sub showNames()'from VBA Help for "RefersTo"
Dim newSheet As ...
5
votes
1answer
1k views
Get the column names of a python numpy ndarray
I have a question regarding getting the names of a numpy ndarray.
Let's say I have a data file called data.txt that look like:
TIME FX FY FZ
0 10 5 6
1 2 4 7
2 5 2 6
...
In python ...
5
votes
2answers
604 views
Comparing 2 lists in Excel with VBA Regex
I'm fairly new at Regular Expressions and am wanting to use them to compare two lists (columns) in Excel to find matches.
As this is quite a complex operation, I have performed it in the past, using ...
4
votes
4answers
3k views
R: access field values
I would like to know how I can access the individual fields contained in an R object. Or, more precisely, how to get R to tell me how.
For example, if I run the following code:
dx.ct <- ...
4
votes
6answers
22k views
4
votes
6answers
8k views
Create variable names using a loop in Java?
first time poster, long time reader so be gentle with me :)
See the following code which works to generate me timestamps for the beginning and end of every month in a financial year.
int year = ...
4
votes
2answers
4k views
standard way to convert to short path in .net
looking for the standard bug-proofed way to convert "long names" such as "C:\Documents and settings" to their equivalent "short names" "C:\DOCUME~1"
I need this to run an external process from ...
4
votes
2answers
1k views
Why are Android layout file names so limited?
It's good to have consistency in file names.
MyActivity.java contains the public class MyActivity
I would like the xml file with its layout to be called res/layout/MyActivity.xml
But I get an error ...
4
votes
2answers
634 views
appending to a list with dynamic names, R
I have a list in R:
a <- list(n1 = "hi", n2 = "hello")
I would like to append to this named list but the names must be dynamic. That is, they are create from a string (for example: ...
4
votes
3answers
1k views
Dataframes in a list; adding a new variable with name of dataframe
I have a list of dataframes which I eventually want to merge while maintaining a record of their original dataframe name or list index. This will allow me to subset etc across all the rows. To ...
4
votes
3answers
6k views
reading a csv file with repeated row names in R
I am trying to read a csv file with repeated row names but could not. The error message I am getting is Error in read.table(file = file, header = header, sep = sep, quote = quote, : duplicate ...
4
votes
1answer
3k views
Java FileNameFilter
I've a requirement to get all the files in a directory that has a specific extension(say, .txt). I should be able to list all the files that has '.txt' and '.TXT' extension(i.e., it should be case ...
4
votes
4answers
99 views
Importing a file with the same name as the file you're in
Lets say you're in a file called logging.py. If you try to import the standard logging module, you'll end up importing the file you're in. How can you import the standard logging module from here?
3
votes
9answers
1k views
What is the best practice for using “get” in method names?
I've noticed in many places in Java (C# included), that many "getter" methods are prefixed with "get" while many other aren't. I never noticed any kind of pattern Sun seems to be following. What are ...
3
votes
3answers
38 views
Can list objects be created in R that name themselves based on input object names?
It would be very helpful to me to be able to create an R list object without having to specify the names of each element. For example:
a1<-1
a2<-20
a3<-1:20
b <- list(a1,a2,a3, ...
3
votes
8answers
2k views
Java find start of file name and extension
HI,
I have almost solved this but have now got stuck! What I need to do is look in a folder say..
String path = C://;
I then need a loop to see how many files are in that folder say 10. I need to ...
3
votes
5answers
2k views
Storing SQL field names and general SQL usage with Delphi
I'm starting to write my first Delphi application that connects to an SQL database (MySQL) using the ADO database components. I wondered whether there was any best way of storing the names of the ...
3
votes
2answers
719 views
General MVC Questions - naming, structure (PHP)
I have tried many PHP MVC frameworks and I noticed that in many frameworks you can do things like this:
$this->security->encodeForHTML();
So, basically there is a class Security, which ...
3
votes
2answers
50 views
perl: how to make compact name from a numbered sequence
[perl 5.8.8]
I have a sequence of names of things like:
names='foobar1304,foobar1305,foobar1306,foobar1307'
where the names differ only by a contiguous string of digits somewhere in the name. ...
3
votes
2answers
218 views
vars() in Python giving different output
When I run this code:
a = '1'
vars()['a'] = '2'
print a
I get the following output:
2
But when I run this code:
def bar():
a = '1'
vars()['a'] = '2'
print a
bar()
I get the ...
3
votes
1answer
374 views
R: losing names of dimnames of a table after cbind or rbind
After cbind or rbind-ing a table object (for example, adding a margin of sums or somesuch), names of dimnames get lost (see y). I found this "workaround" but was wondering if there's an out of the bag ...
3
votes
1answer
632 views
rbind data.frames without names
I am trying to figure out why the rbind function is not working as intended when joining data.frames without names.
Here is my testing:
test <- data.frame(
id=rep(c("a","b"),each=3),
...
3
votes
2answers
52 views
Is there any bad impact to using set name 'utf8' by default in selection?
Is there any bad impact to using set name 'utf8' by default in SQL select query?
3
votes
4answers
538 views
How to access hidden template in unnamed namespace?
Here is a tricky situation, and i wonder what ways there are to solve it
namespace {
template <class T>
struct Template { /* ... */ };
}
typedef Template<int> Template;
Sadly, ...
2
votes
4answers
164 views
Suggestions on fixing peoples names so they are capitalised correctly
Users of our website often type in a lot of garbage for the name and address information. eg, all CAPS, all lower case etc.
It looks a lot better if we fix the case for them, but can anyone suggest ...
2
votes
2answers
58 views
Get names of the available members of a Java class
I'm trying to get the member names of a class in Java. For instance, let's say I have the class:
class Dog
{
private int legs = 4;
private int ears = 2;
}
Is there anyway I can get a list ...
2
votes
4answers
310 views
Creating file names automatically C++
I'm trying to write a program in C++, which creates some files (.txt) and writes down the result in them. The problem is that an amount of these files is not fixed at the beginning and only appears ...
2
votes
4answers
256 views
Finding the names of all the columns in all the dataframes in a workspace
Assume that I have several dataframes in a workspace in R and I want a list of the names of the columns in all the dataframes.
I thought the following would work. But it does not. Try it in your own ...
2
votes
4answers
729 views
Parsing Human Names and matching them in Ruby
I'm looking for a gem or project that would let me identify that two names are the same person. For example
J.R. Smith == John R. Smith == John Smith == John Roy Smith == Johnny Smith
I think ...
2
votes
5answers
363 views
Python help ---> random name selection from text file
I want to have a list of names such as "john, jack, daniels, whisky, susan, alex" in a .txt file called 'names'.
Now, I want to import that file into my 'script' and use the import random module.
...
2
votes
3answers
66 views
“Variable” Variablenames in C
I think what I am looking for is actually not possible in C, but maybe some has an idea how to work around it:
I need to process some input data. This data is given in an int with gives the number of ...
