Tagged Questions

9
votes
6answers
922 views

Random Python dictionary key, weighted by values

hello, I have a dictionary where each key had a list of variable length, eg: d = { 'a': [1, 3, 2], 'b': [6], 'c': [0, 0] } Is there a clean way to get a random dictionary key, weighted by the …
7
votes
6answers
463 views

implementation for product keys

Hi there, I'm implementing a small application in C, which I would like to sell as shareware for a reasonable price later on. It will start of with a 30-day trial, which I am already quite certain of …
6
votes
8answers
86 views

Records linked to any table?

Hi Im struggling a bit with this and could use some ideas... Say my database has the following tables ; Customers Supplers SalesInvoices PurchaseInvoices Currencies etc etc I would like to be able …
5
votes
5answers
4k views

make an ID in a mysql table auto_increment (after the fact)

I acquired a database from another developer. He didn't use auto_incrementers on any tables. They all have primary key ID's, but he did all the incrementing manually, in code. Can I turn those into …
5
votes
5answers
1k views

How to check for key being held down on startup in Java

I'm trying to write a resolution selection dialog that pops up when a program first starts up. To prevent boring the user, I want to implement the fairly standard feature that you can turn off that …
4
votes
1answer
81 views

Using javascript to scroll iFrame up and down

Hi, Is it possible to scroll the iframe window from the parent window using keys or javascript? The iframe content is from another domain different from the parent window. KM
4
votes
4answers
500 views

What dotnet collection class’s items can be enumerated in “addition order” and retrieved via a key?

I'm lead to believe that I cannot count on the order of items added to a dictionary for enumeration purposes. Is there a class (generic if possible) to which items may be added with a key and which …
4
votes
4answers
594 views

Easy mysql question regarding primary keys and an insert

In mysql, how do I get the primary key used for an insert operation, when it is autoincrementing. Basically, i want the new autoincremented value to be returned when the statement completes. Thanks! …
3
votes
2answers
53 views

Handling foreign key exceptions in PHP

What is the best way in PHP to handle foreign key exceptions on a mysql database? Is there a mysql class that can be used to simplify any code? Ideally, what I want to do, as an example, is to try to …
3
votes
4answers
284 views

Mysql auto increment primary key id’s

I have some mysql tables that have auto incrementing id's that are primary keys, but I notice that I never actually use them... I used to think that every table must have a primary key so I guess that …
3
votes
3answers
291 views

C# Plugin Architecture with Strong Names: A Misunderstanding

I have a server executable that talks to Active Directory to retrieve user information. In addition to AD, this exe allows customers to write their own plugins to talk to custom user directories. …
3
votes
4answers
178 views

Cryptography: best practices for keys in memory?

Background: I got some data encrypted with AES (ie symmetric crypto) in a database. A server side application, running on a (assumed) secure and isolated Linux box, uses this data. It reads the …
3
votes
4answers
201 views

Is the primary key automatically indexed in MySQL?

Do you need to explicitly create this or is it implicit when define the primary key? Is the answer the same for MyISAM and InnoDB?
3
votes
1answer
113 views

URL-Based API Key Restriction: How does validation works?

Hi, I am interested to know how an URL-based api key restriction works, such as the one used by Google to protect its Google Maps service. From what I understand from this article "Restricting …
3
votes
3answers
226 views

Mysql Index Being Ignored

EXPLAIN SELECT * FROM content_link link STRAIGHT_JOIN content ON link.content_id = content.id WHERE link.content_id = 1 LIMIT 10; …

1 2 3 4 5 11 next
15 30 50 per page