Existing users, log in.  New users, create a free account.  Lost password?

Mac OS X  |  Home / Education  |  Math / Science  |  RubyCalc

RubyCalc

RubyCalc - 1.0.4

quick & handy calculator

All Time: (2.0)
This Version: (2.0)
Current Version: 1.0.4
Release Date: 2008-04-11
License: Freeware
Downloads (this version): 1,257
Downloads (all versions): 3,258

Information Related to Version:

Broken Link? Newer Version? Tell us!

Product Description:

Google can be used as a calculator really handier than the Calculator application of MacOS X.
But what if you are not connected to the Internet? Did you already need a quick, light, and free calculator able to :

  • use numbers arbitrarily long (more than 10 figures...) ?
  • type long expressions with parenthesis but without mistake ?
  • easily mix numbers in different basis (binary, decimal, hexadecimal...) ?

RubyCalc may be what you are looking for. It supplies an application with its service, and a widget.

Caution : Rubycalc is using the Ruby language to perform the computations. The Ruby language have some specificities that you should be aware of, otherwise you may not understand the results.

Examples:
  • Integer divisions : 5/2 = 2 (remaining 1 = 5%2); but 5/2.0 = 2.5
  • Power : 5^2 = 7 (binary exclusive OR operation) but 5**2 = 25 (power)

Please refere to a Ruby documentation if you have any doubt.

What's new in this version:

  • Fixed an incompatibility of the Widget with MacOS 10.5 Leopard;
  • Better handling of Service shortcut change.

Operating System Requirements:

This product is designed to run on the following operating systems:

  • Mac OS X 10.5 Intel
  • Mac OS X 10.5 PPC
  • Mac OS X 10.4 Intel
  • Mac OS X 10.4 PPC
  • Mac OS X 10.3.9

Additional Requirements:

  • MacOS 10.3.9 (10.4.3 for the widget)

Screenshots:

RubyCalc

Download Links:

Your Installed Versions:


 

Feedback Summary:

This Version:
Overall Rating: (2.0) Features: (1.0) Support: (2.0)
Ease of Use: (3.0) Quality / Stability: (2.0) Price: (3.0)
Add Your Feedback

Key to Types of Feedback:

ReviewsReviews   TroubleshootingTroubleshooting   Usage TipsUsage Tips   Developer NotesDeveloper Notes   CommentaryCommentary   Featured ReviewsFeatured Reviews

RubyCalc Reviewdoes not maintain state - Version: 1.0.4, 4/12/2008 08:02AM PST

(0 of 1 users found this comment useful)

Matt_Neuburg_865

Here's "irb" in the Terminal:

irb(main):001:0> x = 7
=> 7
irb(main):002:0> 4 * x
=> 28

Here's RubyCalc:

>> x = 7
=> 7
>> 4 * x
=> -:1: undefined local variable or method `x' for main:Object (NameError)

See? RubyCalc doesn't remember variable values. So if I wanted to use Ruby as a calculator, why wouldn't I just use "irb" in the Terminal?

Post a commentAlert Admin

Most Recent Replies: View All 1 Replies

RubyCalc Developer NoteCaution ! - Version: 1.0.4, 4/11/2008 06:52AM PST

(2 of 2 users found this comment useful)

emaNneercS
I add this note because I had many feedback of confused users :

Caution : Rubycalc is using the Ruby language to perform the computations. The Ruby language have some specificities that you should be aware of, otherwise you may not understand the results.
Examples:
Integer divisions : 5/2 = 2 (remaining 1 = 5%2); but 5/2.0 = 2.5
Power : 5^2 = 7 (binary exclusive OR operation) but 5**2 = 25 (power)

Please refere to a Ruby documentation if you have any doubt.
Post a commentAlert Admin