Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
3answers
554 views

Are there pronounceable names for common Haskell operators?

I'm reading Learn You a Haskell for Great Good, and I never know how to pronounce the Haskell operators. Do they have "real" names? ? For instance, how do you read aloud an expression like this one? ...
21
votes
3answers
575 views

Measure the pronounceability of a word?

I'm tinkering with a domain name finder and want to favour those words which are easy to pronounce. Example: nameoic.com (bad) versus namelet.com (good). Was thinking something to do with soundex ...
17
votes
7answers
45k views

How to get select radiobutton value using its name in jQuery?

I am having 4 radiobuttons in my web page like below: <label for="theme-grey"><input type="radio" id="theme-grey" name="theme" value="grey" />Grey</label> <label ...
15
votes
21answers
2k views

Hip application name

I have finished developing a quite useful small application. I would like to launch it, but I am not satisfied with it's name. What techniques, websites do you recommend that can help a programmer ...
14
votes
22answers
981 views

Is a variable named i unacceptable?

As far as variable naming conventions go, should iterators be named i or something more semantic like count? If you don't use i, why not? If you feel that i is acceptable, are there cases of iteration ...
12
votes
10answers
105k views

Convert Month Number to Month Name Function in SQL

I have months stored in SQL Server as 1,2,3,4,...12. I would like to display them as January,February etc. Is there a function in SQL Server like MonthName(1) = January? I am trying to avoid a CASE ...
10
votes
2answers
198 views

Logging current function name

I have a few custom logfunctions that are extensions of cat. A basic example is something like this: catt<-function(..., file = "", sep = " ", fill = FALSE, labels = NULL, append = FALSE) { ...
10
votes
5answers
4k views

Objective C - Why do constants start with k

Why do constants in all examples I've seen always start with k? And should I #define constants in header or .m file? I'm new to Objective C, and I don't know C. All tutorials and books assume you know ...
10
votes
4answers
19k views

Valid characters in a Java class name

What characters are valid in a Java class name? What other rules govern Java class names (for instance, Java class names cannot begin with a number)?
8
votes
3answers
240 views

Why are C names shortened? [closed]

Why there is a function called strcat and not a function called stringConcatenation, or stringConcat or string_concat or something like that? Why there is a clrscr function and not clearScreen or ...
8
votes
4answers
194 views

Why does Objective-C use YES/NO macro convention instead of true/false?

Most languages use the true/false keywords for boolean values. I found that even Smalltalk is using true/false. I know Objective-C is just borrowing concepts from Smalltalk, not the language itself, ...
8
votes
4answers
3k views

How do I generate a random list of person names?

I need to generate a list of people's name randomly. Where can I find lists of names? I need a list of first names, a list of middle names and a list of surnames. --EDIT-- Just want to make it ...
8
votes
2answers
2k views

Why can't I use the Name attribute on UserControl in the same assembly?

When I created a WPF UserControl and tried to use it, I got the following compiler error: Because 'UserControl1' is implemented in the same assembly, you must set the x:Name attribute rather than the ...
7
votes
6answers
392 views

Capitalization of Person names in programming

Is anyone aware of some code/rules on how to capitalize the names of people correctly? John Smith Johan van Rensburg Derrick von Gogh Ruby de La Fuente Peter Maclaurin Garry McDonald (these may ...
7
votes
2answers
1k views

Python: Class factory using user input as class names

I want to add class atttributes to a superclass dynamically. Furthermore, I want to create classes that inherit from this superclass dynamically, and the name of those subclasses should depend on user ...
7
votes
2answers
471 views

Retrieving the name of the current function in php

Is there a function that can return the name of the current function a program is executing?
7
votes
2answers
30k views

jquery: get elements by class name and add css to each of them

I have a certain number of div boxes that all have the same class name. I am trying to apply something to them all but have no luck. The code I constructed so far is $(document).ready(function(){ ...
7
votes
5answers
329 views

How to name an open source project

I'm looking for suggestions on how to name an open source project. Is it advisable to to use acronyms, backronyms, or recursive acronyms (such as Bing and GNU)? If you can think of some particularly ...
7
votes
3answers
9k views

get login username in java

How can I get the username/login name in java ? I tried: try{ LoginContext lc = new LoginContext(appName,new TextCallbackHandler()); lc.login(); Subject subject = lc.getSubject(); ...
7
votes
8answers
3k views

How to find the name of the current function at runtime? (C++)

After years of using the big ugly MFC ASSERT macro, I have finally decided to ditch it and create the ultimate ASSERT macro. I am fine with getting the file and line number, and even the expression ...
7
votes
11answers
2k views

How do you name your software projects?

I'm starting a new project and having a terrible time coming up with a name for it. While researching something, I came across this blog post, which suggested using a random word generator. I thought ...
6
votes
1answer
171 views

Contract.Requires vs Contract.Require

I noticed that Microsoft named their code-contract-relative functions in .NET 4 in a strange manner. They add "s" at the end of "require" and "ensure", so there are Contract.Requires() and ...
6
votes
5answers
506 views

Name vs Id attribute in HTML

Are there any advantages to using <div id="here" ... instead of <div name="here" ... are they both referenced to as #here?
6
votes
6answers
82 views

Better name needed for applying a function on elements of a container

I have a container class (containing a multi-index container) for which I have a public "foreach" member-function, so users can pass a functor to apply on all elements. While implementing, I had a ...
6
votes
7answers
2k views

How To Get the Name of the Current Procedure/Function in Delphi (As a String)

Is it possible to obtain the name of the current procedure/function as a string, within a procedure/function? I suppose there would be some "macro" that is expanded at compile-time. My scenario is ...
6
votes
1answer
328 views

Difference between “+” and “-” before function name in Objective-C

What is the difference between "+" and "-" before the function name interface declaration in an Objective-C program. Example: - (void)continueSpeaking; + (NSArray *)availableVoices; What's the ...
6
votes
4answers
1k views

Getting an iPhone app's product name at runtime?

How can this be achieved? I would like to get the name so i can display it within an app, without having to change it in code each time i change a name, of course.
6
votes
4answers
2k views

How can I set up my domain name on Google App Engine?

I've made a website to go on App Engine, and have deployed it. I've redirected my domain name to ghs.google.com, and it successfully goes to my site. The problem is that in the address bar, ...
6
votes
5answers
3k views

print name of the variable in c#

i have a statement int A = 10,B=6,C=5; and i want to write a print function such that i pass the int variable to it and it prints me the variable name and the value. eg if i call print(A) it must ...
6
votes
11answers
18k views

c# - How do you get a variable's name as it was physically typed in its declaration?

The class below contains the field city. I need to dynamically determine the field's name as it is typed in the class declaration i.e. I need to get the string "city" from an instance of the object ...
6
votes
4answers
2k views

encrypting a .Net application and assemblies

I have an encryption/copy protection question. I'm writing an application for a company that uses a dongle. Please don't tell me that software protection is useless, or that I should just let it fly ...
6
votes
6answers
2k views

How do people choose product names?

I flatter myself that I'm a good programmer, and can get away with graphic design. But something I'm incapable of doing is coming up with good names - and it seems neither are the people I work with. ...
5
votes
2answers
130 views

Rename jar package name

I have a jar file but unfortunately I lost source code due to my disk crash. I just want to change its package name to some meaningful name. Is there any way that I can change package name of jar ...
5
votes
2answers
187 views

Find highest value in row and echo number and column name

After too many hours I can't find the answer to this. First my table id | one | two | three | four | five | galname ------------------------------------------------- 1 | 2 | 5 | 23 | 4 ...
5
votes
4answers
273 views

PHP variable / function / class names using special characters

I understand that the underscore _ is an acceptable character for naming variables / functions / classes etc. However I was wondering if there are any other special characters which can be used. I ...
5
votes
2answers
352 views

Sinatra - how do I get the server's domain name

I'm trying to get the domain name in my Sinatra app but as a newbie I really am struggling to figure out how to do this, and I know it must be possible! Rack::Request#host_with_port looks promising, ...
5
votes
4answers
2k views

How to get phone name in Android

Is there any way to get phone name in android??. I have tried android.os.Build.DEVICE; android.os.Build.MODEL; android.os.Build.PRODUCT; in Samsung Galaxy S.All these are giving GT-19000 as the ...
5
votes
5answers
271 views

Why can't a class member's name be the same as one of its nested classes?

Or why is the following impossible: class Material { class Keys { ... } Material.Keys Keys { get; set; } // Illegal } I don't see any possible ambiguity. When accessed by ...
5
votes
10answers
164 views

In Java's property name, which name is more correct?

In Java's property name, which name is more correct ? createDate creationDate createdDate others Please tell me a better expression, because, I'm Japanese.
5
votes
1answer
889 views

Give a name to a boost thread?

Is it possible to give a name to a boost::thread so that the debuggers tables and the crash logs can be more readable? How?
5
votes
3answers
4k views

jQuery Validation using the class instead of the name value

I'd like to validate a form using the jquery validate plugin, but I'm unable to use the 'name' value within the html - as this is a field also used by the server app. Specifically, I need to limit the ...
5
votes
3answers
246 views

How does one extract the name of a variable in a function that is called from another function in R?

My question is how to extract the name of a variable from a function that is called in another function in R? To illustrate, here is an example: a <- function(variable) { ...
5
votes
2answers
358 views

How can I get the name of function inside a JavaScript function?

How is it possible to learn the name of function I am in? The below code alerts 'Object'. But I need to know how to alert "Outer." function Outer(){ alert(typeof this); }
5
votes
7answers
4k views

javascript - arguments.callee.toString() and arguments.callee.name does not return function name

I'm trying to get the name of the currently running function. From what I've read, this should be possible using: (arguments.callee.toString()).match(/function\s+(\[^\s\(]+)/) However, when I run ...
5
votes
5answers
155 views

How can I customize “%s has encountered a problem and needs to close”?

Every Windows developer is all too familiar with an alert of the form: Foo.exe has encountered a problem and needs to close. I am resigned to my apps blowing up from time to time (only during ...
4
votes
2answers
102 views

How can I instantiate an object knowing only its name? [closed]

Possible Duplicate: Is there a way to instantiate objects from a string holding their class name? In C++, I want to have my user enter the object type name to be created at run-time, and, ...
4
votes
1answer
59 views

API for given name popularity

I'd like to find out how popular a name is in the United States, preferably by rank, but by number of people with that name would be good, too. The Social Security Administration keeps records of ...
4
votes
2answers
119 views

how to name my android package if I do not have a site

I've read much about android package naming conventions, but still have no idea what I should name my packages if I don't have any personal webpage whatsoever and am not a member of any organization. ...
4
votes
1answer
694 views

Change process name in Linux

I'm on Linux and am forking/execing a new process out of my C spawn application. Is it possible to also change the naming of these new child processes? I want to be able to identify the process ...
4
votes
3answers
744 views

Alternative to column name “order” in MySQL

When I create a new table that need an ordering defined by the user, my first idea always go to a column name "order". Of course, this is NOT good since it's a reserved word. Which name are you ...

1 2 3 4 5 14