Re: boxquote [was: bcm43xx wireless with static ip]

2007-07-07 Thread Felix C. Stegerman
* Felix C. Stegerman [EMAIL PROTECTED] [2007-07-06 17:41]:
 * Felix C. Stegerman [EMAIL PROTECTED] [2007-07-06 11:36]:
  * William Xu [EMAIL PROTECTED] [2007-07-06 07:39]:
   Felix C. Stegerman [EMAIL PROTECTED] writes:
  
But I was wondering how you made the above print.  Is there
some handy utility to pretty-print files like that?  Or did
you [have to] do it by hand?
  
   Of course not by hand, ;-)
  
   The answer: GNU Emacs + boxquote.el
 
  To bad I'm a vim user ;-)
 
  I guess I'll just whip up a perl script then.  Thanks for the info
  though.

 $ echo '... and so I did ;-)' | boxquote
 ,[ (standard input) ]
 | ... and so I did ;-)
 `

And I've even added something:

$ boxquote -c 'fortune -s perl'
,[ fortune -s perl | ]
| It's easy to solve the halting problem with a shotgun.   :-)
| -- Larry Wall in [EMAIL PROTECTED]
`


- Felix

-- 
Felix C. Stegerman [EMAIL PROTECTED]  http://obfusk.net
~ Any sufficiently advanced bug is indistinguishable from a feature.
~   -- R. Kulawiec
~ vim: set ft=mail tw=70 sw=2 sts=2 et:


signature.asc
Description: Digital signature


Re: boxquote [was: bcm43xx wireless with static ip]

2007-07-07 Thread Elimar Riesebieter
On Sat, 07 Jul 2007 the mental interface of
Felix C. Stegerman told:

 * Felix C. Stegerman [EMAIL PROTECTED] [2007-07-06 17:41]:
[...]
 And I've even added something:
 
 $ boxquote -c 'fortune -s perl'
 ,[ fortune -s perl | ]
 | It's easy to solve the halting problem with a shotgun.   :-)
 | -- Larry Wall in [EMAIL PROTECTED]
 `

And what is the output of

$ cat boxqoute | boxqoute

?


-- 
  Excellent day for drinking heavily. 
  Spike the office water cooler;-)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: boxquote [was: bcm43xx wireless with static ip]

2007-07-07 Thread Felix C. Stegerman
* Elimar Riesebieter [EMAIL PROTECTED] [2007-07-07 18:36]:
 On Sat, 07 Jul 2007 the mental interface of
 Felix C. Stegerman told:

  * Felix C. Stegerman [EMAIL PROTECTED] [2007-07-06 17:41]:
 [...]
  And I've even added something:
 
  $ boxquote -c 'fortune -s perl'
  ,[ fortune -s perl | ]
  | It's easy to solve the halting problem with a shotgun.   :-)
  | -- Larry Wall in [EMAIL PROTECTED]
  `

 And what is the output of

 $ cat boxqoute | boxqoute

 ?

$ boxquote -c 'wc -l $(which boxquote)'
,[ wc -l $(which boxquote) | ]
| 290 /usr/local/bin/boxquote
`

Since it's 290 lines, I've chosen not to paste, but instead to attach
it.


- Felix

-- 
Felix C. Stegerman [EMAIL PROTECTED]  http://obfusk.net
~ Any sufficiently advanced bug is indistinguishable from a feature.
~   -- R. Kulawiec
~ vim: set ft=mail tw=70 sw=2 sts=2 et:
#!/usr/bin/perl

# 
#
# boxquote - quote text with a semi-box [based on boxquote.el]
#
# 
#
# Felix C. Stegerman [EMAIL PROTECTED]
# 2007-07-06 [22:47]
#
# 
#
# Copyright (C) 2007  Felix C. Stegerman
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
# USA
#
# 

our $VERSION = '2007-07-06 [22:47]';

# 

use strict;
use warnings;

# 

use Getopt::Long;
use Pod::Usage;

# 

my $prog  = 'boxquote';
my %opts  = (
  'bottom-corner' = '`',
  'command'   = [],
  'hide-title'= 0,
  'label' = '(standard input)',
  'side'  = '| ',
  'title-format'  = '[ %s ]',
  'top-and-tail'  = '',
  'top-corner'= ',',
);

# 

Getopt::Long::Configure ('auto_version');

GetOptions (
  \%opts, 'help|h|?', 'man', 'bottom-corner|bc=s', 'command|c=s',
  'hide-title|ht!', 'label|l=s', 'side|s=s', 'title-format|tf=s',
  'top-and-tail|tt=s', 'top-corner|tc=s',
) or pod2usage (2);

$opts{'help'} and pod2usage (1);
$opts{'man'}  and pod2usage ('-verbose' = 2);

# 

sub print_top ($) # top text
{
  my $file  = shift;  # file name

  my $label = $file eq '-' ? $opts{'label'} : $file;

  print   $opts{'top-corner'};
  print   $opts{'top-and-tail'};
  printf  $opts{'title-format'}, $label unless $opts{'hide-title'};
  print   \n;
}

sub print_side () # side text
{
  print   $opts{'side'};
}

sub print_bottom ()   # bottom text
{
  print   $opts{'bottom-corner'};
  print   $opts{'top-and-tail'};
  print   \n;
}

sub process ($$)  # process file[handle]
{
  my $HANDLE  = shift;
  my $title   = shift;

  print_top ($title);

  while ($HANDLE)
{
  print_side; print $_;
}

  print_bottom;
}

# 

my @commands  = @{$opts{'command'}};
my @files = @ARGV ? @ARGV :
@commands ? (   ) :
('-') ;
my $FILE  = undef;

# 

foreach my $cmd (@commands)
  {
open ($FILE, '-|', $cmd)
  or die Could not open pipe from `$cmd': $!;

process ($FILE, $cmd |);

close $FILE;
  }

# 

foreach my $file (@files)
  {
$file eq '-' ? open ($FILE, '-') : open ($FILE, '', $file)
  or die Could not open `$file': $!;

process ($FILE, $file);

close $FILE;
  }

# 

# vim: set ft=perl tw=70 sw=2 sts=2 et:

__END__

=begin comment

  boxquote.pod

  Felix C. Stegerman [EMAIL PROTECTED]
  2007-07-07 [15:18]

=end comment

=head1 NAME

boxquote - quote text with a semi-box

=head1 SYNOPSIS

Bboxquote [Ioptions] [Ifile(s)]

=head1 DESCRIPTION

The Bboxquote Cperl(1) script does more or less what
Bboxquote.el [on which it is based] does [for Cemacs(1)].

From the description 

Re: bcm43xx wireless with static ip

2007-07-06 Thread Felix C. Stegerman
* William Xu [EMAIL PROTECTED] [2007-07-06 07:39]:
 Felix C. Stegerman [EMAIL PROTECTED] writes:

  But I was wondering how you made the above print.  Is there some
  handy utility to pretty-print files like that?  Or did you [have
  to] do it by hand?

 Of course not by hand, ;-)

 The answer: GNU Emacs + boxquote.el

To bad I'm a vim user ;-)

I guess I'll just whip up a perl script then.  Thanks for the info
though.


- Felix

-- 
Felix C. Stegerman [EMAIL PROTECTED]  http://obfusk.net
~ Any sufficiently advanced bug is indistinguishable from a feature.
~   -- R. Kulawiec
~ vim: set ft=mail tw=70 sw=2 sts=2 et:


signature.asc
Description: Digital signature


boxquote [was: bcm43xx wireless with static ip]

2007-07-06 Thread Felix C. Stegerman
* Felix C. Stegerman [EMAIL PROTECTED] [2007-07-06 11:36]:
 * William Xu [EMAIL PROTECTED] [2007-07-06 07:39]:
  Felix C. Stegerman [EMAIL PROTECTED] writes:
 
   But I was wondering how you made the above print.  Is there
   some handy utility to pretty-print files like that?  Or did you
   [have to] do it by hand?
 
  Of course not by hand, ;-)
 
  The answer: GNU Emacs + boxquote.el
 
 To bad I'm a vim user ;-)
 
 I guess I'll just whip up a perl script then.  Thanks for the info
 though.

$ echo '... and so I did ;-)' | boxquote
,[ (standard input) ]
| ... and so I did ;-)
`


- Felix

-- 
Felix C. Stegerman [EMAIL PROTECTED]  http://obfusk.net
~ Any sufficiently advanced bug is indistinguishable from a feature.
~   -- R. Kulawiec
~ vim: set ft=mail tw=70 sw=2 sts=2 et:


signature.asc
Description: Digital signature


Re: bcm43xx wireless with static ip

2007-07-05 Thread Felix C. Stegerman
* William Xu [EMAIL PROTECTED] [2007-07-04 13:55]:
 When using DHCP, the wireless works just fine. But with a static ip,
 it fails. Below is my settings:

 ,[ /etc/network/interfaces ]
 | iface eth1 inet static
 |   wireless-essid laijh
 |   wireless-key   off
 |   wireless-rate  1M
 |   wireless-mode  Ad-Hoc
 |   wireless-apany
 |
 |   address   192.168.0.2
 |   netmask   255.255.255.0
 |   broadcast 192.168.0.255
 |   gateway   192.168.0.1
 `

 Any ideas on this?

Sorry, no.  But I was wondering how you made the above print.  Is
there some handy utility to pretty-print files like that?  Or did you
[have to] do it by hand?


- Felix

-- 
Felix C. Stegerman [EMAIL PROTECTED]  http://obfusk.net
~ Any sufficiently advanced bug is indistinguishable from a feature.
~   -- R. Kulawiec
~ vim: set ft=mail tw=70 sw=2 sts=2 et:


signature.asc
Description: Digital signature


Re: bcm43xx wireless with static ip

2007-07-05 Thread William Xu
Felix C. Stegerman [EMAIL PROTECTED] writes:

  But I was wondering how you made the above print.  Is
 there some handy utility to pretty-print files like that?  Or did you
 [have to] do it by hand?

Of course not by hand, ;-)

The answer: GNU Emacs + boxquote.el 

-- 
William

《枫桥夜泊》
作者:张继
月落乌啼霜满天,江枫渔火对愁眠。
姑苏城外寒山寺,夜半钟声到客船。


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



bcm43xx wireless with static ip

2007-07-04 Thread William Xu
When using DHCP, the wireless works just fine. But with a static ip, it
fails. Below is my settings: 

,[ /etc/network/interfaces ]
| iface eth1 inet static
|   wireless-essid laijh
|   wireless-key   off
|   wireless-rate  1M
|   wireless-mode  Ad-Hoc
|   wireless-apany
| 
|   address   192.168.0.2
|   netmask   255.255.255.0
|   broadcast 192.168.0.255
|   gateway   192.168.0.1
`

Any ideas on this?

-- 
William

《夜泊牛渚怀古》
作者:李白
牛渚西江夜,青天无片云。
登舟望秋月,空忆谢将军。
余亦能高咏,斯人不可闻。
明朝挂帆去,枫叶落纷纷。


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: bcm43xx wireless with static ip

2007-07-04 Thread William Xu
William Xu [EMAIL PROTECTED] writes:

 When using DHCP, the wireless works just fine. But with a static ip, it
 fails. 

Ooh, by fails, i meant ping 192.168.0.1 fails, it returns
Destination Host Unreachable.

-- 
William

题目:《寓居吴兴》
作者:曾几(1084-1166)
相对真成泣楚囚,遂无末策到神州。
但知绕树如飞鹊,不解营巢似拙鸠。
江北江南犹断绝,秋风秋雨敢淹留?
低回又作荆州梦,落日孤云始欲愁。


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]