The names tag has no wiki summary.
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 ...
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 ...
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 ...
4
votes
6answers
21k views
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 ...
0
votes
2answers
119 views
Mass produce JTables
I want to make 25 JTables. I generate the table names by doing:
for(int i=0; i < 26; i++)
{
TableNames[i] = "Table" + i + "";
...
How can I go about using these String names in the array ...
0
votes
9answers
11k views
Is there away to generate Variables' names dynamically in Java?
Let's say that I need to generate variables to hold some input from the user (I don't know how many they are). Without using Array, ArrayList (and other kind of lists and maps) can my code generate ...
5
votes
2answers
294 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 ...
8
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(){}
...
0
votes
3answers
3k views
how to assign to the names() attribute of the value of a variable in R
In R, "assign('x',v)" sets the object whose name is 'x' to v. Replace 'x' by the result of applying a text function to a variable x. Then "assign" shows its worth.
Unfortunately, ...
-1
votes
1answer
201 views
At least the first 31 or 63 characters of an internal name are significant? [closed]
Here's a direct quote from the Book (K&R, 2nd ed, p. 35):
"At least the first 31 characters of an internal name are significant.
For function names and external variables, the number may be ...
6
votes
2answers
810 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 ...
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 = ...
5
votes
1answer
295 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 = ...
1
vote
1answer
631 views
MySQL use column names from another table
I'm wondering if it is possible to return a result set with column names which are stored in a separate table. Is this possible or do I need a stored_procedure with variables. See link for mysql_dump ...
0
votes
2answers
78 views
Modify sorting algorithm to work with listboxes?
So I'm trying to figure out to modify this integer sorting algorithm to work with data elements (file names) alphabetically in a listbox but have no idea how?
I understand how the sorting algorithm ...
0
votes
0answers
100 views
How to get default names of installed apps?
I know how to get names of all installed applications, but it always returns me names of specific language which I actually use on my device, so for example if some application has defined values and ...
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 ...
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 ...
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 ...
2
votes
3answers
694 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 ...
0
votes
1answer
600 views
How to prevent name caching and detect bluetooth name changes on discovery
I'm writing an Android app which receives information from a Bluetooth device. Our client has suggested that the Bluetooth device (which they produce) will change its name depending on certain ...
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 ...
0
votes
1answer
43 views
Is there a way to draw under names in MKMapView?
I've looked at the many fine threads on how to draw routes on an MKMapView and didn't see anything on this.
I want to be able to draw information (e.g. traffic flow imagery for routes, possibly ...