The identifiers tag has no wiki summary.
0
votes
0answers
31 views
What is meant by external linkage in C++? [duplicate]
I found some answers. Yet I'm confused. I need an example elaborating the difference between internal linkage and external linkage in C++.
"Static limits the scope of the variable to the same ...
3
votes
1answer
145 views
How to use both HTML5 History/State API and keep the hyperlinks with hashtags (links within documents) intact
I implemented ajaxify-html5.js into existing webpage. It uses jQuery, ScrollTo and History.js. Great stuff, works wonderful. Every link like
<a href="category?id=5">Category 5</a>
gets ...
0
votes
2answers
73 views
Event Identifiers - ClientX and ClientY
I am trying to better understand the usage of the event attribute clientX and clientY.
I need to find the top and left offset of the mouse pointer when it moves over a particular div . The ...
-4
votes
9answers
1k views
What does %d mean? [closed]
I'm reading a C program, and I have a question that I think may be related to type casting. Basically, the program will follow. I've commented in a few questions that pasted over from my clipboard. ...
3
votes
1answer
58 views
Identifier in Google Maps API directions
I have a question that I can't seem to find the solution to. I'm no stranger to the Google Maps API and have coded maps and driving direction pages with it in the past. The issue I'm always running ...
11
votes
4answers
525 views
What is the difference between static global and non-static global identifier in C++?
What is the difference between static global and non-static global identifier in C++?
2
votes
1answer
120 views
Assigning unique identifiers to array of objects in actionscript3
Here i have an actionscript3 code in which i am creating an array of objects. Basically in the array are multiple instances of the same object. I want to make an event listener which calls a function ...
1
vote
1answer
680 views
What is sa_family_t
I'm following Beej's socket programming tutorial, and I'm using VC++ 2010, but when I copy paste the structs into my program, some of the types come up as incorrect identifiers. For example:
...
1
vote
1answer
157 views
Update an object from another object using a loop
I want to update properties of objects from another object which will have corresponding property identifiers. Hopefully I will be able to use a loop to do so but due to my inexperience I cannot think ...
0
votes
1answer
1k views
currentFrame identifiers [AS3]
I'm completely new to Flash and AS3, and I'd have thought this would be a simple question, but I've been unable to find an answer online or in the documentation. I'm trying to use addEventListener ...
4
votes
1answer
521 views
Facebook Single Sign-On opens wrong app
Hey guys I have an issue with the Facebook iOS SDK. Here is what happens:
I have one Facebook app
I have 2 versions of my iPhone app (one free, one paid), so 2 different bundle identifiers ...
1
vote
3answers
181 views
database storing multiple types of data, but need unique ids globally
a while ago, i asked about how to implement a REST api. i have since made headway with that, but am trying to fit my brain around another idea.
in my api, i will have multiple types of data, such as ...
2
votes
2answers
323 views
Unicode identifiers (function names) for non-localization purposes advisable?
PHP allows Unicode identifiers for variables, functions, classes and constants anyhow. It was certainly intended for localized applications. Wether it's a good idea to code an API in anything but ...
1
vote
2answers
267 views
Raise PostgreSQL's NAMEDATALEN without recompiling
Is it possible to raise the identifier name limit, in PostgreSQL, to above 63 characters, without having to recompile all the database system? I have this Django project generating repeated index ...
2
votes
3answers
848 views
C universal macro names - gcc -fextended-identifiers
Hi I'm looking for how can I write identifiers name with characters like [ ' " or #.
Everytime that I try to do that, I give the error:
error: macro names must be identifiers
But learning about ...
1
vote
2answers
643 views
NServiceBus, NHibernate, and GuidComb()
Disclaimer: This is a follow-on question from my other question about NServiceBus which was answered very thoroughly.
My current question is this: If a website is built to be 'dumb' like the article ...
0
votes
2answers
276 views
Problems with iAd changes in 4.2
Im trying to use iAds in my app but I want to support all versions from 4.0 upwards. However the code for setting the current size identifier has changed in the 4.2 sdk, it used to be:
...
10
votes
7answers
1k views
Is it a good idea to use unicode symbols as Java identifiers?
I have a snippet of code that looks like this:
double Δt = lastPollTime - pollTime;
double α = 1 - Math.exp(-Δt / τ);
average += α * (x - average);
Just how bad an idea is it to use unicode ...
3
votes
5answers
920 views
Retrieving data from a JSON sub array in javascript, where identifier starts with an integer
I must be missing something simple here, but I'm having trouble retrieving data from a JSON array response. I can access objects with identifiers that start with letters, but not ones that start with ...
29
votes
13answers
1k views
Why does a programming language need keywords?
For example (in C):
int break = 1;
int for = 2;
Why will the compiler have any problems at all in deducing that break and for are variables here?
So, we need keywords because
we want the ...
4
votes
3answers
356 views
VB.NET, what is the difference between Boolean and [Boolean]?
I ran some code through an automatic translator for C# to VB, and it translated some code like this:
Public Property Title As [String]
How is this different to
Public Property Title As String
...
2
votes
2answers
392 views
FXCop violation CA1716 IdentifiersShouldNotMatchKeyword - is this really a problem?
We have recently started using FxCop on our code base and I am in the process of evaluating the problems. One is the IdentifiersShouldNotMatchKeywords issue. This applies to a namespace ...
6
votes
8answers
183 views
Better identifier names?
How can I train myself to give better variable and function names (any user-defined name in a program).
8
votes
5answers
2k views
Is there a method in C# to check if a string is a valid identifier
In Java, there are methods called isJavaIdentifierStart and isJavaIdentifierPart on the Character class that may be used to tell if a string is a valid Java identifier, like so:
public boolean ...
4
votes
5answers
600 views
Proper way of having a unique identifier in Python?
Basically, I have a list like: [START, 'foo', 'bar', 'spam', eggs', END] and the START/END identifiers are necessary for later so I can compare later on. Right now, I have it set up like this:
START ...
11
votes
7answers
4k views
Are dollar-signs allowed in identifiers in C++03?
What does the C++ standard say about using dollar signs in identifiers, such as Hello$World? Are they legal?
1
vote
2answers
209 views
Does this Ruby code look up identifiers or the values associated with them?
I've been trying to understand this example Ruby code from a blog entry which says it uses the symbols :DEFAULT, :say and :@message "to look up identifiers". But from what I can tell, it's not looking ...
4
votes
7answers
435 views
What data type do you use for storing IDs?
Why is there a minimum character count for posting questions? o.O
Anyway, my question is as clear as can be from the title. Do you use int, bigint, tinyint, whatever.
It seems like a small thing I ...