A unique identifier used to retrieve a paired value. Used in hashtables and databases.

learn more… | top users | synonyms (1)

0
votes
1answer
23 views

Lower Keyboard sensitivity in java keyhandler?

private class KeyHandler implements KeyEventDispatcher{ @Override public boolean dispatchKeyEvent(KeyEvent e) { if(e.getKeyCode() == KeyEvent.VK_RIGHT){ ...
0
votes
1answer
34 views

How to implement "press to enter"in c++

any idea on how to implement a "press any key to move on" in c++? Based on my understanding, for any input stream function, it all requires users to hit "enter" to read. But how do I make it like ...
0
votes
1answer
18 views

focusout event on alt keypress does not work as expected

I am using jQuery Token Input plugin with one of my custom written plugins in one of my projects. My plugin basically adds an anchor tag to an element that it was initialized on and upon clicking the ...
-1
votes
1answer
29 views

Looking for a obj-c equivalent of this openSSL command [closed]

I am looking for obj-c code that is equivalent to this command openssl enc -aes-128-cbc -k secret -P -md sha1 Once you type the above in command you get this output salt=538C5F5ECAB7BFA2 ...
-1
votes
0answers
16 views

Generate .key file using salt,key & iv

By executing this command: openssl enc -aes-128-cbc -k secret -P -md sha1 I got: salt = 705760957AE3FF9B key = BB7A9DFE339E0187CD6255614CB5C584 iv = 8E113F25E75E840A8A8377A19FFC5CF4 Anybody ...
0
votes
1answer
22 views

SQL - In which order should i join my two tables?

I have the following tables : CREATE TABLE IF NOT EXISTS "image_e" ( "id" int unsigned NOT NULL AUTO_INCREMENT, "title" varchar(32), "alt" varchar(16) NOT NULL, PRIMARY KEY ...
1
vote
1answer
33 views

How to make objects with same data have same key?

Is there an easy way to make a hash key for a class based on it's data??? Or some interface for that? I have a Dictionary<MyClass, int>. MyClass is very simple, it contains a name and a string ...
0
votes
1answer
33 views

C# How do I handle a argumentNullException when setting the clipboard?

private static IntPtr HookCallback( int nCode, IntPtr wParam, IntPtr lParam) { if (nCode >= 0 && wParam == (IntPtr)WM_KEYDOWN) { int vkCode = ...
0
votes
1answer
14 views

Efficient getting a pair of coordinates with the shortest distance from array of coordinates using Javascript

I have a several x-y coordinates stored in an two arrays, one for source object, one for target : var sourcePoints = [ { x: 20, y: 11 }, { ... }, { x: 10 y: 6 } ]; var ...
1
vote
2answers
25 views

How to remove index from array in PHP?

Suppose I have such an array in php: $ray = Array ( [0] => Array ( [id] => 1 [0] => 1 [ip] => 127.0.0.1 [1] => 127.0.0.1 ...
1
vote
0answers
45 views

Compare values of specific keys in 2 different dictionaries to see if they are equal

I am trying to see if the values of specific keys in 2 different dictionaries are equal (which they are at certain times). If so, I want to print both dictionary values. If not, I only want to print ...
1
vote
0answers
9 views

Visual Basic — Key List (Gamecontroller?)

How can I find a specific value for Gamecontroller-Key? I want to use them for a script in a game. Example: isKeyPressed(Settings.GetValueKey("Key", Keys.X)) Here are the only key-values I ...
0
votes
2answers
28 views

How to switch i and a in Sublime Text 2 Vintage Mode?

i have switched my i and a keys in vim. With this: nnoremap i a nnoremap a i is it possible to switch them in Sublime Text 2 too? Thanks
0
votes
1answer
30 views

Parsing a JSON value in Objective-C with variable ID/key

I have searched this extensively, but so far I could not find a question that matches my problem. I have a 'unique' JSON output and trying to parse it in Objective-C. First of all, this is the JSON ...
0
votes
2answers
43 views

return key by value in dictionary [duplicate]

I am trying to return the key in a dictionary given a value in this case if 'b' is in the dictionary, I want it to return the key at which 'b' is (i.e 2) def find_key(input_dict, value): if ...
0
votes
1answer
25 views

How would you get the last 10 keys redis?

Let's say I have a database with 1,000,000 keys. Is there a way to know the last 10 keys from that database?
1
vote
2answers
42 views

Get the Key correspond to max(value) in python dict [duplicate]

Let's consider a sample dictionary of (key, value) pairs as follows: dict1 = {'a' : 10, 'x' : 44, 'f': 34, 'h':89, 'j': 90, 'd': 28, 'g' : 90} dict2 = {'a' : 10, 'x' : 44, 'f': 34, 'h':89, 'j': 90, ...
0
votes
2answers
31 views

Java (HashMap) - How to save and load an entrySet()?

I have 2 hashmaps and I want both to be saved when the menu button is clicked, and I want to be able to load them (In the example I'm saving just one). void saveHash(HashMap<String, Object> ...
1
vote
0answers
44 views

RSA Algorithm (private key calculation) in bash

Looking for help on how to calculate the RSA secret key in a bash script 'd' when p, q & e are given. Although I know this query has come up before, all I seem to find is theoretical advice on ...
0
votes
0answers
15 views

android catch simultaneous key press event?

I was wondering whether Androd can catch simultaneous Key Press. For example, a application does something when a user press HOME and MENU key simultaneously. Is it a possible scenario? Thank you in ...
0
votes
1answer
19 views

What could someone do if they got hold of my Facebook App Id & Secret?

Even if I accidentally published my Fb App Id and Secret Key, how could anyone harm my app if they have no access to my App Dashboard?
15
votes
4answers
313 views

How to specify 2 keys in python sorted(list)?

How do I sort a list of strings by key=len first then by key=str? I've tried the following but it's not giving me the desired sort: >>> ls = ['foo','bar','foobar','barbar'] >>> ...
0
votes
0answers
27 views

Opera's right click disables key events

In Opera, while you are holding down right click, no key events register. window.onkeydown = function() { alert("hey"); } this doesn't register if you're holding down the right mouse button in ...
0
votes
2answers
59 views

Action Script 3. How to disable all keyboard keys

I'm creating flash game, where is needed only mouse to play. I need to disable all keyboard keys, but I can't do it successful. I don't understand really how to make it, I need to ...
1
vote
1answer
41 views

How to prevent duplicate keys from array_push

I have 2 2D arrays, how can i get the unique keys and only push those? For example: $array = json_decode('[{"7654321":1368356071},{"1234567":1368356071}]',true); $array2 = array(array(1234567 => ...
0
votes
2answers
37 views

Finding a key in a hashmap [duplicate]

i have created a hashmap with Color Objects as keys. My source code looks like this: HashMap<Color,Integer> hm = new HashMap<Color,Integer>(); Now i would like to check if there is ...
0
votes
2answers
26 views

symfony2 + doctrine2: map many entity to join to the same entity composite primary key

I need to map many entities as one to many to the same entity primary key. For the sake of brevity i will try to semplify a little bit: Suppose I have a news and a product table that need to be ...
1
vote
2answers
31 views

Difference between Primary key and Candidate key

I have read about Keys in RDBMS. http://stackoverflow.com/a/6951124/1647112 I however couldn't understand the need to use a candidate key. If a primary key is all that is needed to uniquely identify ...
-3
votes
0answers
21 views

Error with code for my game

}); addKeyListener(new Game.KeyInputHandler(null)); addMouseListener(new Game.MouseInputHander(null)); addMouseWheelListener(new Game.MouseWheelInputHander(null)); addMouseMotionListener(new ...
0
votes
0answers
43 views

Android bluetooth headset EXTRA_VENDOR_SPECIFIC_HEADSET_EVENT_CMD_TYPE not working?

I have a Nokia BH112 mono headset. I want to capture key press event, methods like onKeyDown or MediaButton intent dont work for me. So, I figured out that pressing button on a headset, it should send ...
-4
votes
0answers
31 views

Canvas Game - Key holding fails [closed]

There's a glitch in this game, when changing direction and holding key down the player stops for a second and then starts to move, why? Here's the game: http://shijupz.net46.net/ Do anyone know how ...
0
votes
2answers
33 views

Get an array element by key php

I have an array of (many) arrays, encoded at different depths. The problem is that I know the key of the element I am searching for, but not the depth of the encoding. So for example it might be ...
1
vote
1answer
16 views

XSD key not in root element and complex keys

I searched for this, but can't find solution to my problem, so please don't trash this question. We have a service with very complex XML configuration which is described by XSD. There are many rules ...
0
votes
3answers
43 views

$_SESSION returns Array

I have an $_SESSION['errors'] for which print_r returns Array ( [0] => field ). But when I try this: $errors = $_SESSION['error']; if(array_key_exists (0, $error)) {echo "yes";} else{echo ...
-2
votes
0answers
17 views

XCode Project to embed Key Note Presentation

Noticed there are several Apps in the App Store which sell (contain) Key Note templetes. Any idea how this is done and where sample code could be found? Thanks in advance.
0
votes
1answer
21 views

JPA: Retrieve a list from secondary table using a composite key

well, here I have an example of what I'm trying to do with no success. Sorry for the dummy example. I have the following tables: CREATE TABLE HOUSE( HOUSE_NAME VARCHAR2(255), OWNER_ID ...
0
votes
0answers
12 views

Using a Google API V3 key on multiple sites

I am trying (again, after a long pause, lost the will to live last time as it was sooooo fiddly with V2) to try and add a bespoke Google map on a site. It will show a map centred on the client's ...
0
votes
1answer
21 views

Django import ChainedForeignKey

i am trying to make a smart menu using ChainedForeignKey, but so far i am stuck with the import of ChainedForeignKey: from smart_selects.db_fields import ChainedForeignKey I am using pydev on ...
0
votes
2answers
94 views

Delphi7, make a shape jump when pressing Up key

I'd like to make a shape jump when the player presses the UP key, so the best i could think of is this, but the method i used is terrible and problematic: (shape coordinates: shape1.top:=432;) ...
1
vote
1answer
46 views

How to add key press Event manually using jquery?

Here I'm having two text boxes which suggests country names using jquery <input type="text" size="50" id="suggestBox"/> <input type="text" size="50" id="suggestBox1"/> Now, if I select ...
2
votes
1answer
193 views

Getting invalid android_key parameter error, after first time login in Facebook Android SDK

I have got the hash key from my debug store using keytool -exportcert -alias androiddebugkey -keystore C:\Users\user.android\debug.keystore | openssl sha1 -binary | openssl enc -a -e and pasted the ...
0
votes
2answers
38 views

Using PHP to extract key from value in an array

I have a PHP array that prints the following information: Array ( [0] => 23 [1] => 34 [2] => 35 [3] => 36 [4] => 37 [5] => 38 ..<snip>.. ) ...
0
votes
1answer
29 views

Python file names as dictionary keys

I would like to create a dictionary "file_stats" containing objects with file statistics while parsing a drive or folder. I use the path+filename combination as keys for this dictionary The objects ...
1
vote
2answers
38 views

Data structure that supports access via index as well as key

Dictionary supports access of elements via a key. List supports access via index. Is there any data structure that supports access via both key and index? Dictionary<string, string> d = new ...
0
votes
1answer
47 views

Using a key to authorise creation of model attributes

I am unsure if my logic is correct in the following scenario, maybe its not even a best practice or there could be a simpler way. Also i am unsure how to set up my code so if anyone has any pointers ...
0
votes
0answers
39 views

SSL install aborted due to error: Modulus mismatch, key file does not match certificate

I’m installing my new cert following the instructions: Generated a CSR through WHM Went to GoDaddy and downloaded the new Certificate Opened my email for the CSR and got the RSA Key Opened the ...
0
votes
2answers
27 views

SQL Foreign key to a table with a composite primary key

I'm using derby db with NetBeans and I'm having some troubles with my tables: I've TABLE_A and TABLE_B and i create them like this: CREATE TABLE TABLE_A ( FIELD_1 ...
1
vote
2answers
69 views

Python Dictionary from text file

Hello I have a file text that holds a sequence like this: TCA:DateIn,TimeIn,Content,Quantity,Company,TankerName,Country,PortFrom 26/02/2013,15:00,Natural gas,30000,Linkers, Blue Ice, China,Shanghai ...
0
votes
0answers
36 views

Emulate or clone hard disk - Hardware ID

I'm developmenting a security application which take the Hard disk HW ID and mix it with a generic key to generate an unique key to prevent software cloning. Is there a way to clone HW id? Or is that ...
0
votes
3answers
23 views

Is there something like keypath in an associative array in PHP?

I want to dissect an array like this: [ "ID", "UUID", "pushNotifications.sent", "campaigns.boundDate", "campaigns.endDate", "campaigns.pushMessages.sentDate", ...

1 2 3 4 5 50