Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
What's your Ruby Number? (self.to_i)
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 70 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Hal Fulton  
View profile  
 More options Oct 24 2005, 10:20 pm
Newsgroups: comp.lang.ruby
From: Hal Fulton <hal9...@hypermetrics.com>
Date: Tue, 25 Oct 2005 11:20:28 +0900
Local: Mon, Oct 24 2005 10:20 pm
Subject: What's your Ruby Number? (self.to_i)
I offer this in the spirit of the old "purity test" and the
"nerdity test" that was derived therefrom.

Don't take it *too* seriously. All point weights are strictly
my opinion and are subject to change.

Version 1.0 follows... cut, paste, run. Or just cut and run.

Cheers,
Hal

def add(n)
   @sum += n
   puts "#{n} points  (#{@sum} total)"
   puts
end

def yorn
   print "(y/n): "
   ch = gets.chomp
   ch=='y' ? 1 : 0
end

@sum = 0

puts
puts "First, three background geek questions:"
puts

puts "How many degrees in computer science do you have?"
deg = gets.to_i
add(deg*4)

puts "In what year did your write your FIRST program in any language?"
fp = gets.to_i
div4 = ((Time.now.year - fp)/4.0).ceil
add(div4*1)

puts "How many years have you worked in a software-related job?"
yrs = gets.to_i
div4 = (yrs/4.0).ceil
add(div4*1)

puts "\n----------------------"
puts "And now the Ruby stuff:"
puts

puts "In what year did you start using Ruby? (4 digits)"
yr = gets.to_i
partial = Time.now.year - yr
add(partial*2)

puts "In what year did you start reading the list or newsgroup? (4 digits)"
yr = gets.to_i
partial = Time.now.year - yr
add(partial*4)

puts "How many (non-vaporware) entries do you have in RAA and/or Rubyforge?"
raa = gets.to_i
add(raa*1)

puts "How many Ruby conferences have you assisted in organizing? (US or other)"
conf = gets.to_i
add(conf*6)

puts "Have you assisted in forming a local user's group?"
local = yorn
add(local*2)

puts "At how many Ruby conferences have you made presentations?"
conf = gets.to_i
add(conf*6)

puts "How many Ruby conferences have you attended?"
conf = gets.to_i
add(conf*4)

puts "Now, some book questions."
puts "Translations and newer editions count separately..."
puts

puts "How many Ruby books list you as an author?"
book = gets.to_i
add(book*6)

puts "How many (other) Ruby books have you contributed to?"
book = gets.to_i
add(book*4)

puts "How many (other) Ruby books mention your name?"
book = gets.to_i
add(book*2)

puts "How many unique Ruby books do you own?"
books = gets.to_i
add(books*1)

puts "Do you own a domain name (with content) including the word 'ruby'?"
dom = yorn
add(dom*2)

puts "Approximately how many packages of yours are now in the core or stdlib?"
core = gets.to_i
add(core*1)

puts "Is your name Yukihiro Matsumoto?"
matz = yorn
add(matz*10)

puts "Is your name Dave Thomas or Guy Decoux?"
dave = yorn
add(dave*6)

puts "Is your name: Nobu Nokada, Shugo Maeda, or Minero Aoki?"
nobu = yorn
add(nobu*4)

puts "Do you know any Japanese?"
japan = yorn
add(japan*2)

puts "Is Japanese your first language?"
japan = yorn
add(japan*3)

puts "Have you ever written Ruby for pay?"
pay = yorn
add(pay*10)

puts "Estimate your total lines of Ruby code written."
loc = (gets.to_i/5000.0).ceil
add(loc*1)

puts "How many Ruby presentations have you made (outside RubyConf)?"
nconf = gets.to_i
add(nconf*4)

puts "How many of your Ruby packages have been downloaded >500 times?"
over500 = gets.to_i
add(over500*3)

puts "Ever had an RCR accepted?"
rcr = yorn
add(rcr*5)

puts "That's all... your Ruby Geek status is measured at #@sum."
puts "Have a great day, and keep coding!"
puts


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Edward Gray II  
View profile  
 More options Oct 24 2005, 11:10 pm
Newsgroups: comp.lang.ruby
From: James Edward Gray II <ja...@grayproductions.net>
Date: Tue, 25 Oct 2005 12:10:20 +0900
Local: Mon, Oct 24 2005 11:10 pm
Subject: Re: What's your Ruby Number? (self.to_i)
On Oct 24, 2005, at 9:20 PM, Hal Fulton wrote:

> I offer this in the spirit of the old "purity test" and the
> "nerdity test" that was derived therefrom.

> Don't take it *too* seriously. All point weights are strictly
> my opinion and are subject to change.

> Version 1.0 follows... cut, paste, run. Or just cut and run.

Wow, I'm probably the lowest rated guy here:

"That's all... your Ruby Geek status is measured at 535.
Have a great day, and keep coding!"

Well Hal, you certainly helped me fill out my list of, "I should do  
that!"s...

James Edward Gray II


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Britt  
View profile  
 More options Oct 24 2005, 11:44 pm
Newsgroups: comp.lang.ruby
From: James Britt <jame...@neurogami.com>
Date: Tue, 25 Oct 2005 12:44:07 +0900
Local: Mon, Oct 24 2005 11:44 pm
Subject: Re: What's your Ruby Number? (self.to_i)
James Edward Gray II wrote:

I came in at 124.  I should probably get involved in some high-volume
Ruby stuff, try to be more active or something.  Or get another CS degree.

James Britt

--

http://www.ruby-doc.org - The Ruby Documentation Site
http://www.rubyxml.com  - News, Articles, and Listings for Ruby & XML
http://www.rubystuff.com - The Ruby Store for Ruby Stuff
http://www.jamesbritt.com  - Playing with Better Toys


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Joe Van Dyk  
View profile  
 More options Oct 25 2005, 12:18 am
Newsgroups: comp.lang.ruby
From: Joe Van Dyk <joevan...@gmail.com>
Date: Tue, 25 Oct 2005 13:18:21 +0900
Local: Tues, Oct 25 2005 12:18 am
Subject: Re: What's your Ruby Number? (self.to_i)
On 10/24/05, James Edward Gray II <ja...@grayproductions.net> wrote:

phhbt.. I got 29 and I've worked on Ruby stuff about full-time for a
little over a year.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Yukihiro Matsumoto  
View profile  
 More options Oct 25 2005, 1:25 am
Newsgroups: comp.lang.ruby
From: Yukihiro Matsumoto <m...@ruby-lang.org>
Date: Tue, 25 Oct 2005 14:25:33 +0900
Local: Tues, Oct 25 2005 1:25 am
Subject: Re: What's your Ruby Number? (self.to_i)
Hi,

In message "Re: What's your Ruby Number?  (self.to_i)"
    on Tue, 25 Oct 2005 11:20:28 +0900, Hal Fulton <hal9...@hypermetrics.com> writes:

|I offer this in the spirit of the old "purity test" and the
|"nerdity test" that was derived therefrom.
|
|Don't take it *too* seriously. All point weights are strictly
|my opinion and are subject to change.

|Version 1.0 follows... cut, paste, run. Or just cut and run.

It gave me 500 Ruby Number.

                                                        matz.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Shannon Fang  
View profile  
 More options Oct 25 2005, 1:57 am
Newsgroups: comp.lang.ruby
From: "Shannon Fang" <xrf...@hotmail.com>
Date: Tue, 25 Oct 2005 14:57:38 +0900
Local: Tues, Oct 25 2005 1:57 am
Subject: Re: What's your Ruby Number? (self.to_i)
I got 534, higher than matz... hahahhah.

Shannon


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Britt  
View profile  
 More options Oct 25 2005, 2:06 am
Newsgroups: comp.lang.ruby
From: James Britt <jame...@neurogami.com>
Date: Tue, 25 Oct 2005 15:06:36 +0900
Local: Tues, Oct 25 2005 2:06 am
Subject: Re: What's your Ruby Number? (self.to_i)

Shannon Fang wrote:
> I got 534, higher than matz... hahahhah.

Well, matz needs to get some code into the standard lib.

James, 124

--

http://www.ruby-doc.org - The Ruby Documentation Site
http://www.rubyxml.com  - News, Articles, and Listings for Ruby & XML
http://www.rubystuff.com - The Ruby Store for Ruby Stuff
http://www.jamesbritt.com  - Playing with Better Toys


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
nobuyoshi nakada  
View profile  
 More options Oct 25 2005, 2:50 am
Newsgroups: comp.lang.ruby
From: nobuyoshi nakada <nobuyoshi.nak...@ge.com>
Date: Tue, 25 Oct 2005 15:50:53 +0900
Local: Tues, Oct 25 2005 2:50 am
Subject: Re: What's your Ruby Number? (self.to_i)
Hi,

At Tue, 25 Oct 2005 11:20:28 +0900,
Hal Fulton wrote in [ruby-talk:162393]:

> I offer this in the spirit of the old "purity test" and the
> "nerdity test" that was derived therefrom.

143 for me.

--
Nobu Nakada


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Robert Klemme  
View profile  
 More options Oct 25 2005, 3:00 am
Newsgroups: comp.lang.ruby
From: "Robert Klemme" <bob.n...@gmx.net>
Date: Tue, 25 Oct 2005 09:00:04 +0200
Local: Tues, Oct 25 2005 3:00 am
Subject: Re: What's your Ruby Number? (self.to_i)

nobuyoshi nakada wrote:
> Hi,

> At Tue, 25 Oct 2005 11:20:28 +0900,
> Hal Fulton wrote in [ruby-talk:162393]:
>> I offer this in the spirit of the old "purity test" and the
>> "nerdity test" that was derived therefrom.

> 143 for me.
>> robert.to_i

=> 42 - 1

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jacob Quinn Shenker  
View profile  
 More options Oct 25 2005, 3:16 am
Newsgroups: comp.lang.ruby
From: Jacob Quinn Shenker <jqshen...@gmail.com>
Date: Tue, 25 Oct 2005 16:16:35 +0900
Local: Tues, Oct 25 2005 3:16 am
Subject: Re: What's your Ruby Number? (self.to_i)

> jacob.to_i #=> warning: in @sum+=n, @sum may be too big

:p

On 10/25/05, Robert Klemme <bob.n...@gmx.net> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Damphyr  
View profile  
 More options Oct 25 2005, 4:13 am
Newsgroups: comp.lang.ruby
From: Damphyr <damp...@freemail.gr>
Date: Tue, 25 Oct 2005 17:13:09 +0900
Local: Tues, Oct 25 2005 4:13 am
Subject: Re: What's your Ruby Number? (self.to_i)

Phew, I got 48 and when I saw James' (Gray) mail complaining about his
"low" 535 I was soooo sure you can't go lower than 40 something.
Probably helps I get payed to write Ruby code for more than a year now :).
Oh and Hal, those questions about the conferences, are not fair:
RubyConf is too far away and as for Euroko, last year they changed the
dates on me and this year, well as I said, I get paid to write code...;)
V.-

--
http://www.braveworld.net/riva

____________________________________________________________________
http://www.freemail.gr - äùñåÜí õðçñåóßá çëåêôñïíéêïý ôá÷õäñïìåßïõ.
http://www.freemail.gr - free email service for the Greek-speaking.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Burt  
View profile  
 More options Oct 25 2005, 5:08 am
Newsgroups: comp.lang.ruby
From: "Dave Burt" <d...@burt.id.au>
Date: Tue, 25 Oct 2005 09:08:26 GMT
Local: Tues, Oct 25 2005 5:08 am
Subject: Re: What's your Ruby Number? (self.to_i)

>>> robert.to_i
> => 42 - 1

Maybe you could try the test again, and increase your LOC estimate by 5000
or so...

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Robert Klemme  
View profile  
 More options Oct 25 2005, 7:43 am
Newsgroups: comp.lang.ruby
From: "Robert Klemme" <bob.n...@gmx.net>
Date: Tue, 25 Oct 2005 13:43:34 +0200
Local: Tues, Oct 25 2005 7:43 am
Subject: Re: What's your Ruby Number? (self.to_i)

Dave Burt wrote:
>>>> robert.to_i
>> => 42 - 1

> Maybe you could try the test again, and increase your LOC estimate by
> 5000 or so...

LOL No way: I forgot the other answers... :-))

    robert


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jason Sweat  
View profile  
 More options Oct 25 2005, 7:56 am
Newsgroups: comp.lang.ruby
From: Jason Sweat <jason.sw...@gmail.com>
Date: Tue, 25 Oct 2005 20:56:42 +0900
Local: Tues, Oct 25 2005 7:56 am
Subject: Re: What's your Ruby Number? (self.to_i)
On 10/24/05, Hal Fulton <hal9...@hypermetrics.com> wrote:

> puts "That's all... your Ruby Geek status is measured at #@sum."
> puts "Have a great day, and keep coding!"
> puts

2 ** 5

~ 1 year or ruby dabling

Regards,
Jason
http://blog.casey-sweat.us/


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jim Freeze  
View profile  
 More options Oct 25 2005, 10:11 am
Newsgroups: comp.lang.ruby
From: Jim Freeze <j...@freeze.org>
Date: Tue, 25 Oct 2005 23:11:40 +0900
Local: Tues, Oct 25 2005 10:11 am
Subject: Re: What's your Ruby Number? (self.to_i)
Wow, I came in at   251.

But that was skewed by the 120 pts
I got for the Ruby presentations I have made outside Rubyconf.
And the 100,000 LOC didn't help that much either. Maybe should
have made it 500,000.

--
Jim Freeze


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
mathew  
View profile  
 More options Oct 25 2005, 11:23 am
Newsgroups: comp.lang.ruby
From: mathew <m...@pobox.com>
Date: Tue, 25 Oct 2005 15:23:47 GMT
Local: Tues, Oct 25 2005 11:23 am
Subject: Re: What's your Ruby Number? (self.to_i)

Hal Fulton wrote:
> I offer this in the spirit of the old "purity test" and the
> "nerdity test" that was derived therefrom.

> Don't take it *too* seriously. All point weights are strictly
> my opinion and are subject to change.

Hmm, I thought it was going to be like Erdös numbers.

If you are matz, you have a Ruby number of 0.

If you've contributed patches to code written by matz, you have a Ruby
number of 1.

If you've worked on code with someone who has a Ruby number of 1, you
have a Ruby number of 2, and so on.

<URL:http://www.oakland.edu/enp/>

mathew
--
<URL:http://www.pobox.com/~meta/>
          WE HAVE TACOS


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christian Neukirchen  
View profile  
 More options Oct 25 2005, 12:22 pm
Newsgroups: comp.lang.ruby
From: Christian Neukirchen <chneukirc...@gmail.com>
Date: Wed, 26 Oct 2005 01:22:41 +0900
Local: Tues, Oct 25 2005 12:22 pm
Subject: Re: What's your Ruby Number? (self.to_i)

Hal Fulton <hal9...@hypermetrics.com> writes:
> I offer this in the spirit of the old "purity test" and the
> "nerdity test" that was derived therefrom.

> Don't take it *too* seriously. All point weights are strictly
> my opinion and are subject to change.

chris2.to_i # => 70

Probably too young, ;-)

--
Christian Neukirchen  <chneukirc...@gmail.com>  http://chneukirchen.org


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Nick Sieger  
View profile  
 More options Oct 25 2005, 12:43 pm
Newsgroups: comp.lang.ruby
From: Nick Sieger <nicksie...@gmail.com>
Date: Wed, 26 Oct 2005 01:43:31 +0900
Local: Tues, Oct 25 2005 12:43 pm
Subject: Re: What's your Ruby Number? (self.to_i)

On 10/25/05, Robert Klemme <bob.n...@gmx.net> wrote:

> > Maybe you could try the test again, and increase your LOC estimate by
> > 5000 or so...

> LOL No way: I forgot the other answers... :-))

You can try this mod which saves your answers (ruby vets feel free to
compact this even more):

=== start
require 'yaml'

@sum = 0
if File.exist?('ruby_number.yml')
File.open('ruby_number.yml') do |f|
@answers = YAML::load(f)
end
end
@answers ||= {}

def question(name)
@current = name
yield
end

def answer
puts "(Previous answer: #{@answers[@current]})" if @answers[@current]
reply = gets.chomp
@answers[@current] = reply if reply.length > 0
@answers[@current]
end

def add(n)
@sum += n
@answers[:total] = @sum
puts "#{n} points (#{@sum} total)"
puts
end

def yorn
print "(y/n): "
ch = answer
ch=='y' ? 1 : 0
end

puts
puts "First, three background geek questions:"
puts

question :compsci_degrees do
puts "How many degrees in computer science do you have?"
deg = answer.to_i
add(deg*4)
end

question :first_program_year do
puts "In what year did your write your FIRST program in any language?"
fp = answer.to_i
div4 = ((Time.now.year - fp)/4.0).ceil
add(div4*1)
end

question :software_job_years do
puts "How many years have you worked in a software-related job?"
yrs = answer.to_i
div4 = (yrs/4.0).ceil
add(div4*1)
end

puts "\n----------------------"
puts "And now the Ruby stuff:"
puts

question :started_with_ruby_year do
puts "In what year did you start using Ruby? (4 digits)"
yr = answer.to_i
partial = Time.now.year - yr
add(partial*2)
end

question :started_reading_newsgroup do
puts "In what year did you start reading the list or newsgroup? (4 digits)"
yr = answer.to_i
partial = Time.now.year - yr
add(partial*4)
end

question :raa_rubyforge_entries do
puts "How many (non-vaporware) entries do you have in RAA and/or
Rubyforge\?"
raa = answer.to_i
add(raa*1)
end

question :rubyconf_organize do
puts "How many Ruby conferences have you assisted in organizing? (US or
other)"
conf = answer.to_i
add(conf*6)
end

question :local_user_group do
puts "Have you assisted in forming a local user's group\?"
local = yorn
add(local*2)
end

question :rubyconf_presentations do
puts "At how many Ruby conferences have you made presentations\?"
conf = answer.to_i
add(conf*6)
end

question :rubyconf_attended do
puts "How many Ruby conferences have you attended\?"
conf = answer.to_i
add(conf*4)
end

puts "Now, some book questions."
puts "Translations and newer editions count separately..."
puts

question :ruby_books_authored do
puts "How many Ruby books list you as an author\?"
book = answer.to_i
add(book*6)
end

question :ruby_books_contributed_to do
puts "How many (other) Ruby books have you contributed to\?"
book = answer.to_i
add(book*4)
end

question :ruby_books_mention do
puts "How many (other) Ruby books mention your name\?"
book = answer.to_i
add(book*2)
end

question :ruby_books_owned do
puts "How many unique Ruby books do you own\?"
books = answer.to_i
add(books*1)
end

question :ruby_domain_name do
puts "Do you own a domain name (with content) including the word 'ruby'\?"
dom = yorn
add(dom*2)
end

question :packages_in_core_or_stdlib do
puts "Approximately how many packages of yours are now in the core or
stdlib\?"
core = answer.to_i
add(core*1)
end

question :matz do
puts "Is your name Yukihiro Matsumoto\?"
matz = yorn
add(matz*10)
end

question :dave_or_guy do
puts "Is your name Dave Thomas or Guy Decoux\?"
dave = yorn
add(dave*6)
end

question :nobu_shugo_or_minero do
puts "Is your name: Nobu Nokada, Shugo Maeda, or Minero Aoki\?"
nobu = yorn
add(nobu*4)
end

question :japanese do
puts "Do you know any Japanese\?"
japan = yorn
add(japan*2)
end

question :japanese_first_language do
puts "Is Japanese your first language\?"
japan = yorn
add(japan*3)
end

question :ruby_for_pay do
puts "Have you ever written Ruby for pay\?"
pay = yorn
add(pay*10)
end

question :ruby_loc_written do
puts "Estimate your total lines of Ruby code written."
loc = (answer.to_i/5000.0).ceil
add(loc*1)
end

question :ruby_presentations do
puts "How many Ruby presentations have you made (outside RubyConf)\?"
nconf = answer.to_i
add(nconf*4)
end

question :ruby_packages_downloaded do
puts "How many of your Ruby packages have been downloaded >500 times\?"
over500 = answer.to_i
add(over500*3)
end

question :rcr_accepted do
puts "Ever had an RCR accepted\?"
rcr = yorn
add(rcr*5)
end

puts "That's all... your Ruby Geek status is measured at #@sum."
puts "Have a great day, and keep coding!"
puts

File.open('ruby_number.yml', 'wb') do |f|
YAML::dump(@answers, f)
end

=== end

Oh, and I'm a ruby newb evidenced by my as yet low score of 15 :)

:ruby_books_authored: "0"
:started_with_ruby_year: "2005"
:ruby_for_pay: n
:ruby_domain_name: n
:rubyconf_organize: "0"
:first_program_year: "1982"
:ruby_packages_downloaded: "0"
:nobu_shugo_or_minero: n
:total: 15
:packages_in_core_or_stdlib: "0"
:ruby_books_contributed_to: "0"
:ruby_loc_written: "10000"
:local_user_group: n
:rcr_accepted: n
:japanese: n
:ruby_books_mention: "0"
:started_reading_newsgroup: "2005"
:matz: n
:rubyconf_presentations: "0"
:software_job_years: "10"
:ruby_books_owned: "0"
:raa_rubyforge_entries: "0"
:compsci_degrees: "0"
:dave_or_guy: n
:rubyconf_attended: "0"
:ruby_presentations: "1"
:japanese_first_language: n

Thanks Hal for the great icebreaker!

Cheers,
/Nick


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
rubyhac...@gmail.com  
View profile  
 More options Oct 25 2005, 1:07 pm
Newsgroups: comp.lang.ruby
From: rubyhac...@gmail.com
Date: 25 Oct 2005 10:07:05 -0700
Local: Tues, Oct 25 2005 1:07 pm
Subject: Re: What's your Ruby Number? (self.to_i)

> Wow, I'm probably the lowest rated guy here:

> "That's all... your Ruby Geek status is measured at 535.
> Have a great day, and keep coding!"

> Well Hal, you certainly helped me fill out my list of, "I should do
> that!"s...

Well, obviously I screwed up the test if anyone got higher
than Matz. I should have given 100 points for having that
name. :)

What inflated your score so much? Mine was only 184.

There's no error checking, of course. You can easily tell it
you have 250 years of programming experience. Just like it
says on your resume. Just kidding. ;)

<mumble>Heard about a recruiter looking for someone with
15 years of java experience...</mumble>

Hal


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lyle Johnson  
View profile  
 More options Oct 25 2005, 1:20 pm
Newsgroups: comp.lang.ruby
From: Lyle Johnson <lyle.john...@gmail.com>
Date: Wed, 26 Oct 2005 02:20:04 +0900
Local: Tues, Oct 25 2005 1:20 pm
Subject: Re: What's your Ruby Number? (self.to_i)
On 10/25/05, rubyhac...@gmail.com <rubyhac...@gmail.com> wrote:

> What inflated your score so much? Mine was only 184.

535 does sound awfully high. My score was a lowly 95.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Edward Gray II  
View profile  
 More options Oct 25 2005, 1:27 pm
Newsgroups: comp.lang.ruby
From: James Edward Gray II <ja...@grayproductions.net>
Date: Wed, 26 Oct 2005 02:27:30 +0900
Local: Tues, Oct 25 2005 1:27 pm
Subject: Re: What's your Ruby Number? (self.to_i)
On Oct 25, 2005, at 12:12 PM, rubyhac...@gmail.com wrote:

> What inflated your score so much? Mine was only 184.

> There's no error checking, of course. You can easily tell it
> you have 250 years of programming experience. Just like it
> says on your resume. Just kidding. ;)

Oops, it was exactly that error, yes.  The first date question  
doesn't warn you to enter 4 digits and I didn't.  Fixing it gives me:

"That's all... your Ruby Geek status is measured at 60.
Have a great day, and keep coding!"

And just to be clear, that does involve two not-yet-released books...

Sorry for the confusion.

James Edward Gray II


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
rubyhac...@gmail.com  
View profile  
 More options Oct 25 2005, 1:51 pm
Newsgroups: comp.lang.ruby
From: rubyhac...@gmail.com
Date: 25 Oct 2005 10:51:14 -0700
Local: Tues, Oct 25 2005 1:51 pm
Subject: Re: What's your Ruby Number? (self.to_i)

James Edward Gray II wrote:

> Oops, it was exactly that error, yes.  The first date question
> doesn't warn you to enter 4 digits and I didn't.  Fixing it gives me:

> "That's all... your Ruby Geek status is measured at 60.
> Have a great day, and keep coding!"

> And just to be clear, that does involve two not-yet-released books...

LOL, I feel better now. :) Except I should have made the code more
robust. But it's just a toy eh?

Can you talk about those not-yet-released books?? Not to violate
any confidentiality, but I'm curious... one is a collection of
Ruby Quizzes, right?

Hal


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Gregory Brown  
View profile  
 More options Oct 25 2005, 2:05 pm
Newsgroups: comp.lang.ruby
From: "Gregory Brown" <gregory.t.br...@gmail.com>
Date: 25 Oct 2005 11:05:18 -0700
Local: Tues, Oct 25 2005 2:05 pm
Subject: Re: What's your Ruby Number? (self.to_i)
gregory.to_i => 63

Attending RubyConf, writing BASIC back in '91, HighLine, and my user
group account for most of the points.

Not bad for ~ a year.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David A. Black  
View profile  
 More options Oct 25 2005, 2:14 pm
Newsgroups: comp.lang.ruby
From: "David A. Black" <dbl...@wobblini.net>
Date: Wed, 26 Oct 2005 03:14:15 +0900
Local: Tues, Oct 25 2005 2:14 pm
Subject: Re: What's your Ruby Number? (self.to_i)
Hi --

On Tue, 25 Oct 2005, Hal Fulton wrote:
> I offer this in the spirit of the old "purity test" and the
> "nerdity test" that was derived therefrom.

135.  The LOC was more or less a guess.  The number of Ruby
Conferences I've helped organized, however, is etched indelibly on my
mind :-)

David

--
David A. Black
dbl...@wobblini.net


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Edward Gray II  
View profile  
 More options Oct 25 2005, 2:16 pm
Newsgroups: comp.lang.ruby
From: James Edward Gray II <ja...@grayproductions.net>
Date: Wed, 26 Oct 2005 03:16:30 +0900
Local: Tues, Oct 25 2005 2:16 pm
Subject: Re: What's your Ruby Number? (self.to_i)
On Oct 25, 2005, at 12:52 PM, rubyhac...@gmail.com wrote:

> LOL, I feel better now. :) Except I should have made the code more
> robust. But it's just a toy eh?

I liked it.  It's the geeky equivelent of those getting to know you  
chain letters.

> Can you talk about those not-yet-released books??

Sure.

> one is a collection of Ruby Quizzes, right?

Yes, this is my book.  Best of Ruby Quiz.  I've really been pouring  
all my effort into this for almost a year now, so I'm really hoping  
you guys will like it.  I've added content and code, talked about  
more solutions, and even completely rewrote some of my summaries.  If  
you like following the quiz, the book is that and more, I think.

I've also contributed recipes to the Ruby Cookbook.  See recent  
thread here for details.

James Edward Gray II


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 70   Newer >
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google