Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

51
votes
12answers
32k 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 ...
30
votes
14answers
5k views

Surrogate vs. natural/business keys

Here we go again, the old argument still arises... Would we better have a business key as a primary key, or would we rather have a surrogate id (i.e. an SQL Server identity) with a unique constraint ...
24
votes
7answers
15k views

How to find keys of a hash?

I know in javascript Objects double as hashes but i have been unable to find a built in function to get the keys var h = {a:'b',c:'d'}; I want something like var k = h.keys() ; // k = ['a','c']; ...
13
votes
6answers
13k 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
13
votes
5answers
979 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 ...
12
votes
2answers
269 views

C# - Difference between Keys.Shift and Keys.ShiftKey

In my application i detect when a key is pressed and see if the modifier is the shift key but the Keys enumerator has Shift and ShiftKey. It seems the event is always sending Keys.Shift, but is ...
12
votes
3answers
3k views

What is the difference between DSA and RSA?

It appears they are both encryption algorithms that require public and private keys. Why would I pick one versus the other to provide encryption in my client server application?
11
votes
4answers
7k 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 ...
9
votes
3answers
15k 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 ...
9
votes
2answers
8k views

What is the max key size for an array in PHP?

I am generating associative arrays and the key value is a string concat of 1..n columns. Is there a max length for keys that will come back to bite me? If so, I'll probably stop and do it ...
9
votes
7answers
4k 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 ...
8
votes
5answers
756 views

Why does MS Access 2007 not allow a row insert, but then allow it on the next insert attempt?

My insert statement is: INSERT INTO myTable (inst_id,user_id,app_id,type,accessed_on) VALUES (3264,2580,'MyApp','Renew',Now); ...where all of the values are formatted correctly. The table has the ...
8
votes
3answers
8k views

How to convert a character in to equivalent System.Windows.Input.Key Enum value?

I want to write a function like so, public System.Windows.Input.Key ResolveKey(char charToResolve) { // Code goes here, that resolves the charToResolve // in ...
7
votes
3answers
3k 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 ...
6
votes
4answers
342 views

Why does an empty Perl hash have one key?

The standard Googleable answer to "how do I find out the size of a hash in Perl?" is "take the size of keys(%hash)" my %h = {}; print scalar (keys (%h)); This prints '1'. I was expecting zero. On ...
6
votes
3answers
673 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 ...
6
votes
5answers
1k 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 ...
5
votes
3answers
144 views

Pythonic shorthand for keys in a dictionary?

Simple question: Is there a shorthand for checking the existence of several keys in a dictionary? 'foo' in dct and 'bar' in dct and 'baz' in dct
5
votes
5answers
220 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
5answers
5k 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 combination's to do ...
5
votes
1answer
1k 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
2answers
184 views

How do I detect lowercase keys using the Keys enum in C#?

for (Keys k = Keys.A; k <= Keys.Z; k++) { if (KeyPress(k)) Text += k; } This code detects the key buttons I pressed in my keyboard and it will print out what key is pressed in the ...
4
votes
2answers
182 views

Efficiently counting the number of keys / properties of an Object in JavaScript

This question is almost identical to How to efficiently count the number of keys/properties of an object in JavaScript?. I want to know one extra piece of information: what is a "constant-time" way ...
4
votes
1answer
254 views

Don't want to store the secret Facebook/Twitter API key on mobile devices, design patterns?

I have an issue with letting my secret API key be all over the world on potentially thousands of mobile devices. It could easily be compromised and used for malicious purposes by a hacker. So what ...
4
votes
2answers
366 views

NHibernate one-to-one mapping, non-primary keys

Can't get NHibernate to generate the correct query. It keeps using the primary keys of the two tables I'm joining for the one-to-one relationship, and I can't figure out how to specify the foreign key ...
4
votes
1answer
2k views

Add private key permanently with ssh-add on Ubuntu

I have a private key protected with a passowrd to access a server via SSH. I have 2 linux (ubuntu 10.04) machines and the behavior of ssh-add command is different in both of them. In one machine, ...
4
votes
1answer
232 views

Google App Engine retrieve user defined key name

Is there a way to retrieve the key name you set using: Model( key_name = ... ... ) I tried using the key() method but that returns the one Google makes.
4
votes
3answers
733 views

Facebook oAuth needs secret key?

Facebook oAuth requires your secret key? I thought you weren't supposed to share that. Am I using the wrong secret key?
4
votes
4answers
497 views

BitShifting with BigIntegers in Java

I am implementing DES Encryption in Java with use of BigIntegers. I am left shifting binary keys with Java BigIntegers by doing the BigInteger.leftShift(int n) method. Key of N (Kn) is dependent on ...
4
votes
5answers
314 views

What _can_ I use as std::map keys?

Extends. I have: struct Coord { int row, col ; bool operator<( const Coord& other ) const { return row < other.row && col < other.col ; } } ; I'm trying to create a ...
4
votes
3answers
836 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
3answers
2k 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 ...
4
votes
1answer
121 views

Capture multimedia keys from a web site?

Is there a way to capture multimedia keys from a web site?
3
votes
6answers
94 views

Creating a hashmap with a double key

I am looking for an appropriate data structure for my problem. I would like to be able to select node objects as efficiently as possible using two keys. Insertion and deletion also needs to be ...
3
votes
1answer
59 views

How should I go about using jQuery extend when my config file has a normal array in it?

Seems $.extend uses only the keys of its input to determine what to overwrite. So when my config looks like this var config = { "numeric" : false, "keycode_whitelist" : [ 37, 39, // ...
3
votes
4answers
98 views

Converting from Array of Arrays to Single Array

How do I make this: array(2) { [0] => array(1) { ["bleh"] => int(109720) } [1] => array(1) { ["bleh"] => int(112439) } } into this most efficiently? array(2) { 0 ...
3
votes
1answer
302 views

deleting multiple keys in redis-rb

Using redis-rb in a Rails app, the following doesn't work: irb> keys = $redis.keys("autocomplete*") => ["autocomplete_foo", "autocomplete_bar", "autocomplete_bat"] irb> $redis.del(keys) ...
3
votes
4answers
118 views

What is php's performance on directly accessing array's row with key specified

I have a question regarding array's performance.... how does php handle array keys? I mean if I do something like $my_city = $cities[15]; .... does php directly access the exact row item in $cities ...
3
votes
4answers
3k views

what is difference between candidate key and composite key?

I am reading about candidate key and composite key. I come to know that a candidate key can qualify as a primary key and it can be a single column or combination of columns and composite key is also a ...
3
votes
2answers
207 views

What is the limit of number of keys I can multi-get on memcache

So in PHP we can do $memcache->get(array('a','b','c')); I wonder what is the limit of keys before things break. Can I pass 1000 keys? 10000 keys? I tried to find answer, but can't find anywhere. ...
3
votes
2answers
384 views

Storing API keys in Android, is obfustication enough?

I'm using the Dropbox API. In the sample app, it includes these lines: // Replace this with your consumer key and secret assigned by Dropbox. // Note that this is a really insecure way to do this, ...
3
votes
4answers
370 views

Enumerating through a Dictionary.KeyCollection in order

According to MSDN: The order of the keys in the Dictionary.KeyCollection is unspecified I am assuming that this is because additions to the Dictionary are placed into some sort of a hash ...
3
votes
4answers
549 views

C# Detect Key Press, avoid non-typing keys

Is there any way to proceed into a method if the key that is being pressed does not result in any typing. i.e. the shift key, control key etc without having to specify all of them. Ideally, to detect ...
3
votes
3answers
350 views

Treap with implicit keys

There's a data structure called treap: that's a randomized binary search tree, which is also a heap on randomly generated so-called "priorities". There's a variation of this structure, where keys are ...
3
votes
2answers
768 views

keybd_event is not working right =(

I can't get this to work right. This should press left for 1 second then wait 10 seconds, then right 1 second, etc.: keybd_event(0x25, 0xCB, 0, 0); // press left cout << "Ldown\n"; ...
3
votes
2answers
157 views

How can I convert one Perl hash to another using the keys?

I've just started diving in to the crazy world that is perl and have come across a problem that I cannot seem to wrap my head around. Specifically I need to be able to convert from one hash structure ...
3
votes
3answers
946 views

array_diff & renumbering numeric keys

(I'm a beginner) My script uses the standard $c = 0; $t = count($array); while ($c < $t) { $blah = $array[$c]; ++$c; } rather extensively. But I just ran into a situation where I also ...
3
votes
3answers
2k views

How can I determine if a Perl hash contains a key mapping to an undefined value?

I need to determine if a Perl hash has a given key, but that key will be mapped to an undef value. Specifically, the motivation for this is seeing if boolean flags while using getopt() with a hash ...
3
votes
2answers
9k 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 that PHP has a ...
3
votes
2answers
2k views

surrogate vs natural key: hard numbers on performance differences?

There's a healthy debate out there between surrogate and natural keys: SO Post 1 SO Post 2 My opinion, which seems to be in line with the majority (it's a slim majority), is that you should use ...

1 2 3 4 5 7