Announcing uvCalendar.org

2005-12-07 Thread Ted Roche
Dan Grover, the remarkable Hartford High school senior who put on a  
great demonstration at the August DLSLUG Nifties meeting, has just  
released a new web site, uvCalendar.org, a calendar of Upper Valley  
activities. A slick site, it's written in LAMP and aggregates a  
number of different sources into a single web site, and offers RSS  
and email notifications. Pretty slick stuff!


Learn more about Dan at http://www.dangrover.com/

Bill McG: you may want to look at where Dan is getting his calendar  
announcements, and consider whether DLSLUG should post there. I note  
that UVCIA posts to the Connecticut Valley Spectator at http:// 
www.cvspectator.com/Main.asp?SectionID=9SubSectionID=29EventID=636



Ted Roche
Ted Roche  Associates, LLC
http://www.tedroche.com


___
gnhlug-discuss mailing list
gnhlug-discuss@mail.gnhlug.org
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss


Re: Perl include question

2005-12-07 Thread Paul Lussier
Dan Coutu [EMAIL PROTECTED] writes:

 Piece of cake. You need to use the FindBin module that is included in
 the default Perl distribution. Do this:

 #!/usr/bin/perl
 use FindBin qw($Bin);
 use lib $Bin;
 use myinclude;

 This assumes that your module is named myinclude.pm and is in the same
 directory as your perl script.

I was just about to make this same recommendation.  We've got hundreds
of thousands of lines of perl code here at work, and this is where I
first discovered the FindBin module.  We use it extensively here, and
probably wouldn't be able to do things nearly as easily without it.

Almost every script we write has:

   use FindBin;
   use lib /build/perl/lastrun/lib;
   use lib $FindBin::Bin/../../../perl/lib;
   use lib $FindBin::Bin;

It's really nice to not have to worry about your modules not being found :)

-- 

Seeya,
Paul
___
gnhlug-discuss mailing list
gnhlug-discuss@mail.gnhlug.org
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss


Re: Announcing uvCalendar.org

2005-12-07 Thread Bill McGonigle

On Dec 7, 2005, at 09:57, Ted Roche wrote:

Bill McG: you may want to look at where Dan is getting his calendar  
announcements, and consider whether DLSLUG should post there. I note  
that UVCIA posts to the Connecticut Valley Spectator at  
http://www.cvspectator.com/Main.asp? 
SectionID=9SubSectionID=29EventID=636


Yep, we do (Spectator and Valley News).  I got Dan to include the  
Spectator calendar on uvCalendar.org. ;)


-Bill

-
Bill McGonigle, Owner   Work: 603.448.4440
BFC Computing, LLC  Home: 603.448.1668
[EMAIL PROTECTED]   Mobile: 603.252.2606
http://www.bfccomputing.com/Pager: 603.442.1833
Jabber: [EMAIL PROTECTED]  Text: [EMAIL PROTECTED]
Blog: http://blog.bfccomputing.com/

___
gnhlug-discuss mailing list
gnhlug-discuss@mail.gnhlug.org
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss


Re: F/OS the blind

2005-12-07 Thread Paul Lussier
Drew Van Zandt [EMAIL PROTECTED] writes:

 Once you have that, doesn't emacs do more than any sane person would
 want?

Bruce Dawson [EMAIL PROTECTED] writes:

 Emacspeak is just more icing on the cake.

 Hmm. That would mean that Emacs has more icing than cake ;-)

And, of course, ou'll need the appropriate beverage with your cake :)

For those with an RFC 2324 compliant coffee maker, there's:

  http://www.chez.com/emarsden/downloads/coffee.el

and for those who prefer tea, there's

  http://grapevine.net.au/~striggs/elisp/teatime.el


-- 

Seeya,
Paul
___
gnhlug-discuss mailing list
gnhlug-discuss@mail.gnhlug.org
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss


Re: F/OS the blind

2005-12-07 Thread fj1200
Is this simply an emacs script



 -- Original message --
From: Paul Lussier [EMAIL PROTECTED]
 Drew Van Zandt [EMAIL PROTECTED] writes:
 
  Once you have that, doesn't emacs do more than any sane person would
  want?
 
 Bruce Dawson [EMAIL PROTECTED] writes:
 
  Emacspeak is just more icing on the cake.
 
  Hmm. That would mean that Emacs has more icing than cake ;-)
 
 And, of course, ou'll need the appropriate beverage with your cake :)
 
 For those with an RFC 2324 compliant coffee maker, there's:
 
   http://www.chez.com/emarsden/downloads/coffee.el
 
 and for those who prefer tea, there's
 
   http://grapevine.net.au/~striggs/elisp/teatime.el
 
 
 -- 
 
 Seeya,
 Paul
 ___
 gnhlug-discuss mailing list
 gnhlug-discuss@mail.gnhlug.org
 http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss


___
gnhlug-discuss mailing list
gnhlug-discuss@mail.gnhlug.org
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss


emacs does everything [ was: Re: F/OS the blind ]

2005-12-07 Thread Paul Lussier
[EMAIL PROTECTED] writes:

 Is this simply an emacs script

Is what simply an emacs script?

Technically, there are no emacs scripts.  There are .el files,
which, for lack of a better analogy, are like 'include' files.

Each .el module loaded into emacs (usually via your .emacs file, but
not necessarilly) extends emacs somehow, providing you with a new set
of functions, variables, and/or key-bindings to do neat and wonderful
things.

The two .el files I linked to in the e-mail both extend emacs in
different ways.  One provides functionality to make coffee over the
network, provided you actually have compliant hardware.  The other is
nothing more than a timer to let you know when your tea is done.

There are (possibly) more modules for extending emacs than there are
debian packages and perl modules combined :)
-- 

Seeya,
Paul
___
gnhlug-discuss mailing list
gnhlug-discuss@mail.gnhlug.org
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss


Re: emacs does everything [ was: Re: F/OS the blind ]

2005-12-07 Thread Jerry Feldman
On Wednesday 07 December 2005 3:17 pm, Paul Lussier wrote:
 [EMAIL PROTECTED] writes:
  Is this simply an emacs script

 Is what simply an emacs script?

 Technically, there are no emacs scripts.  There are .el files,
 which, for lack of a better analogy, are like 'include' files.

 Each .el module loaded into emacs (usually via your .emacs file, but
 not necessarilly) extends emacs somehow, providing you with a new set
 of functions, variables, and/or key-bindings to do neat and wonderful
 things.
Actually, they are more like OS modules. They can be either source or 
compiled. Compiled extensions have the extension .elc.

-- 
Jerry Feldman [EMAIL PROTECTED]
Boston Linux and Unix user group
http://www.blu.org PGP key id:C5061EA9
PGP Key fingerprint:053C 73EC 3AC1 5C44 3E14 9245 FB00 3ED5 C506 1EA9
___
gnhlug-discuss mailing list
gnhlug-discuss@mail.gnhlug.org
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss