Tagged Questions

0
votes
3answers
54 views

Ruby Array group and average by hour

We get our data from a sensor which records and stores data like hashes. At any time it measures a few stuff like that: {:temperature => 30, :pression => 100, :recorded_at => 14:34:23} …
1
vote
4answers
108 views

What is the proper syntax for storing an array into a Perl hash?

I'm creating a new object like this: TestObject->new(@array1, @array2) My new method looks like this: sub new { my $class = shift; my $self = {}; my $self->{Array1} = shift; my …
0
votes
1answer
64 views

Merging contents of array / hash (keys and contents) in Ruby

Arg! Someone replied with an answer, just as I edited the below! So I've put it back to what I had before. ** Original array setup ** myArray = [{"papers"=>[[1,2,3],[1,3,2]], "value"=>"1"}, …
0
votes
3answers
127 views

Populating an array of hashes with arrays of hashes

I am currently developing a piece of monitoring software that takes an input file of server names and ip addresses and creates a rudimentary database of information. I want to default some values as …
0
votes
1answer
113 views

Java (6) Hash & Array alternatives that behave more like their Ruby counterparts

Having been spoiled by ruby for so long, I now find myself having to do some Java development (Eclipse RCP). I'm wondering if anyone knows of alternatives to HashMap & ArrayList that have some of …
1
vote
2answers
214 views

How can I reference a hash with a variable name?

I have three hashes named %hash1, %hash2, %hash3. I need to reference each hash by variable and am not sure how to do it. #!/usr/bin/perl # Hashes %hash1, %hash2, %hash3 are populated with data. …
1
vote
4answers
90 views

Good numeric hashes

Hi, I'm looking to hash a string but I need the output to be an integer so I can't do md5. Do people here have any favorite numeric hashes that they might want to enlighten me with. I'm using PHP. …
2
votes
4answers
171 views

how can I simply merge a hash into a new one?

I have a simple hash like so { "1234" => "5", "2345" => "6" } How can I create a new hash with both the keys and values in side it? Like so: { key_id = "1234", value_id = "5" }, { key_id = …
2
votes
4answers
1k views

How can I sort a hash of hashes by key in Perl?

I want to sort a hash which actually has a hash as a value. For instance: my %hash1=( field1=>"", field2=>"", count=>0, ); my %hash2; $hash2{"asd"}={%hash1}; and I inserted lots …
3
votes
9answers
372 views

How can SHA encryption be possible? [closed]

Duplicate: Confused about hashes How can SHA encryption create unique 40 character hash for any string, when there are n infinite number of possible input strings but only a finite number of …
1
vote
1answer
356 views

Ruby/Rails 1&2: collection problem

Hey, I just began to learn ruby/rails. At the moment, I try to do an example of a german book "Praxiswissen Ruby on Rails", which is pretty old and written for Ruby on Rails 1. Anyway, I tried to do …
0
votes
2answers
106 views

How to get to my anonymous arrays?

The following code generates a list of average number of clients connected by subnet. Currently I have to pipe it through sort|uniq|grep -v HASH. Trying to keep it all in perl this doesn't work: …
4
votes
5answers
439 views

C# hashes

I'm new to C# How do i hash files with C# What is available ? (md5, crc, sha1, etc) Is there an interface i should inherit? Basically i want to checksum multiple files and store it in …