bluescreen
Re: bluescreen
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."
Recursive paging saves lives.
"I want to change the world, but they won't give me the source code."
- Combuster
- 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
ghciBMW wrote:whats the best calculator for ubuntu? Galculator has some annoying limitations...
Re: bluescreen
M-x calc in your loyal Emacs.BMW wrote:whats the best calculator for ubuntu? Galculator has some annoying limitations...
-
- Member
- Posts: 510
- Joined: Wed Mar 09, 2011 3:55 am
Re: bluescreen
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
I think "bluescreen", "BSoD", "crash", "kernel panic", etc. are all generic terms for the same thing.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.
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>
That's nothing like the calculator present on my system.BMW wrote:While we are on the topic of calculators, whats the best calculator for ubuntu? Galculator has some annoying limitations...
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.
If you're new, check this out.
Re: bluescreen
bcBMW wrote:While we are on the topic of calculators, whats the best calculator for ubuntu?
Learn to read.
- Brynet-Inc
- Member
- Posts: 2426
- Joined: Tue Oct 17, 2006 9:29 pm
- Libera.chat IRC: brynet
- Location: Canada
- Contact:
Re: bluescreen
I like moo.
Re: bluescreen
How do you compile it?Brynet-Inc wrote:I like moo.
Currently developing Lithium OS (LiOS).
Recursive paging saves lives.
"I want to change the world, but they won't give me the source code."
Recursive paging saves lives.
"I want to change the world, but they won't give me the source code."
- Brynet-Inc
- Member
- Posts: 2426
- Joined: Tue Oct 17, 2006 9:29 pm
- Libera.chat IRC: brynet
- Location: Canada
- Contact:
Re: bluescreen
BSD yacc and lex/flex are needed, bison won't work.BMW wrote:How do you compile it?
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