Tagged Questions

1
vote
2answers
28 views

Undefined values in hash and values() function in Perl

#!/usr/bin/perl use strict; use warnings; my %hash; undef($hash{"a"}); undef($hash{"b"}); print scalar values %hash; # i need here 0 print scalar keys %hash; # and here 2 thank you, guys!
0
votes
1answer
14 views

Trouble using hash function.

Hi all, I am implementing google's dense hash map in my C++ code. I want to use MurmurHash2 (http://murmurhash.googlepages.com/) as a hash function. But here's the problem. I have tried a lot but …
1
vote
2answers
34 views

Change hash without reload in jquery

Hello, I have the following code:- $('ul.questions li a').click(function(event) { $('.tab').hide(); $($(this).attr('href')).fadeIn('slow'); event.preventDefault(); window.location.hash = …
1
vote
4answers
88 views

Any value in salting an already “strong” password?

Is there any benefit in salting passwords for a strong, unique (not used for other applications by the user) password? Salting (as I am aware) protects against rainbow tables generated with a …
0
votes
2answers
71 views

Hash Object problem in C++

Hello, In some C++ program I have two classes - Abc and Xyz. The Abc class contains an integer member Foo, like in the following listing: class Abc { public: int Foo; Abc(int f) { Foo = f; …
0
votes
3answers
80 views

Restricting access to server to iPhone app

I'm building a client/server iPhone game, where I would like to keep third-party clients from accessing the server. This is for two reasons: first, my revenue model is to sell the client and give away …
0
votes
5answers
75 views

Create your own hash in PHP ?

Well, I need to save images with unique filenames and store the file names in the database. I used to do MD5 hash and save the image with the filename of value obtained by hash. However I would like …
12
votes
3answers
301 views

Hash table faster in C# than C++?

Here's a curiosity I've been investigating. The .NET Dictionary class performs ridiculously fast compared to the STL unordered_map in a test I keep running, and I can't figure out why. (0.5 seconds …
0
votes
2answers
73 views

Why is CakePHP hashing my password twice?

Hi, im Using CakePHPs standard Auth mechanism, but I have some problems with that. Everytime a user logges in the password got hashed twice. I have the Auth Component in the var $componets Array in …
3
votes
2answers
97 views

How can I use dispatch tables in Perl? [closed]

Possible Duplicate: How do I implement dispatch tables in Perl? I have a hash table that contains commands such as int(rand()) etc. How do I execute those commands?
1
vote
2answers
61 views

SimHash implementation in Java?

Has anyone come across a simhash function implemented in Java? I've already searched for it, but couldn't find anything.
3
votes
1answer
129 views

Why do I need asterisk before an array?

I have no idea if this is a Hash issue or an Array issue, but I don't figure out why asterisk (*) sign is required in the third example to get a hash filled with data. Without it, it outputs an empty …
1
vote
4answers
90 views

Do any common OS file systems use hashes to avoid storing the same content data more than once?

Many file storage systems use hashes to avoid duplication of the same file content data (among other reasons), e.g., Git and Dropbox both use SHA256. The file names and dates can be different, but as …
0
votes
3answers
24 views

How to implement session based “add to cart” function in Rails

Hi I have a problem implementing add to cart functionality in my rails e-commerce app. Here I am not talking about check out function. Just "add to cart". Items can be added to cart without requiring …
0
votes
4answers
105 views

C# getting unique hash from all objects

Hi I want to be able to get a uniqe hash from all objects. What more, in case of Dictionary<string, MyObject> foo I want the unique keys for: string MyObject Properties in MyObject …

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