Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
22answers
2k views

Smelly class names?

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
816 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 ...
10
votes
11answers
2k views

What are all of the allowable characters for people's names?

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 ...
9
votes
3answers
4k views

Acquiring drive names (as opposed to drive letters) in Java

On my Windows machine, my main hard drive has the letter C: and the name "Local disk". To list the drive letters in Java on Windows, the File object has the static listRoots() method. But I can't ...
7
votes
1answer
133 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
7answers
253 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 ...
6
votes
3answers
800 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(){} ...
6
votes
3answers
665 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 ...
5
votes
2answers
36 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 ...
5
votes
2answers
118 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 ...
5
votes
5answers
970 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
2k 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
1answer
268 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 = ...
4
votes
3answers
142 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
2answers
156 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 ...
4
votes
6answers
3k 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
5answers
443 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: ...
4
votes
2answers
80 views

Classnames for Common Application Buildingblocks

Are you tired of the alway old Manager and Handler classes? Used all ...Thing, ...Dingus, Doodad, ...Entity, ...Gizmo or ...Object Suffixes? I certainly am and did. So here I want to collect usefull ...
3
votes
1answer
73 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 ...
3
votes
2answers
2k 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 ...
3
votes
2answers
434 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 ...
3
votes
4answers
348 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, ...
3
votes
3answers
839 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 <- ...
3
votes
2answers
630 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
5answers
1k 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
2k 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 ...
2
votes
1answer
34 views

selecting column names where data is not null or blank

SQL Server 2008 I have a table MyTable with columns A, B, C, D When I select a row I want a list of only those columns with non-null/blanks. The result set would be A C D if B was null in my row. ...
2
votes
4answers
116 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
3answers
64 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 ...
2
votes
3answers
469 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 = ...
2
votes
3answers
307 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
1answer
315 views

Batch COLOR script that accepts Color-names, Decimals and Hex Parameters

I just finished my a Batch COLOR script that accepts Color-names, Decimals and Hex Parameters. This script works exactly like the MS-Color command but it also accepts decimals and color-names. Run ...
2
votes
5answers
169 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 ...
2
votes
5answers
131 views

php for loop variable names

i got a code of 100-200 rules for making a table. but the whole time is happening the same. i got a variable $xm3, then i make a column . next row, i got $xm2 and make column. next row, i got $xm1 and ...
2
votes
4answers
124 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
1answer
430 views

Roads Shapefile Names

I have a shapefile with a road network and it seems like the roads are all listed as 1 big polyline. Is this typical is it possible to get a road network where the roads are listed individually and ...
2
votes
5answers
11k views

DataGridView Edit Column Names

Is there any way to edit column names in a DataGridView?
1
vote
1answer
82 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 ...
1
vote
1answer
57 views

Arbitrary python names with slashes in import statement

Gone through related questions,but cannot find this specific answer. We're embedding python into our application, and have added a hook to sys.meta_path to allow the import of arbitrarily named ...
1
vote
5answers
109 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. ...
1
vote
3answers
45 views

How to link to a specific part of a page

I have a rails app and one page is a 'command center' with links to a help center. Things like, signing up or new post, etc. How can i make it so that when you click on a link, not only does it ...
1
vote
6answers
70 views

Two classes in diffrence packages how to isolate them?

We have to develope a game, where the user can upload their code, for example Rock Paper Scissor. They have to implement some methods from an interface class and we call them in our game Class, ...
1
vote
3answers
66 views

How do i change the column names in a result set and create a new result set in PHP with modified column names

Example: my current result set: array(7) {[0]=>array(2) { ["class_id"]=>string(1) "1"["class"]=>string(3)"1st"} { ["class_id"]=>string(1) "2"["class"]=>string(3)"2nd"} { ...
1
vote
2answers
162 views

Check Domain Availability from Rails

I'm trying to check domain name availability from my Rails app. Is there a good (free) API to do this with?
1
vote
2answers
126 views

Generating first names based on race/ethnicity

I want to generate some fake people for a piece of software I'm writing. These people also have ethnicities, and I'd prefer not to have names that don't look totally out of place when compared to ...
1
vote
1answer
147 views

Column Names in DataGrid

I have a datagrid say Grid1 and I have a datatable called Dt in the codebehind where the column names and data will be changing always. I am giving the itemssource as shown below ...
1
vote
3answers
80 views

How to give name on different intances of the same class on iOS - iPhone

I am developing an iPhone application which has a lot of different cards, each one of those represents a car. So, every card has some instance variables and one image. My class CarCard is loading data ...
1
vote
1answer
167 views

Domain Whois Information Algorithm

Is it possible to run an algorithm of all the verisign (and maybe individual registrars whois) domain data to call out qualified information?
1
vote
8answers
270 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 ...
1
vote
2answers
99 views

How to do name generation?

I'm looking to create a profile name generator for my site. At the minute the only ideas I've come up with is something which just combines nouns and verbs. So for example this might come up with ...

1 2 3