Fred: So you don't worry that it's possible for someone to send out a biological or electronic trigger that effectively overrides your own sense of ideals and values and replaces them with an alternative coercive agenda that reduces you to a mindless meat puppet? Shopkeeper: Wow. People used to think that I was paranoid.

'Time Bomb'


Buffistas Building a Better Board  

Do you have problems, concerns or recommendations about the technical side of the Phoenix? Air them here. Compliments also welcome.

To-do list


Karl - Jun 07, 2004 12:52:54 pm PDT #7904 of 10000
I adore all you motherfuckers so much -- PMM.

tommyrot -- The Unix command 'vmstat' will give you status information (including CPU usage), one line every 5 seconds by default. 'man vmstat' for more details. It'll do what you want.


Karl - Jun 07, 2004 12:53:41 pm PDT #7905 of 10000
I adore all you motherfuckers so much -- PMM.

Stuttering 'Post message' button. My fault; nothing to see here.


tommyrot - Jun 07, 2004 12:55:42 pm PDT #7906 of 10000
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

Oh goody!

The cool thing about Unix is, if you thing that there should be a certain utility, usually there is.


Tom Scola - Jun 07, 2004 1:31:48 pm PDT #7907 of 10000
Remember that the frontier of the Rebellion is everywhere. And even the smallest act of insurrection pushes our lines forward.

System activity is already being logged (although maybe not with the degree of granuality you're looking for) via the "sar" command.


Sophia Brooks - Jun 08, 2004 6:27:55 am PDT #7908 of 10000
Cats to become a rabbit should gather immediately now here

Um--

Really small question.

At Home I use Opera on OS9

At Work I use safari on OSX

At work the font in the posting box is the same size as the font on the rest of the page and is verdana

At home the font in the posting box is miniscule and Courier. I am thinking this has more to do with my settings than the boards, but is there anything I can do to make the at home posting situation easier? Right now I view the posting box at 150% and then I can see what I post.


brenda m - Jun 08, 2004 9:18:18 am PDT #7909 of 10000
If you're going through hell/keep on going/don't slow down/keep your fear from showing/you might be gone/'fore the devil even knows you're there

At home the font in the posting box is miniscule and Courier.

Huh. Yesterday I cut and pasted a few lines from a post into an email and it kept coming up that way and resisting all attempts to change it. I finally had to paste into Word, strip the formatting, reset the font and text size, and then repaste into Outlook. Wherever that Courier came from, it wasn't letting go easily.


tommyrot - Jun 08, 2004 9:26:41 am PDT #7910 of 10000
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

I finally had to paste into Word, strip the formatting, reset the font and text size, and then repaste into Outlook.

It's a lot easier to past into Notepad. Notepad is text only, so anything you past there automatically gets all formatting removed. So just paste in to Notepad, and then copy the stuff you pasted into Notepad, then past that into Outlook, or whatever.

You could also create a new email as text only, and past into that.


brenda m - Jun 08, 2004 10:07:26 am PDT #7911 of 10000
If you're going through hell/keep on going/don't slow down/keep your fear from showing/you might be gone/'fore the devil even knows you're there

Yeah, I just happened to have Word open already so it was as easy to do it that way. But it's not a problem I've encountered before.

(As a test, I just copied your post into a blank email, and it automatically used my default font/size/color as usual.)


§ ita § - Jun 08, 2004 10:12:36 am PDT #7912 of 10000
Well not canonically, no, but this is transformative fiction.

MS products have a sometimes annoying sometimes useful habit of transferring a lot of extra stuff (formatting and the like) via the clipboard. I use a text editor as an intermediary, if Paste Special isn't an option.


tommyrot - Jun 08, 2004 11:44:01 am PDT #7913 of 10000
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

I think I have figured out why new threads start at post #2 (both here and on the PostgreSQL test site).

When a new post is added, it's written to the posts table with a value of 0 in the post_number field. Then a SELECT Count(post_number) FROM posts WHERE thread_id = current thread number is done. Then an UPDATE query is done, setting post_number = (the result of the Count) + 1.

But when the first post is added, a Count(post_number) =1, even though the post_number for that post=0. Then when the update query is run, one is added to the one, and the post_number of the first post is set to 2.

On the INSERT of the new post, can post_number be set to Null? If so, Count won't count it. (I don't remember if post_number allows Null.)

Also, if multiple posts hit the server at once, it might be possible for more than one append to happen before the update (where the post_number is set to its actual value) is run. That would explain why when the Natter thread is turned over, you might see post #s 9997, 9998, 9999, 10000, 10000, 10000, 10003, 10004.

I don't know of a simple solution to this problem for the MySQL version, but I think I know one for the PostgreSQL version. But perhaps this really isn't a significant issue...

(So far I've tried to make as few changes to the PHP code as possible.)