14
votes
16answers
1k views
Surrogate Vs. Natural/Business Keys
Here we go again, the old argument still arises... we'd better have a business key as a primary key, or we'd rather have a surrogate id (i.e. an SQL Server identity) with a unique constraint on the …
10
votes
5answers
564 views
How can I generate a unique, small, random, and user-friendly key?
A few months back I was tasked with implementing a unique and random code for our web application. The code would have to be user friendly and as small as possible, but still be essentially random …
7
votes
4answers
4k views
How to efficiently count the number of keys/properties of an object in JavaScript?
What's the fastest way to count the number of keys/properties of an object? It it possible to do this without iterating over the object? i.e. without doing
var count = 0;
for (k in myobj) if …
5
votes
5answers
104 views
Acceptable types to use as keys in a HashTable
I must admit to having only a rudimentary understanding of how HashTables work, although from what little I do know it seems fairly straightforward. My question is just this: it seems that the …
5
votes
3answers
306 views
Is Perl guaranteed to return consistently-ordered hash keys?
Given something like
foreach (keys %myHash) {
... do stuff ...
}
foreach (keys %myHash) {
... do more stuff ...
}
Is Perl guaranteed to iterate over the keys in a consistent order if the …
5
votes
4answers
243 views
Normalize the case of array keys in PHP
Is there a "better" way (built-in function, better algorithm) to normalize the case of all the keys in a PHP array? Looping though and creating a new array works
$new = array();
foreach( $old as …
4
votes
3answers
232 views
Concatenating Dictionaries
I have three lists, the first is a list of names, the second is a list of dictionaries, and the third is a list of data. Each position in a list corresponds with the same positions in the other lists. …
4
votes
1answer
471 views
Syncing a Core Data Model With A Web Service
This problem has been kicking my butt for a few days now.
I have a web service that serves XML that looks like this:
<levels>
<level>Level 1</level>
<level>Level …
4
votes
7answers
528 views
How do you test a public/private keypair?
Is there an easy way to verify that a given private key matches a given public key? I have a few *.pub, and a few *.key files, and I need to check which go with which.
Again, these are pub/key …
3
votes
3answers
1k views
C# How to Generate Unique Public and Private Key via RSA
I am building a custom shopping cart where CC numbers and Exp date will be stored in a database until processing (then deleted). I need to encrypt this data (obviously).
I want to use the …
3
votes
4answers
747 views
How to determine if an associative array has a key?
In ActionScript 3, is there any convenient way of determining if an associative array (dictionary) has a particular key?
I need to perform additional logic if the key is missing. I could catch the …
3
votes
4answers
429 views
Detecting and acting on keyboard direction keys in Java
G'day all,
I have a console project where it is intended the user presses the keyboard direction keys (non-numeric keypad) to move an avatar. I am having difficulty coding to check for the press of …
3
votes
3answers
717 views
What’s the best method to use / store encryption keys in MySQL
I plan on using MySQL and it's built-in encryption functionality to encrypt / decrypt certain columns in certain tables. The concern I have is that I need to store the key somewhere. I could …
3
votes
4answers
204 views
What is the best method of getting the key of the last added array item in PHP?
Is there a better way to do the following:
$array = array('test1', 'test2', 'test3', 'test4', 'test5');
// do a bunch of other stuff, probably a loop
$array[] = 'test6';
end($array);
echo …
3
votes
5answers
696 views
Key Presses in Python
Is it possible to make it appear to a system that a key was pressed, for example I need to make a the 'A' key be pressed thousands of times, and it is much to time consuming to do it manually, I …
