Re: How big a flashrom for a minimal freebsd install?

2006-07-28 Thread Matti J. Karki
On 7/28/06, Chris T. <[EMAIL PROTECTED]> wrote: I"m toying with the idea of setting up a mini-itx server so I can move the dns and firewall daemons off of the fileserver so I can turn it off. I'm thinking I want to get a flashrom ide adaptor so that I can swap setups on the thing by swapping car

Re: need help troubleshooting man

2006-08-02 Thread Matti J. Karki
On 8/1/06, Jonathan Horne <[EMAIL PROTECTED]> wrote: i remember a thread from a few weeks back, that i followed closely, but was never able to resolve my issue as the original poster did. i have a 6.1-STABLE system that the bulk of my mans to not work, but some that are recently installed from p

Re: need help troubleshooting man

2006-08-03 Thread Matti J. Karki
On 8/3/06, Jonathan Horne <[EMAIL PROTECTED]> wrote: > I managed to get this kind of situation by installing first the > "minimal set" (or "distribution") and then installing everything else > from the ports. The minimal installation set does not have man pages. > To get small - but fully functio

Re: Accessing FreeBSD partition from Windows with dual boot

2006-08-10 Thread Matti J. Karki
On 8/10/06, Svein Halvor Halvorsen <[EMAIL PROTECTED]> wrote: Martin Miedema wrote: > I'm looking for a way to access (read only is fine) a FreeBSD partition > on my Windows installation on a dual boot notebook (so Samba won't do > the trick) Maybe this will do: http://ffsdrv.sourceforge.net/ I

Problems with recording

2006-08-23 Thread Matti J. Karki
Hi! I tried to find some information about this issue via Google and it seems that I'm not only one having this problem, but there was no clear solution available. So... I try to use microphone for recording. The sound card (Conexant AC-Link Audio) works otherwise correctly, but when trying to

Re: Problems with recording

2006-08-23 Thread Matti J. Karki
On 8/24/06, Danny Pansters <[EMAIL PROTECTED]> wrote: On Wednesday 23 August 2006 22:37, Matti J. Karki wrote: > Mixer vol is currently set to 55:55 > Mixer pcm is currently set to 48:48 > Mixer speaker is currently set to 0:0 > Mixer line is currently set to 0:0 > Mixer mi

Re: Code beautifiers, anyone?

2006-08-24 Thread Matti J. Karki
On 8/24/06, Kyrre Nygård <[EMAIL PROTECTED]> wrote: I'm looking for the best ways to create a line of code beautification (reformatting) scripts -- one for C, one for Ruby, one for Bash and one for web development languages like XHTML, XML, CSS, PHP and Ajax. Whether as frontline warriors or hou

Re: Code beautifiers, anyone?

2006-08-24 Thread Matti J. Karki
On 8/24/06, Kyrre Nygård <[EMAIL PROTECTED]> wrote: Perhaps you could share with us whatever scripts you've written? Thanks! Well, my scripts aren't magic. They are pretty simple. Here's few (not scripts, these are valid Vim regexps): :%s/).*\n.*{/) {/g :%s/) *{/) {/g :%s/\t//g :%s/^

Re: Code beautifiers, anyone?

2006-08-24 Thread Matti J. Karki
On 8/24/06, Kyrre Nygård <[EMAIL PROTECTED]> wrote: Perhaps you could share with us whatever scripts you've written? Totally forgot to include the actual intendation script. There should be a Python script attached to this mail. Please note, that the script is not a silver bullet! It was des

Re: Code beautifiers, anyone?

2006-08-24 Thread Matti J. Karki
On 8/25/06, David Kelly <[EMAIL PROTECTED]> wrote: On Aug 24, 2006, at 5:00 PM, Matti J. Karki wrote: > On 8/24/06, Kyrre Nygård <[EMAIL PROTECTED]> wrote: >> >> Perhaps you could share with us whatever scripts you've written? >> > > Totally for

Re: Code beautifiers, anyone?

2006-08-25 Thread Matti J. Karki
On 8/25/06, W. D. <[EMAIL PROTECTED]> wrote: At 17:00 8/24/2006, Matti J. Karki wrote: >On 8/24/06, Kyrre Nygård <[EMAIL PROTECTED]> wrote: >> >> Perhaps you could share with us whatever scripts you've written? >> > >Totally forgot to include the act

Re: Code beautifiers, anyone?

2006-08-25 Thread Matti J. Karki
On 8/25/06, Kyrre Nygård <[EMAIL PROTECTED]> wrote: In your script, do these comments look alright then? (I simplified them a bit) inbuffer = re.sub('\) *?\n\{', ') {', inbuffer) # Move curly brackets to the end of lines inbuffer = re.sub('\) *?{', ') {', inbuffer) # Remove spaces between clos

Re: Code beautifiers, anyone?

2006-08-25 Thread Matti J. Karki
On 8/25/06, Giorgos Keramidas <[EMAIL PROTECTED]> wrote: On 2006-08-25 15:24, Kyrre Nyg?rd <[EMAIL PROTECTED]> wrote: > At 21:09 24.08.2006, Matti J. Karki wrote: > > >Well, my scripts aren't magic. They are pretty simple. Here's few (not > >scripts, the

Re: Code beautifiers, anyone?

2006-08-25 Thread Matti J. Karki
On 8/25/06, Kyrre Nygård <[EMAIL PROTECTED]> wrote: At 21:09 24.08.2006, Matti J. Karki wrote: >Well, my scripts aren't magic. They are pretty simple. Here's few (not >scripts, these are valid Vim regexps): Those are great regexps, Matti, thank you so much. They have be

Re: Code beautifiers, anyone?

2006-08-26 Thread Matti J. Karki
On 8/26/06, James Long <[EMAIL PROTECTED]> wrote: > > > inbuffer = re.sub('\n +', '\n', inbuffer) # Strip trailing whitespace > > This will strip spaces at the _beginning_ of line (leading spaces). Except, possibly, lines that begin at the first byte of the buffer, such as the first line of the