vote up 15 vote down star
9

There have been lots of times in the past where a good programmer-oriented calculator would've saved me a lot of time. Lately, I've been doing quite a lot of bit manipulation, and having to do build/run to debug my calculations feels really slow. I've looked for something like this in the past, but found nothing that worked very well. The only thing that comes close is this one from AnalogX, but I can't get it to work or really do anything on my vista box which is where I'm doing most of my work at the moment. (btw - please send comments about my vista usage here;).

Anyway, I'm looking for something for simple calculations using a C-like syntax with support for proper precenedce, operators, etc. Bonus points for cross-platform.

The python interpreter was a great idea and is totally cross-platform. For windows only SpeQ is amazing. Thanks for the suggestions.

flag

75% accept rate
May I suggest changing the link to "/dev/null", as it does lead to a website (developer.com). :) Maybe removing the "http://" would work, but I'm not sure as some browsers may insert it by default. – Hosam Aly Jan 9 '09 at 18:13

22 Answers

vote up 39 vote down check

Whenever I need calculator-type stuff I just fire up the python interpreter. In fact, the python tutorial has a chapter which uses its calculator-like functions to introduce the language. The startup time is about 2s on my old n' busted laptop.

EDIT: and since you are interested in bit manipulation, note that the built-in hex() function will spit out the argument represented in hexadecimal.

link|flag
very interesting - checking it out now. thanks – AdamC Oct 13 '08 at 18:16
+1 on using the python interpreter. – Aaron Maenpaa Oct 13 '08 at 18:21
cool - thanks. this works great. vista was fighting the installer, so I'm using it through my linux box. – AdamC Oct 13 '08 at 18:34
Python work great on my Vista 64 bits. – Daok Nov 15 '08 at 15:59
You could add that Python has binary literals: 0b101010 – J.F. Sebastian Jan 24 '09 at 4:31
show 2 more comments
vote up 0 vote down

PowerCalc is good if you are on Windows. It also has a nifty graphing ability.

link|flag
vote up 0 vote down

Use google!

2+2 = ?

link|flag
vote up 1 vote down

Just and FYI, it looks like there's been an update to AnalogX's pcalc that might fix the issues with running under Vista, so you might want to give it another try.

It's my favourite little quick and dirty calculator too (even managed to get it working under WINE!)

link|flag
thanks - I'll check it out. – AdamC Apr 10 at 17:27
vote up 0 vote down

One of the first things I download on a fresh install is SuperCalc from James Brown's (fantastic) site http://www.catch22.net/

It takes up literally no real estate and it works great for my purposes.

link|flag
vote up 0 vote down

I'm surprised that no one has mentioned Emacs Calc yet. Cross platform, built into my favorite editor, and easily handles anything I throw at it.

link|flag
vote up 1 vote down

I use Matlab. You can use it for almost anything. It's a bit heavier, but being able to call an optimization tool box quickly is nice.

link|flag
Matlab is the overlord of calculators! :) – MaSuGaNa Nov 6 at 9:12
vote up 0 vote down

I've used sage for a lot of this stuff (since it's essentially a python interpreter). There's even a free online version.

link|flag
vote up 2 vote down

Graphcalc is another option. There appears to be a Linux version also, but I haven't used it. Source code is provided for both editions.

link|flag
vote up 2 vote down

instacalc is an online calculator. It supports a lot of scientific/programmer calculations including the bitwise operations: and or xor not << >> (see the drop down box where it says Basic Math) and can do line/bar charts. And once you've got your calculation worked out it's easy to share.

link|flag
vote up 7 vote down

A few more calculator replacements that come to mind:

Ruby's irb module

irb is an interactive interpreter for the Ruby language.

irb(main):001:0> printf "%#08x\n", 0xdeadbeef & (~0<<16)
0xdead0000
=> nil
irb(main):002:0>

GDB (The GNU Project Debugger)

As suggested by JesperE, GDB has an interactive expression evaluator that supports C-like syntax.

(gdb) printf "%#08x\n", 0xdeadbeef & (~0<<16)
0xdead0000
(gdb)

WinDbg (The Windows Debugger)

Like GDB, the Debugging Tools for Windows debuggers (WinDbg, NTSD, etc.) have an interactive expression evaluator that supports C-like syntax. Unlike GDB, they are Windows-specific. Also unlike GDB, you have to choose something to debug, but opening up an ordinary EXE like notepad.exe as a crash dump (using the menu or the -z option) will let you use the expression evaluator without starting a new notepad process.

0:000> ?? 0xdeadbeef & (~0<<16)
unsigned int 0xdead0000
0:000>

GNU Octave

GNU Octave is an interpreted language for mathematical calculations. Its syntax isn't very C-like, but it has support for matrix math and graphing.

Microsoft Excel

For some situations, a spreadsheet is the best calculator replacement.

link|flag
vote up 0 vote down

For this kind of thing I use the Firebug console. For hex or (any other base), use number.toString(16)

link|flag
vote up 2 vote down

The PowerShell command prompt is an alternative to Python for the Windows .Net developer. Using the System.Math namespace, you have lots of functions to play with. Add in the PowerTab extensions and you have (almost) Intellisense as well.

A degree of portability is available via Pash (PowerShell open source reimplementation for "others" - Mac, Linux, Solaris, etc...)

link|flag
vote up 15 vote down

You may laugh (or downvote me into oblivion), but you can actually do logical operations (AND, OR, NOT, XOR) on numbers in binary, hex, etc. using the fantastic......Windows calculator!

link|flag
<DeadPanVoice>But that would not be geeky enough.</DeadPanVoice> – WolfmanDragon Oct 13 '08 at 19:11
I didn't buy a Microsoft Ergonomic keyboard for the application buttons (home, search, mail, etc.), and I find them to be mostly superfluous. However, I have to admit that I use the calculator button all of the time. – bk1e Oct 14 '08 at 5:37
Man, I use the Windows Calculator for stuff like this every day. And here I thought I was the only one! – Electrons_Ahoy Nov 17 '08 at 17:01
So do I - the View/Scientific option is a wonderful thing! – Software Monkey Dec 17 '08 at 19:12
2  
Windows 7's calc even has a "programmer" mode... – Aardvark Jan 9 '09 at 17:51
vote up 2 vote down

Speedcrunch springs to mind. Sadly, I don't think it lets you define functions in the normal input. But it supports variables and has a wide range of builtins.

If you want something more scientific/hard-core, there is always GNU Octave. Several windows ports can be found on wiki.octave.org.

Edit: typo

link|flag
vote up 3 vote down

For programmers I think Stack Oriented languages can be a great tool.

Several such languages let you use Reverse Polish Notation (RPN) for specifying accurate evaluation order without brackets.

Forth is one such language with several implementations and interactive interpreters for several platforms.

The downside of using it off-course is you cannot simply copy-paste the code into your programs in C like languages that use infix notation. But I think a simple function can be written in Forth to spit-out an infix formatted expression.

BTW, my personal favorites are spread sheet programs like MS Excel or Open Office Calc.

link|flag
vote up 2 vote down

If you want a calculator with C-like syntax and precedence, I'd recommend gdb (GNU Debugger).

link|flag
Why vote this down? This answer could use more explanation, but it's not fundamentally wrong or unhelpful. – bk1e Oct 14 '08 at 5:03
@bk1e: I agree; I really wish downvotes required you to add a reason (even an anonymous one). – Software Monkey Dec 17 '08 at 19:13
There is a uservoice ticket for this: stackoverflow.uservoice.com/pages/general/… – JesperE Dec 17 '08 at 19:25
vote up 3 vote down

Being a happy owner of first HP48G and now HP50g calculators, I came to love RPN and stack. The closest thing to such calculator that I've found on a PC is emacs calculator (bundled with emacs 22 or greater).

link|flag
vote up 9 vote down

I've been using SpeQ, might fit your needs:

http://www.speqmath.com/index.php?id=1

link|flag
This is really cool. thanks – AdamC Oct 13 '08 at 18:40
vote up 0 vote down

PCalc is what I use.

link|flag
vote up 8 vote down

I use "bc -l". Works on Linux, all flavours of Unix and Mac OS X.

link|flag
vote up 5 vote down

An interactive Python shell works great as a calculator. It has all of the usual operators, although instead of overflowing integers, it automatically converts overflowed calculations into longs (i.e. bignums).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.