Tagged Questions

0
votes
1answer
2 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 …
0
votes
1answer
24 views

Is it possible to make four (and more) part Uniform Type Identifiers?

I'm trying to register my custom UTI for document-based app. It seems ok, because a get correct type in -initWithType:error: method and in -dataOfType:error:. BUT my app fails to o …
0
votes
1answer
22 views

Rolling back identifiers NHibernate

I would like to get NHibernate to roll back the identifier of any entities saved during a transaction if the transaction is aborted. I am using NHibernate 2.1.0, and it doesn't do …
0
votes
1answer
40 views

Invalid compiler-generated .NET Class Name

I was going through Getting Started (with PostSharp) And when I saw PostSharp injected (is this expression is right?) an aspect code into assembly, I saw this oddly named class ma …
1
vote
2answers
67 views

Unique Identifiers that are User-Friendly and Hard to Guess

Hi, My team is working on an application with a legacy database that uses two different values as unique identifiers for a Group object: Id is an auto-incrementing Identity column …
0
votes
1answer
147 views

Bundle Identifier

Hi, I'm running a small team of iPhone developers and am a bit concerned about the application transfers into iPhone from Xcode. The problem is that whenever an app is transfered …
3
votes
3answers
197 views

Identifiers or Variables which is which?

Hi, 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 vari …
0
votes
7answers
179 views

What can you NOT use an identifier for?

I'm trying to understand what identifiers represent and what they don't represent. As I understand it, an identifier is a name for a method, a constant, a variable, a class, a pac …
0
votes
1answer
55 views

“seekg identifier not found”

I have a program called main: #include<iostream> #include<fstream> using namespace std; #include"other.h" int main() { //do stuff } and then other.h: char* load_dat …
0
votes
2answers
346 views

Redirect/Refresh to fragment identifier

Im using the iUI framework to create a site. If your not familiar with this you have one page made up of divs and you navagate the user between with fragment identifiers. The pro …
3
votes
3answers
474 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.pprin …
1
vote
16answers
986 views

Getting a unique id from a unix-like system

Hello. I want to get from any Unix-like system (if this is possible) a unique id that will be persistent every time my application runs in the same machine. If it is possible, I w …
4
votes
2answers
662 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 fo …