bluescreen

Programming, for all ages and all languages.
User avatar
BMW
Member
Member
Posts: 286
Joined: Mon Nov 05, 2012 8:31 pm
Location: New Zealand

Re: bluescreen

Post by BMW »

ss.png
While we are on the topic of calculators, whats the best calculator for ubuntu? Galculator has some annoying limitations...
Currently developing Lithium OS (LiOS).

Recursive paging saves lives.
"I want to change the world, but they won't give me the source code."
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: bluescreen

Post by Combuster »

BMW wrote:whats the best calculator for ubuntu? Galculator has some annoying limitations...
ghci :mrgreen:
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
fronty
Member
Member
Posts: 188
Joined: Mon Jan 14, 2008 5:53 am
Location: Helsinki

Re: bluescreen

Post by fronty »

BMW wrote:whats the best calculator for ubuntu? Galculator has some annoying limitations...
M-x calc in your loyal Emacs.
linguofreak
Member
Member
Posts: 510
Joined: Wed Mar 09, 2011 3:55 am

Re: bluescreen

Post 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.
Mikemk
Member
Member
Posts: 409
Joined: Sat Oct 22, 2011 12:27 pm

Re: bluescreen

Post 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.
Programming is 80% Math, 20% Grammar, and 10% Creativity <--- Do not make fun of my joke!
If you're new, check this out.
User avatar
dozniak
Member
Member
Posts: 723
Joined: Thu Jul 12, 2012 7:29 am
Location: Tallinn, Estonia

Re: bluescreen

Post by dozniak »

BMW wrote:While we are on the topic of calculators, whats the best calculator for ubuntu?
bc
Learn to read.
User avatar
Brynet-Inc
Member
Member
Posts: 2426
Joined: Tue Oct 17, 2006 9:29 pm
Libera.chat IRC: brynet
Location: Canada
Contact:

Re: bluescreen

Post by Brynet-Inc »

I like moo.
Image
Twitter: @canadianbryan. Award by smcerm, I stole it. Original was larger.
User avatar
BMW
Member
Member
Posts: 286
Joined: Mon Nov 05, 2012 8:31 pm
Location: New Zealand

Re: bluescreen

Post by BMW »

Brynet-Inc wrote:I like moo.
How do you compile it?
Currently developing Lithium OS (LiOS).

Recursive paging saves lives.
"I want to change the world, but they won't give me the source code."
User avatar
Brynet-Inc
Member
Member
Posts: 2426
Joined: Tue Oct 17, 2006 9:29 pm
Libera.chat IRC: brynet
Location: Canada
Contact:

Re: bluescreen

Post 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.
Image
Twitter: @canadianbryan. Award by smcerm, I stole it. Original was larger.
Post Reply