The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
60 views

How to search through array elements for match in hash keys in perl

I've an array that contains unique IDs (numeric) for DNA sequences. I've put my DNA sequences in a hash so that each key contains a descriptive header, and its value is the DNA sequence. Each header ...
0
votes
0answers
13 views

How to delete hash of array of hashes completely

I have one hash of array of hashes,like below, I want to delete one key value of that array,but 'undef' is coming.wheather I can use pop or slice or other. After using data dumper it looks like, my ...
-2
votes
2answers
31 views

Argument is not numeric error while comparing hash values based on keys

#!/usr/bin/perl use strict; use Data::Dumper; use warnings; my @mdsum; open (IN1,"$ARGV[0]") || die "counldn't open"; open (MYFILE, '>>md5sum-problem.txt'); open (IN2, "mdsumfile.txt"); my ...
1
vote
2answers
55 views

Perl - Process string with IDs and corresponding values in quotation marks

I'm working on a Perl project where i have a lot of strings containing ids and corresponding values in quotation marks, seperated by semicolons. Example: main_id "1234567"; second_id "My_ID"; name ...
-1
votes
3answers
63 views

Perl string to telephone number

I'm attempting to take in a string such as "hi" and convert it to the corresponding numbers that one would need to type on a cellphone. So hi would be 44. I found a neat little javascript application ...
0
votes
4answers
48 views

Removing hashes that have identical values for particular keys

I have an Array of Hashes with the same keys, storing people's data. I want to remove the hashes that have the same values for the keys :name and :surname. The rest of the values can differ, so ...
0
votes
0answers
47 views

Mixing 1dimensional and 2 dimensional elements in an array / hash in Twig

In my CakePhp app, I can do this: php echo $this->Form->postLink( __('Delete'), array('action' => 'delete', $profile['Profile']['id']), null, __('Are you sure you want to delete # ...
-1
votes
1answer
49 views

print table to file from an array of hashes in ruby [closed]

I'd like to take the following array and output to a file.txt as a table. arr=[{:food=>"", :calories=>"Calories", :carbs=>"Carbs", :fat=>"Fat", :protein=>"Protein", ...
0
votes
1answer
57 views

Perl compare array values with values in a hash of arrays

This post has been updated based on comments and answer by DVK I have changed to using the 3-argument form of open and correctly pushed IDs into the array updated code below use warnings; use ...
-1
votes
1answer
56 views

Perl : retrieve array of hash from subroutine return 2 hashes [closed]

I have a subroutine which return two hashes and contains in key a ID and in value an ARRAY. So i would access with key to retrieve my array. sub sub1{ my code return (\%hash1, \%hash2); } sub sub2{ ...
0
votes
2answers
72 views

mysterious key come out of no where in Perl 5.14 hash table

I am using a hash table in my code my %stat = (); # read files and do some initialization # like $stat{$key} = {k1=>v1, k2=>v2, k3=>v3}; # I have located the buggy code # I want to do ...
0
votes
2answers
53 views

How to generate hash from subroutine?

I am trying to collect some snapshots of my db and do some math with it , but I'm failing to return my hash from my subroutine ... As you can see I have 2 hashes %dbmcfg,%bufsnap,%dbsnap I have ...
0
votes
4answers
104 views

How can I improve the efficiency of my domain-name-counting algorithm?

First I would like to apologize if this question has been asked. It is difficult to search for the answer w/o finding how to count an array of hash references My function receives the output from a ...
0
votes
1answer
45 views

Perl: Group input data by first field

I have a data file that contains an interface name and destination. I want to group all destinations by interface so that I can iterate through and store results. Here is an example of my output: ...
0
votes
2answers
127 views

Fastest and most effective way of comparing two array of hashes of different format

I have two arrays of hashes with the format: hash1 [{:root => root_value, :child1 => child1_value, :subchild1 => subchild1_value, bases => hit1,hit2,hit3}...] hash2 [{:path => ...
3
votes
1answer
116 views

Why is my perl hash not returning values?

I'm ingesting a CSV file: ...
0
votes
1answer
37 views

Forward/Backward Flag in Javascript

I m trying to control browser navigation buttons using hashes in my ajax dot net application. I need to setup a javascript flag which can store whether forward or back button was pressed..
-2
votes
1answer
58 views

How can you represent a 2D array of arbitrarily sized dimensions? [closed]

What are some good ways to represent a 2D array that extends in arbitrary length in both dimensions? Working in Ruby.
0
votes
1answer
101 views

Facebook using koala

I'm trying to come to grips with using Ruby on Rails and Facebook. I'm new to Rails and I've been having a really hard time understanding a lot of the other answers already here on StackOverflow. ...
1
vote
1answer
131 views

COUNT and SEARCH in REDIS hashes HMSET

REDIS experts please help. I want to count and search in redis hashes. My user data: | id | name | age | country | | 1 | jaspal | 32 | US | 2 | singh | 45 | UK | 4 | manjot | 24 | US | ...
1
vote
1answer
61 views

How to Store and Retrieve a Hash by an Array in Ruby

I want to build a hash that is used to store a directory. I want to have multiple levels of keys. At the match point, I want an array of files. It is like a directory structure on a computer. It seems ...
3
votes
1answer
275 views

Find values in array of hashes to create new array of hashes

I have some data returned from an api which I've parsed down to this: [{:a=>value1, :b=>value2, :c=>value3, :d=>value4}, {:a=>value5, :b=>value6, :c=>value7, ...
2
votes
4answers
87 views

Putting elements of arrays into array of hashes in Perl

Just for my own education, what are some neat ways to convert some arrays so that each one is associated with the key of a hash, and all those hashes end up in an array? To make things a bit clearer, ...
1
vote
1answer
42 views

Rails: accessing the values of columns selected with column_names

Any ideas what it takes to get this to work? I can't for the life of me figure it out. def get_prices(c) @print_prices = {} Billing.where(:name => c).column_names.each do |d| if ...
1
vote
4answers
91 views

Handling array of hashes

Given an array of Ruby hashes like this: [{"lib1"=>"30"}, {"lib2"=>"30"}, {"lib9"=>"31"}, {"lib2"=>"31"}, {"lib3"=>"31"}, {"lib1"=>"32"}, {"lib2"=>"32"}, {"lib1"=>"33"}, ...
0
votes
4answers
87 views

Using Multiple Hashes in PHP

Am working on a project & am keen to keep password-storage secure from the start. In the idea phase, but this is roughly what I intend to use. class Crypto { public function hash1($string, ...
1
vote
2answers
269 views

Remove keys in hash not in array

I can't find a way to remove keys from a hash that are not in a given array of key names. I read that I can use except or slice, but how can I feed them a list of the key names I want to keep? So for ...
-2
votes
1answer
107 views

accessing value in a hash of hashes

I'm having trouble accessing a hash value and I'm not sure what I'm doing wrong. I do some Perl but not much with hashes. I'm trying to access hash value in a hash of hashes. Here is where I build ...
0
votes
1answer
64 views

Sorting a hash by the value and then part of the key in Perl

I have a hash of names and ranks (keys) and a number (value) with the format: "\nName\nSecondName\nRank: 12345/150000" => 100 "\nThirdName\nFourthName\nRank: 24567/150000" => 71 ...
0
votes
0answers
96 views

Good books on how to implement hashes in C/C++? [closed]

I'm trying to learn how to implement and understand hashes in C/C++. I have gotten Bruce Schneier's Applied Crypto book which has some really nice C implementations (many of which are outdated btw but ...
2
votes
4answers
85 views

How to iterate over an array of hashes in an array of hashes

Lots of threads about iterating over an array of hashes, which I do daily. However now I want to iterate over an AoH in and AoH. I'm interested in the array "chapters" because I want to add a hash to ...
2
votes
2answers
81 views

Search through hash, if value is zero delete it in Perl

Hi I have some code as follows. I am trying to search through the hash and if I come across a value that is zero, I want to delete the whole key/value element. my %hashy = ( a => my $a, b ...
0
votes
1answer
54 views

Find items from the array of strings in array of hashes and proceed with the appropriate hashes

I have an array of links: array = [link1, link2, link3, link4] and array_of_hashes with two items: :names and :links hash = { :names, :links } e.g. array_of_hashes = [{ :names => name5, :links => ...
2
votes
3answers
454 views

ruby - group by repeating key of multiple hashes

I have the following array t = [ {nil => 1, 10 => 2, 16 => 4, 5=> 10}, {nil => 9, 5 => 2, 17 => 3, 10 => 2}, {10 => 4, 5 => 9, 17 => 1} ] how can I get this ...
0
votes
6answers
409 views

How to sort array of hashes by value?

I'm trying to sort an array of hashes based on the given key-value, and will return that value on top of the array first, then preceded by the remaining data. Example would be: students = [{name: ...
3
votes
4answers
224 views

How to match string in textbox with password in database row

I had a database field which stores passwords like this: TeacherPassword j.lu01 pesci02 cricket01 Now I have a textbox where the user enters in a password and if it matches with one of the rows ...
0
votes
2answers
82 views

How to UPDATE field to include hashes for password

At the moment I have a database field which stores passwords like this: TeacherPassword j.lu01 pesci02 cricket01 But I want to change the password field so that each row contains hashes for each ...
0
votes
2answers
104 views

Creating a hash of 100 things with random values for each value

I'm building a hash that has 100 items and I also have a random number generator that generates 100 random values between 0 and 100. I want to iterate through my numbers, 0..100 in consecutive order ...
0
votes
3answers
775 views

Trying to loop through items in a hash and return only certain ones

I have the following function that decodes a URL into a hash comprised of different pieces of the URL. For example, after the first line where I assign hash, I receive this output: >> ...
0
votes
1answer
59 views

PHP arrays - having an array as the key [closed]

I know using an array as a key in a hash (associative array) in php will cause problems. Something like this: $array[$nominee]=$nominations; where $nominee is an array itself. Its on a ...
3
votes
5answers
136 views

How can I idiomatically access the first element of a single element hash in Perl?

I have script that gets some data using DBI's fetchall_hashref(). Usually it returns a hash ref like the following: { 1 => { id => 1 } } However, I'm only interested in the value of the ...
0
votes
4answers
386 views

compare multiple hashes for common keys merge values

I have a working bit of code here where I am comparing the keys of six hashes together to find the ones that are common amongst all of them. I then combine the values from each hash into one value in ...
0
votes
1answer
319 views

How to avoid SQL injection in Rails 3

In my Controllers I'm using many find_by_sql() stuff, and to avoid SQL injection I'm building my SQL statements as hashes as follows Beneficiary.find_by_sql(["SELECT * FROM beneficiaries WHERE ...
1
vote
1answer
135 views

How to save each row of a database as a seperate data block file in a directory using perl?

Right now, I have a database with around 20 columns and 70 rows. I want to iterate through each row and save each row as a separate data block, with the file name being generated by the first three ...
5
votes
3answers
890 views

Copying values from one hash to another in perl

I have two hashes, one big and one small. All of the smaller hash's keys show up in the bigger hash too, but the value are different. I want to copy the values from the bigger hash to smaller hash. ...
0
votes
2answers
256 views

averaging values embedded in ruby hash

I have an embedded hash, for which i need to calculate averages. I've already grouped them, successfully, (from ungrouped) but finding the average isn't working for me Here is the example hash data ...
0
votes
2answers
1k views

perl hash of hashes or array of arrays example

How come I never see examples like these where you declare the hash, and then put then inside another hash? my %hash1={}; $hash1{'key1'}='1-111'; $hash1{'key2'}='1-222'; $hash1{'key3'}='1-333'; my ...
0
votes
0answers
186 views

How to change hashes key in Puppet without using a custom function?

Is it possible in Puppet to change hashes keys without calling a custom functions within a class or custom type? Pretty much calling regular ruby functions. $myHash.keys.each { |k| $myHash[k + ...
1
vote
1answer
140 views

Rails: dynamically assigning field type from a Hash

I am trying to use a hash to display a form : PREFIX_STR = "Prefix" FIRST_STR = "First Name" NEW_USER_HASH = Hash.new NEW_USER_HASH[ "prefix" ] = { "label" => PREFIX_STR, "type" => ...
2
votes
1answer
834 views

Redis Booksleeve - How to use Hash API properly

i am using the Booksleeve hash api for Redis. I am doing the following: CurrentConnection.Hashes.Set(0, "item:1", "priority", task.priority.ToString()); var taskResult = ...

1 2 3