Page 2 of 2

Re: bluescreen

Posted: Thu Jun 13, 2013 3:11 am
by BMW
ss.png
While we are on the topic of calculators, whats the best calculator for ubuntu? Galculator has some annoying limitations...

Re: bluescreen

Posted: Thu Jun 13, 2013 3:54 am
by Combuster
BMW wrote:whats the best calculator for ubuntu? Galculator has some annoying limitations...
ghci :mrgreen:

Re: bluescreen

Posted: Thu Jun 13, 2013 4:04 am
by fronty
BMW wrote:whats the best calculator for ubuntu? Galculator has some annoying limitations...
M-x calc in your loyal Emacs.

Re: bluescreen

Posted: Thu Jun 13, 2013 10:18 am
by linguofreak
Wait, this doesn't add up. First the OP says "bluescreen", then he says "Ubuntu 12.04". Last I knew, Linux kernel panics used white text on a black background.

Re: bluescreen

Posted: Sat Jun 15, 2013 12:29 am
by Mikemk
linguofreak wrote:Wait, this doesn't add up. First the OP says "bluescreen", then he says "Ubuntu 12.04". Last I knew, Linux kernel panics used white text on a black background.
I think "bluescreen", "BSoD", "crash", "kernel panic", etc. are all generic terms for the same thing.

Secondly, you're right, except I think it's grey text (could be wrong). Would you like me to change the text in the OP?</sarcasm>
BMW wrote:While we are on the topic of calculators, whats the best calculator for ubuntu? Galculator has some annoying limitations...
That's nothing like the calculator present on my system.

PS, I'm considering making a programming calculator (common ones sometimes just don't cut it, especially in this field). Whether or not I do remains to be seen.

Re: bluescreen

Posted: Sun Jun 16, 2013 5:39 pm
by dozniak
BMW wrote:While we are on the topic of calculators, whats the best calculator for ubuntu?
bc

Re: bluescreen

Posted: Sun Jun 16, 2013 6:11 pm
by Brynet-Inc
I like moo.

Re: bluescreen

Posted: Sun Jun 16, 2013 10:37 pm
by BMW
Brynet-Inc wrote:I like moo.
How do you compile it?

Re: bluescreen

Posted: Mon Jun 17, 2013 6:59 pm
by Brynet-Inc
BMW wrote:How do you compile it?
BSD yacc and lex/flex are needed, bison won't work.

Code: Select all

$ yacc -d moo.y && mv y.tab.c moo.c
$ lex scan.l && mv lex.yy.c scan.c
$ gcc moo.c scan.c -o moo
The included Makefile is for BSD make, which probably won't be useful if you're not running BSD.