Looks cool. So what are you using for a cd writer... is it internal/external? Just curious...
-chris
-chris
joerg wrote:glennmeyer wrote: I was using the Mozilla suite on IRIX until a few weeks ago, when somebody at SGI told me about Nekochan. I soon found foetz's builds of firefox and thunderbird, which I have already been using on other platforms because, well, firefox is better than IE, Safari, etc. Thanks, foetz! One thing I can't do yet in the foetz version of firefox is use "Send Link" to email a link by invoking Thunderbird, or create an e-mail button in the Firefox Toolbar. Can someone tell me how to install or enable this capability?
Thanks!
IIRC we already have a thread about the issue when someone clicking on an url in thunderbird and how to start FF than instead of old netscape or mozilla. The solution was to put some config value in the main configfile from thunderbird. I expect there is a similar for the other way too. When using 'about:config' in the address bar you can see a lot of settings. Maybe there is already one without the right value.
regards
Mare wrote: Sorry but am I the only one who thinks these post bars and titles are a bad idea?
I have seen many boards/forums that have ratings/titles/progress information for users and all they ever achieve is an increase in spam and pointless threads. I like the fact that there is a low amount of useless posts on nekochan and the Mods do a fantastic job at stopping cross posting and suspect threads from staying up too long.
But surely the introduction of these progress bars are just going to tempt people into posting for the sake of their profiles numbers.
There was a forum I used to visit a while back that had a massive problem with spam replies of nothing other than emoicons or quoting the above poster without adding anything. The fixed the problem by removing post counts and post level titles.
As usual its Nekos board and he can run it how he wants but do any these 'ohh my post count is higher' features of the phpBB really contribute to the usage of the board? The current back log of posts serve as an awesome collection of information for visitors.
Meh, just my oppinion
gtogl wrote: wow, many thanks for the code
btw: that's exactly how I determin the % under linux, simply parse /proc/stats, sleep a second, parse again, compute difference, compute percentage.
and I guess that's how f.e. "top" works, because top always needs that first second before all the values seem sane
edit: your code works like a charm. I am currently writing a little script to compute the cpu % (among other things) and display it on the L1 display of the bricks, as soon as I'm finished, I'm gonna post it here if anyone is interested
ShadeOfBlue wrote: If this is an LCD you're having problems with, then you might want to check if it has some sort of "Auto adjust" button or menu option.
Something similar to what you described seems to be quite common with LCDs connected via the analog port and the auto adjust fixes it almost always (use it more than once if it doesn't do the job the first time).
I have to do this once in a while with my LCD which is also connected to an Octane (MXE) and after that everything works fine.
dj wrote: Searching around, I found this:
cch.loria.fr/documentation/O2000/programmer/pdf/06chap1.pdf.gz
"Secondary cache lines are fixed in size at 32 words, or 128 bytes. Main memory page sizes are multiples of 4 KB, usually 16 KB."
The "usually" is kind of scary (a kernel configuration option?) but you should be able to double-check this. On my indigo2 the output of "sar -R" shows the physical memory to be 24576 pages. Assuming a page size of 16384 bytes: 24576 pages * 16384 bytes = 402653184 bytes / 1048576 = 384 megabytes. Which is what hinv shows.
Here's a csh one liner to print memory usge in megabytes for user programs:
echo "scale=10;"`sar -f sar.data -R | tail -1 | awk '{print $4}'`"*16384/1048576" | bc