Tagged Questions
The identifier tag has no wiki summary.
11
votes
4answers
355 views
Why are List and String identifiers named “xs” (in Scala and other languages)?
A lot of sample Scala code contains Strings and Collections named "xs"
Why xs? Anything to do with the xs: used in XML (for Schema?)
Examples:
var xs = List(1,2,3)
val xs = "abc"
11
votes
7answers
546 views
Why do websites generate random alphanumeric strings for urls instead of using row ids?
Why does many sites (youtube is good example) generate string of random number and letter instead of using for example the row id?
usually its something likes this
bla?v=wli4l73Chc0
instead of ...
8
votes
7answers
199 views
Is it poor form to use CLASS attributes with no corresponding CSS rule?
For example if I wanted to select some elements with a certain class using jQuery, and for that reason only, is it always expected that those classes SHOULD be defined in the css?.
<div ...
7
votes
1answer
3k views
AdMob: Missing required XML attribute adUnitID
I'm new to the ad stuff, and I can't get it working.
I've done what's stated at http://code.google.com/intl/nl-NL/mobile/ads/docs/android/banner_xml.html.
This is my main.xml:
<TableLayout
...
7
votes
6answers
177 views
How can get Python isidentifer() functionality in Python 2.6?
Python 3 has a string method called str.isidentifier
How can I get similar functionality in Python 2.6, short of rewriting my own regex, etc.?
7
votes
2answers
450 views
How do I write the qualified name of a symbol in Haskell?
I've got a name clash between two different Haskell modules that want to use the same infix operator (<*>). The Haskell 98 report says that
modid.varsym
is permitted, but I can't get it to ...
6
votes
1answer
97 views
Java parsing of dotted identifiers
What are the rules Java uses to resolve dotted identifiers?
For example:
import Foo.Bar;
class Foo
{
public static class Bar
{
};
};
Now, Foo.Bar can refer to either the imported ...
6
votes
3answers
2k views
What characters are valid in an SQL Server database name?
We're going to provide our clients with a tool that (among other things) creates a new SQL Server database, and I want to be able to do basic validation on the database name they provide. SQL Server's ...
6
votes
2answers
162 views
What's the rationale/history for the # convention of identifying methods in Ruby?
For example, I've always seen methods referred to as String#split, but never String.split, which seems slightly more logical. Or maybe even String::split, because you could consider #split to be in ...
6
votes
3answers
142 views
Why # is not allowed in an identifier?
Java allows identifier to start with or contain $ (dollar sign).
e.g int a$b;
But why # is not allowed in an identifier? What is the specific reason? Is # an operator or something in Java?
e.g int ...
6
votes
3answers
360 views
Unicode identifiers in Python?
I want to build a Python function that calculates,
and would like to name my summation function Σ. In a similar fashion, would like to use Π for product, and so on. I was wondering if there was a ...
6
votes
4answers
869 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 ...
5
votes
4answers
182 views
How to convert arbitrary string to Java identifier?
I need to convert any arbitrary string:
string with spaces
100stringsstartswithnumber
string€with%special†characters/\!
[empty string]
to a valid Java identifier:
string_with_spaces
...
5
votes
1answer
150 views
Using keywords as identifiers in F#
In C#, I can do the following:
int @private = 15;
And in VB.NET, I can do the following:
Dim [Private] As Integer = 15
I am wondering if there is a way in F# to use reserved keywords as ...
5
votes
2answers
274 views
Apostrophe in identifiers in Haskell
I found this code snipped on the internet:
digits 0 = [0]
digits n = digits' n []
where digits' 0 ds = ds
digits' n ds = let (q,r) = quotRem n 10
in digits' q (r:ds)
...
5
votes
3answers
200 views
How to retrieve EditText's xml id
I have a form with many EditTexts, and when I press a certain button, I need to retrieve all these controls and put them into a HashMap so the key is the name (key1 int the following code)
...
5
votes
3answers
176 views
An “elegant” way of identifying a field?
I'm writing a system that underlies programmer applications and that needs to detect their access to certain data. I can mostly do so with properties, like this:
public class NiceClass {
public ...
5
votes
3answers
920 views
Identifiers or Variables which is which?
I'm quite confused about several books in .NET that I have read. Would someone out there like to explain to me what an identifier is and how it differs from a variable? Or variables and identifiers ...
5
votes
3answers
2k views
Generating a unique ID in PHP
I'm trying to generate a unique ID in php in order to store user-uploaded content on a FS without conflicts. I'm using php, and at the moment this little snippet is responsible for generating the ...
4
votes
2answers
222 views
Does Haskell allow use of keywords in identifiers?
C# allows it if you put an @ before the variable name. So
int @int = 0;
is valid in C#.
Does Haskell have anything similar to this or it doesn't allow it altogether?
Thanks
4
votes
2answers
168 views
Is there something like “global::” for VB.NET?
I am writing a code-generator that will need to output some miniscule portions of VB.NET code, and since this is a code generator that will add user-provider code, I'd like to try to avoid type name ...
4
votes
4answers
3k views
Device identifier of Android emulator
I want to test in the emulator an app that depends of the device identifier (ANDROID_ID).
I currently obtain device identifier with the following code:
final String deviceID = ...
4
votes
4answers
306 views
How to efficiently identify a binary file
What's the most efficient way to identify a binary file? I would like to extract some kind of signature from a binary file and use it to compare it with others.
The brute-force approach would be to ...
4
votes
3answers
195 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
...
4
votes
4answers
3k views
Python globals, locals, and UnboundLocalError
I ran across this case of UnboundLocalError recently, which seems strange:
import pprint
def main():
if 'pprint' in globals(): print 'pprint is in globals()'
pprint.pprint('Spam')
from ...
3
votes
2answers
45 views
Mercurial : user friendly way to display exact revision number of files?
When I was using Subversion as part of the build process I'd run an 'svn info' and capture the unique ID number and echo it to a header file for inclusion by other programs. This made it easy for ...
3
votes
1answer
56 views
How [“03C0”] match <Ada Reference Manual>'s grammar in Annex P?
I'm writing a tool to parse Ada source file with the grammar provided in 2005 Annex P.
With following piece of code, I know ["03C0"] stands for "greek letter Pi", but is it a legal variable name?
...
3
votes
2answers
149 views
How to declare a function identifier
If i have a sample code like this:
void func_1 {
.......
func_2;
}
func_2{
.......
}
I need to declare a function identifier for func_2 so that the code could run how do i do that?
3
votes
2answers
270 views
Regular expression to confirm whether a string is a valid identifier in Python
I have the following definition for an Identifier:
Identifier --> letter{ letter| digit}
Basically I have an identifier function that gets a string from a file and tests it to make sure that ...
3
votes
5answers
346 views
What characters are allowed in Perl identifiers?
I'm working on regular expressions homework where one question is:
Using language reference manuals online determine the regular expressions for integer numeric constants and identifiers for Java, ...
3
votes
2answers
83 views
Identifiers starting with an integer
I have a .net dll and when I add it in the references, it goes without any issue. The problem is that its namespaces start with an integer e.g. 3gppsa5.org.AlarmIRPSystem and when I try to use or ...
3
votes
1answer
151 views
F#: Implementing interface with function name the same as the keyword begin
I am trying to implement the IVector interface which is part of the Microsoft.VisualC.StlClr namespace. It has a member function begin(). If I try to implement the interface then it complains about ...
3
votes
3answers
260 views
What is the point of unicode escape sequences in identifier names in JavaScript?
JavaScript allows for having unicode escape sequences in identifier names... for example:
var \u0160imeVidas = "blah";
The above variable starts with the (croatian) letter Š, so that the complete ...
3
votes
5answers
391 views
identifier rename in java program
I need to programmatically rename identifiers within a given scope, for example, a method in java program. For example, given the following java function:
public void doSomething(){
int x = 10;
...
3
votes
3answers
631 views
Using a variable as identifier in a json array
I'm wondering if it is possible to use assigned variables as identifier in a json array. When I tried this, I was getting some unexpected results:
(Code is simplified, parameters are passed in a ...
3
votes
7answers
3k views
Get a unique computer ID in python on windows and linux
I'd like to get an id unique to a computer with Python on Windows and Linux. It could be the CPU ID, the motherboard serial, ... or anything else.
I looked at several modules (pycpuid, psi, ...) ...
3
votes
3answers
222 views
MySQL: is there something like an internal record identifier for every record in a MySQL table?
I'm building a spreadsheet app using MySQL as storage, I need to identify records that are being updated client-side in order to save the changes.
Is there a way, such as some kind of "internal ...
3
votes
2answers
905 views
iPhone: Is there a way to loadFromNib AND have a reuseIdentifier?
I am thinking about this problem now for very long.
I try to use different types of cells in my table, that each have their own cell controller and have a reuseIdentifier AND load from NIB.
The ...
2
votes
4answers
75 views
I get an 'identifier not found' error
This is my first attempt to create a basic list (i need this at school) and i get a strange error.
This is the script:
#include "stdafx.h"
#include<iostream>
#include<conio.h>
using ...
2
votes
0answers
2k views
iOS deprecated UDID, replacement? [closed]
Possible Duplicate:
UIDevice uniqueIdentifier Deprecated - What To Do Now?
According to articles in recent time, the UDID identifier will be deprecated since iOS 5 and maybe removed in ...
2
votes
1answer
132 views
understanding NonUniqueObjectException in hibernate
Trying to understand more about Hibernate,I wrote some code which creates some entities and saves them in db and then tries to delete one of the entities.
The mapping file for entity Customer has id ...
2
votes
2answers
80 views
.Net / CLR Identifiers
I was wondering, what characters are accepted in .Net identifiers?
Not C# or VB.Net, but the CLR.
The reason I ask this is I was looking at how yield return statements were implemented (C# In ...
2
votes
2answers
118 views
PHP imagick detect transparency
I want to be able to detect whether an image is transparent or not using the Imagick PHP extension.
So far, the only luck I've been having is to run the exec() / some other command, and use the ...
2
votes
5answers
99 views
Reading id from URL
My question is pertaining to extracting information from the URL using PHP.
I've three pages in the website I am building
catalogues.html
form_userdata.php
mail.php
The schema is as follows. The ...
2
votes
4answers
123 views
Use #define preprocessor directive in a weird way
Today I just finish reading and experimenting on C about how to use #define to create a manifest constant , after that something came into my mind , and below is the code.
#include <stdio.h>
...
2
votes
3answers
132 views
VB.NET Why is this subroutine declared this way?
VB.NET 2010, .NET 4
I have a basic question: I have a subroutine that I found somewhere online declared thusly:
Public Sub MyFunction(Of T As Control)(ByVal Control As T, ByVal Action As Action(Of ...
2
votes
5answers
197 views
can I load a javascript file under a context other than 'window'?
I try to load some external .js files, and have some irresolvable namespace conflicts.
I had the idea of loading some of the files in their own context somehow, replacing the "this" from pointing at ...
2
votes
4answers
1k views
Ways to create a unique user fingerprint in PHP
What is the best way to generate a 'fingerprint' of user unique-ness in PHP?
For example:
I could use a user's IP address
as the 'fingerprint', however, there
could be multiple other users on the ...
2
votes
1answer
190 views
TableLayout background from sdcard
I want to put a background image in may java file from an image stored on the sdcard.
I use the code below but with no success :/
TableLayout tl=new TableLayout(this);
int tmp = ...
2
votes
1answer
241 views
MYSQL: Avoiding cartesian product of repeating records when self-joining
There are two tables: table A and table B. They have the same columns and the data is practically identical. They both have auto-incremented IDs, the only difference between the two is that they have ...