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

learn more… | top users | synonyms (1)

0
votes
0answers
22 views

Key Inputs to change direction of an animation?

I am trying to get a working tron game. My problem is that I do not know how to change the direction of an animation using the key pad and WASD. import java.applet.Applet; import java.awt.Color; ...
0
votes
3answers
31 views

XSLT - Key() function

I'm a bit confused about this key function: <xsl:for-each select="article[count(. | key('idkey', @id)[1]) = 1]> Is there anyone that can briefly explain whats happening in this for-each ...
0
votes
2answers
47 views

Checking if a key is unique before inserting, if not make another key

Basically I need to insert a random key along with the users ip address and web browser into a MySQL table; This is for authentication etc and this key must be unique. However, I seem to of found that ...
-1
votes
0answers
16 views

Understand small piece of code [closed]

Can anyone please explain me the meaning of below piece of code: <xsl:if test="$v_extpaym = 'LBC' "> <xsl:variable name="v_TABLE1" select="E1IDKU3/EXTPAYM"/> <xsl:variable ...
0
votes
1answer
24 views

XSLT key only returns a value once

I think I'm missing something obvious here but here goes. I have the below xml and I need to group the KEY nodes of the matched instances together. This is specified by the match attribute and it can ...
0
votes
0answers
6 views

Assinging a unique url for each Category

looking to see if we can rename the category urls so they are more seo friendly e.g we have a category called dining sets But we'd like the url be dining-sets-online Can change it manually in the ...
0
votes
1answer
9 views

EC2 instances login with password and keypair

I understand that by default Amazon EC2 configures a keypair with a default instance user (user-ec2 or ubuntu) for SSH access. Also I understand that it is possible to allow password access to a ...
0
votes
1answer
39 views

How to check if all the keys in a java code are in the bundle?

We are a team who develop a software written in Java, using bundles for internationalization. We are looking for an analysis tool which can check if all the keys written in the Java Code are in the ...
-1
votes
0answers
20 views

Compute engine, how to enable IPforward? [closed]

I created a new google virtual server, and made a Key for my project. There is still a 'permission denied' when I login with key. It is said I need to login with key to enable the 'IPforward' ...
-4
votes
0answers
22 views

Windows 7 BIOS Lock [closed]

My school had a computer that was locked today, and from the graphics of it, it was obviously part of the bios. But if you lock the computer, it usually starts up and just says "Enter Password:" and a ...
0
votes
0answers
19 views

Replace keys of a resource bundle in MessageFactory class under JSF

JSF uses MessageFactory.getMessage(String messageId,...) to look up a value based on a resource bundle. The parameter messageId represents the key to be looked up, and all the keys are pre-defined by ...
-1
votes
0answers
8 views

my certificates not showing in 'my certificates', which means no private keys for me

I'm working in Xcode and trying to get an app ready for upload to the app store. I'm at the final stages, and when I create my development and distribution certificates I find they only appear in my ...
0
votes
0answers
39 views

How do I retrieve a public/private key from a file using BouncyCastle?

I'm having a hard time understanding how to use a private and public key file given to me. I have 2 files, public.pem and private.pem. I'm trying to use BouncyCastle to get the public and private ...
1
vote
5answers
43 views

JDBC - How do I 'getString' from a ResultSet if the column's name is a keyword?

Whenever I try to retrieve the value for a column named "Comment" in an Access db (.mdb), It gives me the following error. Offence: copying data ERROR - Offence TABLE ...
1
vote
1answer
13 views

Key Listener not detecting Keys

I am having trouble with my Key Listener, it is not detecting any keys at all. I might have complety messed it up or hopefully just be missing something simple but i just cant see it. Any help would ...
0
votes
1answer
223 views

Toggle Key in Java

Basically I'm trying to toggle boolean every time F1 key is pressed. In my main class I've got update method that is called 60 times a second and I coded something like this: Main.class: private ...
0
votes
1answer
24 views

Lower Keyboard sensitivity in java keyhandler?

private class KeyHandler implements KeyEventDispatcher{ @Override public boolean dispatchKeyEvent(KeyEvent e) { if(e.getKeyCode() == KeyEvent.VK_RIGHT){ ...
1
vote
1answer
38 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
22 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
31 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
19 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
37 views

How to make objects with same data have same key? [duplicate]

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
39 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
17 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
26 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
50 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
11 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
37 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
33 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
46 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
27 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
45 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
39 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
64 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
20 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
22 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
323 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
55 views
+50

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
75 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
36 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
38 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
22 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
52 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
18 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 ...

1 2 3 4 5 50