Tagged Questions

0
votes
1answer
16 views

How can my Ruby “Time.now” timings be so low when my “ping” timings are so high?

I'm using MongoDB for the first time and trying to time its performance. I'm running ruby on a VirtualBox Ubuntu 9.10 guest with a Windows 7 64-bit host. MongoDB is on a remote …
2
votes
5answers
45 views

Ruby charting library?

I need to display some charts/graphs based upon user inputs on my web aplication built using Ruby on Rails. Are there any charting libraries out there that I could use with ROR for …
0
votes
1answer
36 views

Method definition without a name in Ruby on Rails

I recently looked at sample code for a controller in a rails project which included a method definition in a class without defining the name of the method like so: def begin red …
0
votes
1answer
28 views

How do I convert coordinates to google friendly coordinates

I need to do this.. <coordinates_east>6'01.4</coordinates_east> <coordinates_north>45'05.5</coordinates_north> I need to convert to this google friendly …
0
votes
1answer
36 views

For what kind of Applications Ruby or Groovy are better choice ?

What kind of Applications are suited mostly for Ruby or Groovy ? Alternatively what problems are better addressed by programming languages like Ruby or Groovy ?
-2
votes
1answer
47 views

Converting degree/minutes/seconds to decimal degrees

I'm asking this question in a different way, another user let me know what I need to ask for, I'm basically looking to convert to "decimal degrees". The conversion of course must b …
2
votes
1answer
17 views

Array#split behaviour when accessing beyond the array boundry.

An irb session is following: >> ar = [:peanute, :butter, :and, :jelly] => [:peanute, :butter, :and, :jelly] >> ar[0, 1] => [:peanute] >> ar[4, 1] => [] …
0
votes
0answers
22 views

Ruby on Rails Internationalization

Hey, I try to make my config/locals organized in directories like the app directory. I can not get this to work... Here http://guides.rubyonrails.org/i18n.html says you have to act …
2
votes
2answers
50 views

How do I modify an array while I am iterating over it in Ruby?

I'm just learning Ruby so apologies if this is too newbie for around here, but I can't work this out from the pickaxe book (probably just not reading carefully enough). Anyway, if …
0
votes
3answers
32 views

Converting Unformatted String Of Objects Into An Array

I simply want to convert a string like this: str = "tree dog orange music apple" Into an array like this: arr = ["tree", "dog", "orange", "music", "apple"] I tried going down …
0
votes
2answers
112 views

Python equivalent of ruby’s __method__?

I want to be able to do this: def asdf(): print __method__ "asdf" Thanks, Noah
0
votes
2answers
30 views

Automatically require a class when running / starting ruby.

I am doing some monkey patching in some of Ruby classes and I would like that to be included AUTOMATICALLY whenever I run ruby. For example: I added the method trim to String. I …
0
votes
2answers
29 views

How to set Default format for activerecord fields of type string?

Here's an easy one: How do I go about setting the default format for a string field in ActiveRecord? I've tried the following: def phone_number_f "...#{phone_number}format_her …
3
votes
2answers
41 views

Using Sinatra and MongoDB - what’s the recommended way to “keep alive” the mongodb connection between http requests?

I've used ASP.NET and now I'm working on a Sinatra/MongoDB app. With ASP.NET architecture, the connection to the database a given request uses comes from a pool of connections th …
1
vote
6answers
159 views

Effective Interpreted Programming Language for File/Image manipulation

I need to make a script to read images from a directory, rename them, resize them to a MAX_HEIGHT, MAX_WIDTH, put a watermark logo and save them in JPG. I was thinking on doing th …

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