active questions tagged keys - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T08:13:42Z http://stackoverflow.com/feeds/tag/keys http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1798383/press-escape-key-to-call-method 0 Press Escape key to call method. raimis 2009-11-25T17:01:02Z 2009-11-25T21:10:15Z <p>Hey</p> <p>Is there a way to start a method in c sharp If the key is pressed ? For example esc Please help me with this one</p> <p>Thanks</p> http://stackoverflow.com/questions/1784699/problem-with-keyboard-simulate-press-event 0 problem with keyboard simulate press event. Darkmage 2009-11-23T17:29:04Z 2009-11-23T17:35:18Z <p>im trying to make a automated tool for poulating textboxes with usernames for a dispatcher application at work.</p> <p>Im having some problems trying to simultate key press, if the inputArrayX[i] array contains a,b,c</p> <p>the keyboardsim will press abc, but if the Array contains a,b,b,c,c it still only types out abc, and not abbcc like i want it to do.</p> <p>anyone have a clue what im doing wrong here?</p> <pre><code> private void MouseMacroChangeUser() { //move form to 0,0 this.Location = new Point(0, 0); //set xy to mouse current pos userMousePos(); //inputBlocker(); xX = int.Parse(this.Location.X.ToString()); yY = int.Parse(this.Location.Y.ToString()); defaultMousePos(); //Thread.Sleep(600); Cursor.Position = new Point(Cursor.Position.X + 739, Cursor.Position.Y + 162); //Thread.Sleep(100); MouseSimulator.DoubleClick(MouseButton.Left); for (int i = 0; i &lt; inputArrayX.Length; i++) { string tempX = inputArrayX[i].ToString(); Keys keys = mapToKeyboardMacro(tempX); KeyboardSimulator.KeyDown(keys); } KeyboardSimulator.KeyPress(Keys.Enter); MouseSimulator.Click(MouseButton.Left); //reset mouse to user pos. Cursor.Position = new Point(x, y); needUnblock = true; //inputBlocker(); } private Keys mapToKeyboardMacro(string key) { if (key == "space") { return Keys.Space; } else if (key == "a") { return Keys.A; } else if (key == "b") { return Keys.B; } else if (key == "c") { return Keys.C; } else if (key == "d") { return Keys.D; } } </code></pre> http://stackoverflow.com/questions/1749768/hibernate-map-collection-with-constant-key 1 Hibernate map collection with constant key Zenon 2009-11-17T15:45:05Z 2009-11-18T20:04:44Z <p>Hi,</p> <p>I'm trying to map a collection (of type map) using a foreign key and a fixed value as the key/mapping arguments.</p> <p>I have several tables of product types and a language table which holds stuff like product names and so on.</p> <p>Now let's say we have an Accessory table which holds (obviously) accessories, then the name of an accesory is stored in the language table with language.id = accessory.id and language.type='accessory'. The map-key should be the language.lang field, a language-code string.</p> <p>Now, no matter what I've tried, I just can't get the "language.type='accessory'" part right, doesn't like multiple key element, which in turn wouldn't allow elements anyways.</p> <p>I've also tried it with a composite component as foreignKey, with the constant set by default, but that didn't really work either:</p> <pre><code>&lt;class name="AccessoryTypes" table="accessorytypes"&gt; &lt;id name="id" column="id" type="java.lang.Long" unsaved-value="0"&gt; &lt;generator class="identity"&gt;&lt;/generator&gt; &lt;/id&gt; &lt;map name="Name" table="ProductCode"&gt; &lt;key column="CompositeId" /&gt; &lt;map-key column="Language" type="string" /&gt; &lt;one-to-many class="ProductCode" /&gt; &lt;/map&gt; &lt;/class&gt; &lt;class name="Language" table="Language"&gt; &lt;composite-id name="compositeId" class="languageKey"&gt; &lt;key-property name="Type"&gt;&lt;/key-property&gt; &lt;key-property name="Id"&gt;&lt;/key-property&gt; &lt;/composite-id&gt; &lt;property name="Lang" type="string"&gt;&lt;/property&gt; &lt;property name="Value"&gt;&lt;/property&gt; &lt;/class&gt; </code></pre> <p>of course with the appropriate classes. This approach gives no error, but doesn't fill the HashMap of the Accessory class either...</p> <p>any help would be appreciated, thanks.</p> <p>[edit] I now tried it with property-ref as ziodberg suggested, first with a not with like this:</p> <pre><code>&lt;class name="AccessoryTypes" table="accessorytypes"&gt; &lt;id name="id" column="id" type="java.lang.Long" unsaved-value="0"&gt; &lt;generator class="identity"&gt;&lt;/generator&gt; &lt;/id&gt; &lt;properties name="CompositeId" &gt; &lt;property name="id" /&gt; &lt;property name="Type" formula="'accessory'" /&gt; &lt;/properties&gt; &lt;map name="Name" table="ProductCode"&gt; &lt;key property-ref="CompositeId" /&gt; &lt;map-key column="Language" type="string" /&gt; &lt;one-to-many class="ProductCode" /&gt; &lt;/map&gt; &lt;/class&gt; </code></pre> <p>and</p> <pre><code>&lt;class name="com.swissclick.wesco.web.model.ProductCode" table="ProductCode"&gt; &lt;composite-id class="com.swissclick.wesco.web.model.ProductCodeKey" mapped="true"&gt; &lt;key-property name="Type"&gt;&lt;/key-property&gt; &lt;key-property name="id"&gt;&lt;/key-property&gt; &lt;/composite-id&gt; &lt;property name="Language" type="string"&gt;&lt;/property&gt; &lt;property name="Value"&gt;&lt;/property&gt; &lt;/class&gt; </code></pre> <p>but this doesn't work, either, it gives </p> <pre><code>org.hibernate.MappingException: collection foreign key mapping has wrong number of columns: AccessoryTypes.Name type: component[Id,Type] </code></pre> <p>which doesn't turn up any helpful information on google.</p> <p>any ideas?</p> http://stackoverflow.com/questions/1742018/somewhat-simple-php-array-intersection-question 0 Somewhat simple PHP array intersection question Lachlan McDonald 2009-11-16T12:51:30Z 2009-11-16T13:33:20Z <p>Maybe I'm going insane, but I could have sworn that there was an PHP core function which took two arrays as arguments:</p> <pre><code>$a = array('1', '3'); $b = array('1'=&gt;'apples', '2'=&gt;'oranges', '3'=&gt;'kiwis'); </code></pre> <p>And performs an intersection where the values from array <code>$a</code> are checked for collisions with the keys in array <code>$b</code>. Returning something like</p> <pre><code>array('1'=&gt;'apples', '3'=&gt;'kiwis'); </code></pre> <p>Does such a function exist (which I missed in the documentation), or is there a very optimized way to achieve the same thing?</p> http://stackoverflow.com/questions/1550273/counting-all-the-keys-pressed-and-what-they-are-python 0 Counting all the keys pressed and what they are (python) terabytest 2009-10-11T09:34:38Z 2009-11-04T12:00:01Z <p>I'd like to create a map of the number of presses for every key for a project I'm working on.</p> <p>I'd like to do this with a Python module. Is it possible to do this in any way?</p> http://stackoverflow.com/questions/1670006/acceptable-types-to-use-as-keys-in-a-hashtable 5 Acceptable types to use as keys in a HashTable Dan 2009-11-03T20:39:51Z 2009-11-03T21:23:39Z <p>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 conventional wisdom is to use simple, basic value types such as integers for the keys in a HashTable. However, strings are also often used, even though in many languages they are implemented as reference types. What I feel is generally <em>not</em> encouraged is using complex reference types; I'm guessing this is because doing so would necessitate a slower hash function? But then why are strings so commonly used? After all, isn't a string internally a char[] array (again, in most languages)?</p> <p>In the end, what value types are generally regarded as the "best" (or even simply "acceptable") choices to use as keys in a HashTable? And are there any commonly used choices that are actually regarded as "bad" (like strings, possibly)?</p> http://stackoverflow.com/questions/271355/what-installation-key-software-is-well-suited-for-visual-basic-or-c-apps 0 What installation key software is well suited for Visual Basic or C# apps? Anonymous 2008-11-07T06:03:56Z 2009-10-29T17:00:04Z <p>So I am getting ready to wrap up another project in VB and C# (written in Visual Studio 2008). Now I want to have the software only run in full version mode if the user enters a valid registration key (like xxxx-xxxx-xxxx-xxxx). What software are the guru's on this list using to manage the registration key generation and integration with the application once sold to the end user?</p> <p>Feedback is much appreciated.</p> http://stackoverflow.com/questions/232228/whats-the-best-method-to-use-store-encryption-keys-in-mysql 3 What's the best method to use / store encryption keys in MySQL Chris Kloberdanz 2008-10-24T01:43:14Z 2009-10-28T11:51:41Z <p>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 certainly store the key in a file and control the permissions of that file and the permissions of the application that accesses it, but is that enough? I could also create a web service to get the key or something.</p> <p>I am in a small shop where I would be the only one (possibly one other person) that would have access to the machine that the application was on. <strong>Edit: I should add that there is a web facing part of this application that would need to decrypt the data unless I added a tier.</strong> </p> <p>I have looked ad nauseum, but no one seems to have a bulletproof answer.</p> <p>Is this one of those problems where you have to settle for good enough? Given that I am using MySQL and PHP (possibly Python) is there a better way to approach this?</p> http://stackoverflow.com/questions/1307204/c-how-to-generate-unique-public-and-private-key-via-rsa 3 C# How to Generate Unique Public and Private Key via RSA David Murdoch 2009-08-20T16:03:33Z 2009-10-27T14:45:18Z <p>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).</p> <p>I want to use the RSACryptoServiceProvider class.</p> <p>Here is my code to create my keys.</p> <pre><code>public static void AssignNewKey(){ const int PROVIDER_RSA_FULL = 1; const string CONTAINER_NAME = "KeyContainer"; CspParameters cspParams; cspParams = new CspParameters(PROVIDER_RSA_FULL); cspParams.KeyContainerName = CONTAINER_NAME; cspParams.Flags = CspProviderFlags.UseMachineKeyStore; cspParams.ProviderName = "Microsoft Strong Cryptographic Provider"; rsa = new RSACryptoServiceProvider(cspParams); string publicPrivateKeyXML = rsa.ToXmlString(true); string publicOnlyKeyXML = rsa.ToXmlString(false); // do stuff with keys... } </code></pre> <p>Now the plan is to store the private key xml on a USB drive attached to the managers key chain.</p> <p>Whenever a manager leaves the company I want to be able to generate new public and private keys (and re-encrypt all currently stored CC numbers width the new public key).</p> <p>My problem is that the keys generated by this code are always the same. How would I generate a unique set of keys every time?</p> <p><strong>UPDATE.</strong> My test code is below.:<br /> <em>note: the "privatekey" parameter here is the original private key. In order for the keys to be changed I need to verify that the private key is valid.</em></p> <p>In Default.aspx.cs</p> <pre><code>public void DownloadNewPrivateKey_Click(object sender, EventArgs e) { StreamReader reader = new StreamReader(fileUpload.FileContent); string privateKey = reader.ReadToEnd(); Response.Clear(); Response.ContentType = "text/xml"; Response.End(); Response.Write(ChangeKeysAndReturnNewPrivateKey(privateKey)); } </code></pre> <p>In Crytpography.cs:</p> <pre><code>public static privateKey; public static publicKey; public static RSACryptoServiceProvider rsa; public static string ChangeKeysAndReturnNewPrivateKey(string _privatekey) { string testData = "TestData"; string testSalt = "salt"; // encrypt the test data using the exisiting public key... string encryptedTestData = EncryptData(testData, testSalt); try { // try to decrypt the test data using the _privatekey provided by user... string decryptTestData = DecryptData(encryptedTestData, _privatekey, testSalt); // if the data is successfully decrypted assign new keys... if (decryptTestData == testData) { AssignNewKey(); // "AssignNewKey()" should set "privateKey" to the newly created private key... return privateKey; } else { return string.Empty; } } catch (Exception ex) { return string.Empty; } } public static void AssignParameter(){ const int PROVIDER_RSA_FULL = 1; const string CONTAINER_NAME = "KeyContainer"; CspParameters cspParams; cspParams = new CspParameters(PROVIDER_RSA_FULL); cspParams.KeyContainerName = CONTAINER_NAME; cspParams.Flags = CspProviderFlags.UseMachineKeyStore; cspParams.ProviderName = "Microsoft Strong Cryptographic Provider"; rsa = new RSACryptoServiceProvider(cspParams); } public static void AssignNewKey() { AssignParameter(); using (SqlConnection myConn = new SqlConnection(Utilities.ConnectionString)) { SqlCommand myCmd = myConn.CreateCommand(); string publicPrivateKeyXML = rsa.ToXmlString(true); privateKey = publicPrivateKeyXML; // sets the public variable privateKey to the new private key. string publicOnlyKeyXML = rsa.ToXmlString(false); publicKey = publicOnlyKeyXML; // sets the public variable publicKey to the new public key. myCmd.CommandText = "UPDATE Settings SET PublicKey = @PublicKey"; myCmd.Parameters.AddWithValue("@PublicKey", publicOnlyKeyXML); myConn.Open(); myComm.ExecuteScalar(); } } public static string EncryptData(string data2Encrypt, string salt) { AssignParameter(); using (SqlConnection myConn = new SqlConnection(Utilities.ConnectionString)) { SqlCommand myCmd = myConn.CreateCommand(); myCmd.CommandText = "SELECT TOP 1 PublicKey FROM Settings"; myConn.Open(); using (SqlDataReader sdr = myCmd.ExecuteReader()) { if (sdr.HasRows) { DataTable dt = new DataTable(); dt.Load(sdr); rsa.FromXmlString(dt.Rows[0]["PublicKey"].ToString()); } } } //read plaintext, encrypt it to ciphertext byte[] plainbytes = System.Text.Encoding.UTF8.GetBytes(data2Encrypt + salt); byte[] cipherbytes = rsa.Encrypt(plainbytes, false); return Convert.ToBase64String(cipherbytes); } public static string DecryptData(string data2Decrypt, string privatekey, string salt) { AssignParameter(); byte[] getpassword = Convert.FromBase64String(data2Decrypt); string publicPrivateKeyXML = privatekey; rsa.FromXmlString(publicPrivateKeyXML); //read ciphertext, decrypt it to plaintext byte[] plain = rsa.Decrypt(getpassword, false); string dataAndSalt = System.Text.Encoding.UTF8.GetString(plain); return dataAndSalt.Substring(0, dataAndSalt.Length - salt.Length); } </code></pre> http://stackoverflow.com/questions/621649/python-and-random-keys-of-21-char-max 0 Python and random keys of 21 char max coulix 2009-03-07T10:36:54Z 2009-10-14T17:03:44Z <p>Hello,</p> <p>I am using an api which takes a name of 21 char max to represent an internal session which has a lifetime of around "two days". I would like the name not to be meaningfull using some kind of hasing ? md5 generates 40 chars, is there something else i could use ?</p> <p>For now i use 'userid[:10]' + creation time: ddhhmmss + random 3 chars.</p> <p>Thanks,</p> http://stackoverflow.com/questions/1557112/home-end-delete-pageup-pagedown-with-ksh 1 home, end, delete, pageup, pagedown with ksh Nicolas 2009-10-12T21:44:37Z 2009-10-13T06:36:14Z <p>Hello.</p> <p>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 ~)</p> <p>I found this:</p> <pre><code>bind '^[[3'=prefix-2 bind '^[[3~'=delete-char-forward bind '^[[1'=prefix-2 bind '^[[1~'=beginning-of-line bind '^[[4'=prefix-2 bind '^[[4~'=end-of-line </code></pre> <p>But when I set one bindkey, the last does not work anymore.</p> <p>How can I use these keys in ksh with a .kshrc ?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1545571/how-do-i-make-a-composite-key-with-sql-server-management-studio 0 how do I make a composite key with SQL Server Management Studio? mrblah 2009-10-09T19:09:03Z 2009-10-09T20:33:21Z <p>how do I make a composite key with SQL Server Management Studio?</p> <p>I want two INT columns to form the identity (unique) for a table</p> http://stackoverflow.com/questions/401538/is-there-a-site-to-manage-api-keys 1 Is there a site to manage API keys? Gooseman 2008-12-30T21:17:03Z 2009-09-30T23:58:30Z <p>I remember there was a third party site that did all the sign up, quotas and key generation for API keys. I can not remember the name, so wondering if anyone knows about it?</p> http://stackoverflow.com/questions/63090/surrogate-vs-natural-business-keys 14 Surrogate Vs. Natural/Business Keys Manrico Corazzi 2008-09-15T13:55:44Z 2009-09-28T18:39:41Z <p>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 business key field? Please, provide examples or proof to support your theory.</p> http://stackoverflow.com/questions/1487991/mysql-mapping-table-fk-constraints 1 Mysql mapping table FK constraints asker222 2009-09-28T16:24:37Z 2009-09-28T18:02:47Z <p>Hi,</p> <p>I'm experiencing some difficulties with foreign key constraints. I have three tables:</p> <pre><code>Features ID PK AUTO_INC Title VARCHAR Subscriptions ID PK AUTO_INC Title VARCHAR Subscriptionfeatures ID PK AUTO_INC feature_id INT (index) subscription_id INT (index) </code></pre> <p>When I have the following records</p> <pre><code>Features 1 Testfeature Subscriptions 1 Testsubscription </code></pre> <p>I can insert the following record in Subscriptionfeatures when defining a FK constraint as follows</p> <pre><code>ALTER TABLE subscriptionfeatures ADD CONSTRAINT FK_feature FOREIGN KEY (feature_id) REFERENCES features(id); Subscriptionfeatures x 1 1 =&gt; ok </code></pre> <p>But I can not insert the identical record when adding an ON DELETE CASCADE clause to the FK constraint, but i must admint i do not understand its reason for denial!</p> <pre><code>ALTER TABLE subscriptionfeatures ADD CONSTRAINT FK_feature FOREIGN KEY (feature_id) REFERENCES features(id) ON DELETE CASCADE; Subscriptionfeatures x 1 1 =&gt; fails </code></pre> <p>Any help on this would be greatly appreciated!</p> http://stackoverflow.com/questions/1477232/how-to-re-index-the-values-of-an-array-in-php 0 How to re-index the values of an array in PHP? Andrieux 2009-09-25T13:16:44Z 2009-09-25T21:28:09Z <pre><code>Array ( [id] =&gt; 3 [user_id] =&gt; 1 [clan_id] =&gt; 1 [date] =&gt; 2009-09-24 09:02:05 [skill1rank] =&gt; 1 [skill1lvl] =&gt; 2376 [skill1xp] =&gt; 1804229942 [skill2rank] =&gt; 53 [skill2lvl] =&gt; 99 [skill2xp] =&gt; 120510105 [skill3rank] =&gt; 5526 [skill3lvl] =&gt; 99 [skill3xp] =&gt; 21581237 [skill4rank] =&gt; 622 ... [skill21xp] =&gt; 38458116 [skill22rank] =&gt; 184 [skill22lvl] =&gt; 99 [skill22xp] =&gt; 22217059 [skill23rank] =&gt; 5267 [skill23lvl] =&gt; 99 [skill23xp] =&gt; 13396733 [skill24rank] =&gt; 101 [skill24lvl] =&gt; 99 [skill24xp] =&gt; 15724235 [skill25rank] =&gt; 903 [skill25lvl] =&gt; 99 [skill25xp] =&gt; 13373505 ) </code></pre> <p>I want to rename to the keys to <code>$array[0]</code>, <code>$array[1]</code>, etc. </p> <p>How would I go about that?</p> <p><hr /></p> <p>Thanks, Silentghost. Worked nicely. :)</p> http://stackoverflow.com/questions/1453896/how-to-identify-the-keyboard-keys-using-c 1 How to identify the keyboard keys using C# shyam 2009-09-21T10:42:14Z 2009-09-25T13:04:25Z <p>Hi,</p> <p>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 appreciated.</p> <p>Thanks Hougen for the solution. could you please suggest me should we include any Dlls to handle "Microsoft.Win32.SystemEvents.SessionSwitch" this event? And in which layer this code should reside. I guess it is in Business layer. Any sugeestion regading this?</p> http://stackoverflow.com/questions/1434867/multiple-modifier-keys-in-c 2 Multiple Modifier Keys in C# jsmith 2009-09-16T19:00:07Z 2009-09-16T19:08:04Z <p>I am betting this is a really simple question to answer, I just can't get such a simple thing to work.</p> <p>I use a keydown event to detect keys pressed and have several common key combination's to do various operations.</p> <pre><code>if (e.KeyCode == Keys.C &amp;&amp; e.Modifiers == Keys.Control &amp;&amp; e.Modifiers == Keys.Shift) { //Do work } else if (e.KeyCode == Keys.V &amp;&amp; e.Modifiers == Keys.Control) { //Paste } </code></pre> <p>For some reason or other the key combination where I am hitting ctrl+shift+c is not working. I have re ordered them, and placed it at the top thinking it might be interference from the ctrl+c, and even removed the ctrl+c to see if it was causing a problem. Yet it still does not work. I know it's probably something very simple, but can't quite grasp what it is. All of my 1 modifier + 1 key combination's work fine, as soon as I add a second modifier is when it seems to not work. </p> <p>Thank you in advance.</p> http://stackoverflow.com/questions/1419399/seckey-seckeyref-public-and-private-keys-and-store-not-store-in-keychain 0 __Seckey, SecKeyRef, public and private keys and store not store in KeyChain unknown (yahoo) 2009-09-14T02:02:46Z 2009-09-14T02:02:46Z <p>I would like to generate public and private key pairs and then store them in a private store, instead of the iphone's key chain. Is there a way to use to use the security apis on the IPhone to generate key pairs and not store them in the keychain? When I looked at the SecKeyRef it is an opaque pointer.</p> http://stackoverflow.com/questions/126100/how-to-efficiently-count-the-number-of-keys-properties-of-an-object-in-javascript 7 How to efficiently count the number of keys/properties of an object in JavaScript? mjs 2008-09-24T08:56:21Z 2009-08-26T17:23:45Z <p>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</p> <pre><code>var count = 0; for (k in myobj) if (myobj.hasOwnProperty(k)) count++; </code></pre> <p>Firefox provides a magic <code>__count__</code> property, but this isn't available in other implementations.</p> http://stackoverflow.com/questions/920481/arrow-keys-and-changing-controls-focus-hang-the-app 0 arrow keys and changing control's focus hang the app sthay 2009-05-28T11:50:01Z 2009-08-26T13:00:01Z <p>I have a usercontrol that contains a flowlayoutpanel (topdown flow) with a bunch of radiobuttons. The control exposes a CheckedChanged event that fires whenever one of the radiobuttons's check changed.</p> <p>My form contains the usercontrol and a textbox. I subscribe the the usercontrol's CheckedChanged event and depending on which radiobutton gets checked, I either disable the textbox or put a focus inside the textbox.</p> <p>All this works fine with mouseclick when changing the radiobutton's check state. However, this will hang indefinitely when using the arrow keys. I don't understand why the difference.</p> <p>Please help before I go crazy...</p> <p>The following are steps to reproduce the behavior I'm seeing:</p> <ol> <li>Create a usercontrol and drop a flowlayoupanel control and set its FlowDirection = TopDown. Then add two radiobuttons to the flowlayoutpanel.</li> <li><p>Provide an event handler in the usercontrol</p> <p>public event EventHandler CheckedChanged { add { radioButton2.CheckedChanged += value; } remove { radioButton2.CheckedChanged -= value; } }</p></li> <li><p>Create a windows form and drop the above user control. Add a textbox and set Enabled to False. Subscribe to the usercontrol's CheckedChanged event as followed</p> <pre><code> private void userControl11_CheckedChanged(object sender, EventArgs e) { textBox1.Select(); } </code></pre></li> <li><p>Run. Notice that if you use the mouse to click between the radiobuttons, thing works fine; but it will crash if you use the up/down arrow keys.</p></li> </ol> http://stackoverflow.com/questions/1182557/sql-server-migration-to-refactored-mysql-w-innodb-key-constraint-issues 0 SQL Server Migration To Refactored MySQL w/ InnoDB Key & Constraint Issues Gregory Kornblum 2009-07-25T17:25:27Z 2009-08-25T08:51:20Z <p>I am redeveloping a web application and its infrastructure originally using SQL Server 2005, ASP.NET &amp; Windows 2003 to a LAMMP (extra M for memcached of course) stack and since the schema is heavily refactored (with very good reason to do so) I must write a custom migration app. </p> <p>The problem is the InnoDB primary + foreign key constraints are hindering my ability to insert the data into its MySQL/InnoDB tables. I have already tried using DISABLE KEYS &amp; FOREIGN_KEY_CHECKS methods and temporarily removing the auto-increment on the primary with it either throwing an error when try to make one of these changes such as the DISABLE KEYS since it is unsupported in InnoDB or trying to remove the primary key assignment on a column in an empty table or the migration app throwing errors saying key already exists when entering a record when the table is empty. Is there anything else that can be done beyond this besides removing all keys first and putting them back afterwards (which I assume will give me hell too)?</p> <p>Thanks!</p> http://stackoverflow.com/questions/136734/key-presses-in-python 3 Key Presses in Python Unkwntech 2008-09-25T22:58:01Z 2009-08-15T19:16:47Z <p>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 would like to write something to do it for me, and the only thing I know well enough is Python.</p> <p>A better way to put it, I need to emulate a key press, I.E. not capture a key press.</p> <p>More Info (as requested): I am running windows XP and need to send the keys to another application.</p> http://stackoverflow.com/questions/1256502/is-perl-guaranteed-to-return-consistently-ordered-hash-keys 5 Is Perl guaranteed to return consistently-ordered hash keys? mazin k. 2009-08-10T18:39:57Z 2009-08-11T13:59:11Z <p>Given something like</p> <pre><code>foreach (keys %myHash) { ... do stuff ... } foreach (keys %myHash) { ... do more stuff ... } </code></pre> <p>Is Perl guaranteed to iterate over the keys in a consistent order if the hash is not altered?</p> http://stackoverflow.com/questions/1254227/how-to-fetch-array-keys-with-jquery 0 how to fetch array keys with jQuery? Stefan Konno 2009-08-10T10:49:07Z 2009-08-10T11:09:16Z <p>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 function called array_keys(); which takes the array as a parameter and gives you an array back with each key in each index.</p> <p>This is what I came up with, and it works... the only problem is that it seems so unefficent;</p> <pre><code>var foo = []; foo['alfa'] = "first item"; foo['beta'] = "second item"; for (var key in foo) { console.log(key); } </code></pre> <p>This will output;</p> <pre><code>alfa beta </code></pre> <p>But is there any predefined function for this, as in PHP or any other more effective way of getting this?</p> http://stackoverflow.com/questions/1232904/concatenating-dictionaries 4 Concatenating Dictionaries pythonicate 2009-08-05T12:22:03Z 2009-08-05T16:33:25Z <p>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. List_1[0] has corresponding data in List_2[0] and List_3[0], etc. I would like to turn these three lists into a dictionary inside a dictionary, with the values in List_1 being the primary keys. How do I do this while keeping everything in order?</p> http://stackoverflow.com/questions/1229173/surrogate-vs-natural-key-hard-numbers-on-performance-differences 2 surrogate vs natural key: hard numbers on performance differences? jcollum 2009-08-04T18:36:34Z 2009-08-05T00:29:29Z <p>There's a healthy debate out there between surrogate and natural keys: </p> <p><a href="http://stackoverflow.com/questions/1207983/in-general-should-every-table-in-a-database-have-an-identity-field-to-use-as-a-p">SO Post 1</a></p> <p><a href="http://stackoverflow.com/questions/63090/surrogate-vs-natural-business-keys">SO Post 2</a></p> <p>My opinion, which seems to be in line with the majority (it's a slim majority), is that you should use surrogate keys unless a natural key is completely obvious and guaranteed not to change. Then you should enforce uniqueness on the natural key. Which means surrogate keys almost all of the time. </p> <p>Example of the two approaches, starting with a Company table: </p> <p>1: Surrogate key: Table has an ID field which is the PK (and an identity). Company names are required to be unique by state, so there's a unique constraint there.</p> <p>2: Natural key: Table uses CompanyName and State as the PK -- satisfies both the PK and uniqueness.</p> <p>Let's say that the Company PK is used in 10 other tables. My hypothesis, with no numbers to back it up, is that the surrogate key approach would be much faster here. </p> <p>The only convincing argument I've seen for natural key is for a many to many table that uses the two foreign keys as a natural key. I think in that case it makes sense. But you can get into trouble if you need to refactor; that's out of scope of this post I think. </p> <p>Has anyone seen an article that compares <strong>performance differences</strong> on a set of tables that use <strong>surrogate keys</strong> <strong>vs.</strong> the same set of tables using <strong>natural keys</strong>? Looking around on SO and Google hasn't yielded anything worthwhile, just a lot of theorycrafting. </p> <p><hr /></p> <p><strong>Important Update</strong>: I've started building a <strong>set of test tables</strong> that answer this question. It looks like this: </p> <ul> <li>PartNatural - parts table that uses the unique PartNumber as a PK </li> <li>PartSurrogate - parts table that uses an ID (int, identity) as PK and has a unique index on the PartNumber </li> <li>Plant - ID (int, identity) as PK </li> <li>Engineer - ID (int, identity) as PK</li> </ul> <p>Every part is joined to a plant and every instance of a part at a plant is joined to an engineer. If anyone has an issue with this testbed, now's the time. </p> http://stackoverflow.com/questions/1212605/php-array-search-for-multiple-values 0 PHP - Array search for multiple values Jens Törnell 2009-07-31T13:42:19Z 2009-07-31T19:25:25Z <p>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.</p> <p>I need to get both keys from the duplicate values, in this case 0 and 2. The search result output as an array would be good.</p> <p>Is there a PHP function to do this or do I need to write some multiple loops to do it?</p> <pre><code>$list[0][0] = "2009-09-09"; $list[0][1] = "2009-05-05"; $list[0][2] = "2009-09-09"; $list[1][0] = "first-paid"; $list[1][1] = "1"; $list[1][2] = "last-unpaid"; echo array_search("2009-09-09",$list[0]); </code></pre> http://stackoverflow.com/questions/1184857/to-get-primary-and-foreign-keys-right-in-erd 0 To get primary and foreign keys right in ERD Masi 2009-07-26T15:35:03Z 2009-07-26T18:00:25Z <p>I read my notes and I am now unsure about the keys.</p> <p><strong>My logical diagram</strong></p> <p><img src="http://files.getdropbox.com/u/175564/db/db-11.png" alt="alt text" /></p> <p>This table should be in line with the following physical ERD</p> <p><img src="http://files.getdropbox.com/u/175564/db/db-22.png" alt="alt text" /></p> <p>I have only one foreign key in the table <code>Question</code>.</p> <p>I would like to know </p> <ul> <li>should the <code>question-id</code> and <code>question-tag</code> in the table <em>Question-tag-xref</em>, AND <code>question-id</code> and <code>answer</code> in the table <em>Answers</em> be also foreign keys?</li> </ul> http://stackoverflow.com/questions/1161612/normalize-the-case-of-array-keys-in-php 5 Normalize the case of array keys in PHP Alan Storm 2009-07-21T20:36:18Z 2009-07-21T21:04:30Z <p>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</p> <pre><code>$new = array(); foreach( $old as $key=&gt;$value) { $key = strToLower($key); if(!array_key_exists($key,$new) { $new[$key] = $value; } else { throw new Exception('Duplicate Key Encountered'); } } </code></pre> <p>but it seems like these should be a way to do this "in place". </p> <p><strong>Update</strong>: It looks like there is a built in, the not deceptively named yet somehow missed by me <code>array_change_key_case</code>. I'd still be interesting in seeing algorithmic approaches that would let you better handle what happens when you hit "duplicate" keys.</p>