5
votes
5answers
80 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 se …
0
votes
2answers
58 views
Counting all the keys pressed and what they are (python)
I'd like to create a map of the number of presses for every key for a project I'm working on.
I'd like to do this with a Python module. Is it possible to do this in any way?
0
votes
5answers
165 views
how do I make a composite key with SQL Server Management Studio?
how do I make a composite key with SQL Server Management Studio?
I want two INT columns to form the identity (unique) for a table
3
votes
3answers
744 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 …
1
vote
2answers
37 views
home, end, delete, pageup, pagedown with ksh
Hello.
I want to use home, end, delete, pageup, pagedown with ksh. My TERM is
xterm-color. These keys works fine with tcsh and zsh, but not with ksh
(print a tilde ~)
I found t …
2
votes
5answers
305 views
Multiple Modifier Keys in C#
I am betting this is a really simple question to answer, I just can't get such a simple thing to work.
I use a keydown event to detect keys pressed and have several common key com …
0
votes
3answers
73 views
How to re-index the values of an array in PHP?
Array (
[id] => 3
[user_id] => 1
[clan_id] => 1
[date] => 2009-09-24 09:02:05
[skill1rank] => 1
[skill1lvl] => 2376
[skill1xp] => 1 …
1
vote
1answer
133 views
How to identify the keyboard keys using C#
Hi,
I have an C# application runing at the back ground. Now i want to stop this application when the system is locked. how can i do that. Any help regarding this is really appreci …
1
vote
2answers
41 views
Mysql mapping table FK constraints
Hi,
I'm experiencing some difficulties with foreign key constraints. I have three tables:
Features
ID PK AUTO_INC
Title VARCHAR
Subscriptions
ID PK AUTO_INC
Title …
13
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 …
5
votes
3answers
296 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 consist …
4
votes
3answers
194 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 …
0
votes
2answers
178 views
how to fetch array keys with jQuery?
Good afternoon. I have an array with some keys, and values in them. I then need to fetch the array keys and not the data in them. I want to do this with jQuery. I know for example …
0
votes
4answers
372 views
PHP - Array search for multiple values
I need to get the keys from values that are duplicates. I tried to use array_search and that worked fine, BUT I only got the first value as a hit.
I need to get both keys from the …
5
votes
4answers
212 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();
f …
