Search Results

2
votes

Remove subdomain from string in ruby

Something like: def remove_subdomain(host) # Not complete. Add all root domain to regexp host.sub(/.*?([^.]+(\.com|\.co\.uk|\.uk|\.nl))$/, "\\1") end puts remove_subdomain( …
2
votes

How would you represent a relational entity as a single unit of retrievable data in BerkeleyDB?

You can always serialize (called marshalling in Ruby) the data as a string and store that instead. The serialization can be done in several ways. With YAML (advantage: human readable, multi …
3
votes

What kind of memory reclamation algorithm does MRI Ruby 1.8 use?

The garbage collector Ruby 1.8 is actually quite awful. Every 7Mb of allocation it will perform a mark phase from all root objects and try to find which can be reached. Those that cannot be reached …
2
votes

ruby hashes

The question is not completely clear, but I think you want to have a list (array) of hashes, right? In that case, you can just put them in one array, which is like a list in Java: …
0
votes

Returning data from forked processes

The fork communication between two Unix processes is mainly the return code and nothing more. However, you could open a filedescriptor between the two processes and pass data between the processes …
8
votes

Parsing a String in Ruby (Regexp?)

You could do it with a regexp, or just do it in Ruby: myarray = str.split(",").map { |el| type, id = el.split(" ") {:type => type, :id => id } } No …
2
votes

Enable dropping a file onto a Ruby script

The behavior of drag & drop is dependent on the OS (and in case of Linux of the Window Manager), so no. In Windows, you get the behavior you want for free. Just put a .rb file on the De …
0
votes

Inspect with limited recursion

No, you might want to use either prettyprint module for a 'different' visualisation (require 'pp'; pp object) or write something yourself. To write a generic dumper is quite difficult since everyon …
0
votes

How to delete last line of file in Ruby?

The easiest way is just to read the whole file, remove the '\n' at the end, and rewrite it all with your own content: filename = "imcs2.xml" content = File.open(filename, "rb") { |i …
2
votes

Listing subclasses doesn’t work in Ruby script/console?

subclasses is overridden and made protected in base.rb. See …
1
vote

How to compute one’s complement using Ruby’s bitwise operators ?

Ruby just stores a (signed) number. The internal representation of this number is not relevant: it might be a FixNum, BigNum or something else. Therefore, the number of bits in a number is also und …