1
vote
5answers
67 views
Hash/key creation function for latitude longitude?
Hello,
I have blocks of data associated with latitude/longitude values. I'd like to create a lookup key/hash value from the latitude/longitude value so it can be used as a lookup …
4
votes
6answers
93 views
Is there any benefit to returning a hash constructed with dict rather than just using the curly braces syntax?
In some Python code I've read I keep noticing this code:
return dict(somekey=somevalue)
Does that have any benefit over:
return {somekey:somevalue}
I tend to say no, since bo …
3
votes
7answers
191 views
Is there a “good enough” hash function for the average programmer?
We are told that we should implement hashCode() for our classes but most people like me have no real idea of how to do this or what happens if we get it "wrong". For example I have …
0
votes
3answers
22 views
XSLT: Obtaining or matching hashes for base64 encoded data
I need to find a way to find a way to find the hash for the base64 encoded data in the XML node //note/resource/data, or somehow otherwise match it to the hash value in the node // …
1
vote
3answers
75 views
Hash function that maps similar inputs to similar outputs?
Is there a hash function where small changes in the input result in small changes in the output? For example, something like:
hash("Foo") => 9e107d9d372bb6826bd81d3542a419d6
ha …
1
vote
4answers
73 views
Assign multiple values to hash key in Ruby
For the sake of convenience I am trying to assign multiple values to a hash key in Ruby. Here's the code so far
myhash = { :name => ["Tom" , "Dick" , "Harry"] }
Looping throu …
2
votes
4answers
170 views
Why do I see my Perl hash as a fraction, like ‘28/64’?
Hi.
I'm trying to set key name in a hash to a string containig "/" symbols, for instance
$myshash{"/dev/shm"} = "shared memory";
But what I get is something like '28/64' and so …
0
votes
1answer
16 views
Ruby (RoR) XML to hash and then show in views
Hey.
I have some xml on server (http://server.com/my.xml). Here is the example:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE current PUBLIC "-//W3C//DTD XHTML 1.0 S …
0
votes
2answers
32 views
Generate hash from UIImage
I'm trying to compare two UIImages from the file system to see if they are the same. Obviously, I can't use NSObject's hash method, since this returns a hash of the object, and not …
0
votes
1answer
29 views
Concurrent modification whilst traversing a ruby Hash
Suppose you had this:
def wipeProduct(hash, nameToDelete)
hash.each do |i|
key = i[0]
productName = i[1].first
hash.delete(key) if productName==nameToDelete
end
…
3
votes
9answers
87 views
Optimizing word count
(This is rather hypothetical in nature as of right now, so I don't have too many details to offer.)
I have a flat file of random (English) words, one on each line. I need to writ …
4
votes
5answers
166 views
What is a good 64bit hash function in Java for textual strings?
I'm looking for a hash function that:
Hashes textual strings well (e.g. few collisions)
Is written in Java, and widely used
Bonus: works on several fields (instead of me concaten …
1
vote
2answers
52 views
Evernote export format (ENEX) to HTML, including pictures?
@Solved
The two subquestions I have created have been solved (yay for splitting this one up!), so this one is solved. I'll award the check mark to samjudson, since his answer was …
1
vote
2answers
56 views
Ruby 1.8 vs 1.9 - destructive reject! operator
Why does this work the way it does? I thought it had something to do with pass-by-reference/value, but that's not the case. Does it have something to do with the new block scopes?
…
6
votes
11answers
254 views
Storing encrypted passwords
My coworker and I are having a fist-fight civilized discussion over password security. Please help us resolve our differences.
One of us takes the viewpoint that:
Storing passwo …
