Re: MonadLUG Notes, 12-Oct-1007: Ben Scott presents DNS and BIND

2007-10-24 Thread Ben Scott
On 10/14/07, Ted Roche [EMAIL PROTECTED] wrote:
 He'd replaced the MagicPoint presentation with S5, and had a few
 technical issues with getting it to behave, but persevered.

  This turned out to mostly be the alternate theme I picked, which
apparently is buggy.  Switching back to the stock S5 theme fixed most
of my problems (after I got home).

  I then went in and tweaked the stock S5 files to fix my other
problems.  I removed the image that was colliding with my technical
text (the original reason I switched themes).  I also modified the
JavaScript to *not* advance on mouse-click, so I can use the mouse to
highlight things during the presentation.  Isn't open source
wonderful?  :-)

  I also took the opportunity to tweak the content.  Every time I give
this presentation, I learn of things I could improve, and make
changes.  Sometimes, the changes even turn out to be improvements.
;-)

  Finally, I have uploaded the changed/improved slides to the GNHLUG
web site (the 2007 file):

 http://wiki.gnhlug.org/twiki2/bin/view/Www/PresentDNS

 Thanks to Ben for efforts above and beyond ...

  Oh, pshaw.  All it was was a slightly long drive, something I'm used
to (being a life-long NH resident).  I was just caught unawares by
exactly how long it was going to be.  More than anything, I was
unhappy because it meant I had to rush the presentation.  But you're
welcome.  :)

  If you want me to come back and present a part II (i.e., actually
setting up and configuring BIND, and writing zone files), I'd be
willing.

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


[OT] Reply-To munging (was: List header cancer)

2007-10-24 Thread Ben Scott
[DISCLAIMER: Opinions expressed in the below are the personal opinions of the
author, and do not necessarily represent the views or policy of GNHLUG, the
author's employer, or any other person or organization.]

[Subject line changed because Reply-To munging has little-to-nothing
to do with header cancer.]

On 10/23/07, Bill McGonigle [EMAIL PROTECTED] wrote:
 The point is if sizeof(People)  0, it's a problem.

  Look, this debate has been had a brazilian times, on this list and
others.  For every point, the other side has a counter-point.  There's
no overriding principle.  If there was, the debate wouldn't keep
happening.  Please stop rehashing it here.

  For those who just lack self-control, and *must* have the debate
again, could you all at least read the original essays and limit
yourself to points not raised previously (i.e., nothing so far).

http://www.unicom.com/pw/reply-to-harmful.html

http://www.metasystema.net/essays/reply-to.mhtml

(Hint: Inclusion of links means click on them and *read* the target pages.)

-- Ben

-- 
DISCLAIMER: Opinions expressed in the above are the personal opinions of the
author, and do not necessarily represent the views or policy of GNHLUG, the
author's employer, or any other person or organization.
___
gnhlug-discuss mailing list
gnhlug-discuss@mail.gnhlug.org
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss/


Re: MonadLUG Notes, 12-Oct-1007: Ben Scott presents DNS and BIND

2007-10-24 Thread Ted Roche
Ben Scott wrote:
 On 10/14/07, Ted Roche [EMAIL PROTECTED] wrote:
 He'd replaced the MagicPoint presentation with S5, and had a few
 technical issues with getting it to behave, but persevered.
 
   This turned out to mostly be the alternate theme I picked, which
 apparently is buggy.  Switching back to the stock S5 theme fixed most
 of my problems (after I got home).
 
   I then went in and tweaked the stock S5 files to fix my other
 problems.  I removed the image that was colliding with my technical
 text (the original reason I switched themes).  I also modified the
 JavaScript to *not* advance on mouse-click, so I can use the mouse to
 highlight things during the presentation.  Isn't open source
 wonderful?  :-)
 
   I also took the opportunity to tweak the content.  Every time I give
 this presentation, I learn of things I could improve, and make
 changes.  Sometimes, the changes even turn out to be improvements.
 ;-)
 
   Finally, I have uploaded the changed/improved slides to the GNHLUG
 web site (the 2007 file):
 
 http://wiki.gnhlug.org/twiki2/bin/view/Www/PresentDNS
 

I took a look at the slides, because I know you had some troubles with
the way the layout looked and behaved, and I felt bad for recommending
S5 if it gave you so much trouble, and I think I found the source of
some of those problems: the main slide file has to be XHTML 1.0 Strict,
which is really, really finicky about how things work. Tags have to be
lower-case, all opened tags have to be closed, etc. Not too bad if your
writing a system to generate code, but a pain in the neck in a situation
like this where you're likely to write the file by hand in a text editor
(or porting it from MagicPoint file format)

So, instead of:

pMain heading:
ul
liList item one
ul
liSub list item one
liSub list item one
/ul
liList item two
/ul

You have to have:

pMain heading:/p
ul
liList item one
ul
liSub list item one/li
liSub list item one/li
/ul/li !-- Note that this closes List Item One above, making the
second list subsidiary to the first list item --
liList item two/li
/ul

(I *think* I got this right...) It's a pain in the neck to get code this
way, and I use http://validator.w3.org to tell my when I've finally
dotted every I and crossed every T, er, t.

I did a quick run-though of the HTML file you supplied, and posted an
update to the board. You may find it displays a little better. Hope this
helps you the next time you give the presentation.

Charlie, when are you going to have Ben back for Part II? I'm looking
forward to it!

-- 
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: MonadLUG Notes, 12-Oct-1007: Ben Scott presents DNS and BIND

2007-10-24 Thread Kent Johnson
Ted Roche wrote:
 I took a look at the slides, because I know you had some troubles with
 the way the layout looked and behaved, and I felt bad for recommending
 S5 if it gave you so much trouble, and I think I found the source of
 some of those problems: the main slide file has to be XHTML 1.0 Strict,
 which is really, really finicky about how things work.

 (I *think* I got this right...) It's a pain in the neck to get code this
 way, and I use http://validator.w3.org to tell my when I've finally
 dotted every I and crossed every T, er, t.

So, is there a better way to author S5 than being really, really careful 
while writing XHTML by hand and using an XHTML validator a lot?

I'm thinking about using S5 for an upcoming MerriLUG presentation but if 
it is a pain to author I might just stick with PowerPoint (yeah, 
PowerPoint on Mac OSX for a presentation on FOSS software (Python) to a 
Linux UG, spare me the comments...)

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


Re: MonadLUG Notes, 12-Oct-1007: Ben Scott presents DNS and BIND

2007-10-24 Thread Ben Scott
On 10/24/07, Ted Roche [EMAIL PROTECTED] wrote:
 ... the main slide file has to be XHTML 1.0 Strict ...

  I'm not sure it does.

  Like I said, I found that switching back to the default theme
(instead of the third-party theme I had found) seemed to fix most of
the problems I had.  It may be that, had I used pristine XHTML with
the third-party theme, the third-party theme would have worked better.
 But I suspect the third-party theme just has old/inferior JavaScript.
 I noticed that it didn't auto-number the slides, either.

  The other part of my trouble was that I kept trying to click on the
slide to highlight things, and S5 interprets that as Go to next
slide.  That was pure user error.  But it was also easily fixed by
removing the onClick hook from the JavaScript that drives the slide
show.  :)

 I did a quick run-though of the HTML file you supplied, and posted an
 update to the board.

  Well, thank you.  It certainly doesn't hurt to have better markup!  :)

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


Presentation/slideshow apps (was: ... DNS and BIND)

2007-10-24 Thread Ben Scott
On 10/24/07, Kent Johnson [EMAIL PROTECTED] wrote:
 So, is there a better way to author S5 than being really, really careful
 while writing XHTML by hand and using an XHTML validator a lot?

  I actually don't think S5 is as picky as Ted says, although that may
depend on browser, complexity of your markup, specific XHTML abuses
perpetrated, phase of the moon, etc.

  In the past, I've used MagicPoint (MGP)
(http://member.wide.ad.jp/wg/mgp/) for presentation slides.  MGP is
nice because simple slides use extremely simple markup.  It's similar
in concept to wiki markup -- old-fashioned, plain-text conventions
adapted into a markup language.  I still like a lot of it.

  But MGP has issues, too.  You need to have the MGP software
installed to render the slideshow, and it's X11-only.  It doesn't
always handle text resizing well or easily.  Some markup is rather
cumbersome (like changing the font in-line, something I do a lot).
More advanced tricks are often just not possible.  Image
resizing/zooming isn't supported (AFAIK).  HTML can be produced from
an MGP, but it's a separate file.  Jumping between slides requires you
to know the slide number.

  S5 (http://meyerweb.com/eric/tools/s5/) is attractive because it's
all HTML, so just about any web browser (even Lynx) can at least view
the slides as is.  JavaScript and CSS enable the super-slick
slide-show presentation.  Firefox already supports on-the-fly text and
image resizing.  S5 gives you a nifty pick-list with slide titles for
jumping.  Just about any HTML/CSS/browser feature can be used, which
makes it a lot more capable than MGP.  For example, not only can I
more easily change the font in-line with a SPAN block, I can also put
a box around it and change the background color.

  The major drawback to S5 is also that it's all HTML.  :)  While HTML
can be made fairly simple, it still isn't as uncluttered as
MagicPoint's markup.  You get sometimes have to worry about browser
idiosyncrasies and JavaScript glitches.  But still, I think S5 wins
over MGP.

  If you actually *want* a WYSIWYG GUI, well, I can't help you there,
sorry.  Real men use text editors for everything.  ;-)

 ... PowerPoint on Mac OSX ...

 FWIW, I've heard good things OpenOffice.org Impress, and it
supposedly runs on MacOS X if you have X11 installed.

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


Re: MonadLUG Notes, 12-Oct-1007: Ben Scott presents DNS and BIND

2007-10-24 Thread Ted Roche
Ben Scott wrote:
 On 10/24/07, Ted Roche [EMAIL PROTECTED] wrote:
 ... the main slide file has to be XHTML 1.0 Strict ...
 
   I'm not sure it does.
 
   Like I said, I found that switching back to the default theme
 (instead of the third-party theme I had found) seemed to fix most of
 the problems I had. 

Okay, *I* am too finicky, it's true. It's either valid or it shouldn't
have the header.

But,...

... I only tweaked on the slideshow this morning because some of the
layout was coming out wrong on my machine (FF 1.5 under FC6, with
Liberation fonts as the default), text overlaid on top of other text,
list items munged together. While I was at it, I thought I might as well
make the document valid. I suspect it was the closing list-item tags
that were the main source of problems.

Everyone else's browser should have a different experience. Ah, the joy
of the web...

-- 
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: MonadLUG Notes, 12-Oct-1007: Ben Scott presents DNS and BIND

2007-10-24 Thread Ted Roche
Kent Johnson wrote:
 
 So, is there a better way to author S5 than being really, really careful
 while writing XHTML by hand and using an XHTML validator a lot?
 

I would think an editor that knows about XHTML so that it creates the
/li when you create the li tag would help a lot. I mostly hand-code
my HTML (I know, how last century!), so I'm used to it.

I think Ben ran into so much trouble because he was working from an
older batch of text and transmogrified it to HTML. Writing from scratch
using the supplied templates eliminates most of the problems. I just
validated the CSS slideshow I'm working up for next month, and it took a
couple of tweak (adding slashes at the end of IMG tags, for example) to
get it compliant. Still in beta, but visible at:

http://www.tedroche.com/Present/2007/css/css.html

 I'm thinking about using S5 for an upcoming MerriLUG presentation but if
 it is a pain to author I might just stick with PowerPoint (yeah,
 PowerPoint on Mac OSX for a presentation on FOSS software (Python) to a
 Linux UG, spare me the comments...)

The advantages I see to S5 is that you can post the content directly to
a web site and viewers do not need special software to view it, it's
lighter in terms of bandwidth, and more easily fed to the search engines.

Failing this, perhaps OpenOffice.org Impress to develop the presentation
and PDF output is second-best.

But PowerPoint? PowerPoint kills, man. (Well, PowerPoint doesn't kill
people. People using PowerPoint kill people. But, still...)

P.S. You might take a look at Google Present if you've got a free Google
Apps account. Similar in concept to S5.

-- 
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: MonadLUG Notes, 12-Oct-1007: Ben Scott presents DNS and BIND

2007-10-24 Thread Lloyd Kvam
On Wed, 2007-10-24 at 10:03 -0400, Kent Johnson wrote:
 Ted Roche wrote:
  I took a look at the slides, because I know you had some troubles with
  the way the layout looked and behaved, and I felt bad for recommending
  S5 if it gave you so much trouble, and I think I found the source of
  some of those problems: the main slide file has to be XHTML 1.0 Strict,
  which is really, really finicky about how things work.
 
  (I *think* I got this right...) It's a pain in the neck to get code this
  way, and I use http://validator.w3.org to tell my when I've finally
  dotted every I and crossed every T, er, t.
 
 So, is there a better way to author S5 than being really, really careful 
 while writing XHTML by hand and using an XHTML validator a lot?

docutils includes support for s5 output:
rst2s5

The docutils conventions are a bit more complicated than I'd really
like, but most of the simple cases are fairly easy to master.

 
 I'm thinking about using S5 for an upcoming MerriLUG presentation but if 
 it is a pain to author I might just stick with PowerPoint (yeah, 
 PowerPoint on Mac OSX for a presentation on FOSS software (Python) to a 
 Linux UG, spare me the comments...)
 
 Kent
 ___
 gnhlug-discuss mailing list
 gnhlug-discuss@mail.gnhlug.org
 http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss/
-- 
Lloyd Kvam
Venix Corp
DLSLUG/GNHLUG library
http://www.librarything.com/catalog.php?view=dlslug

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


OT - bad PowerPoint [was MonadLUG Notes, 12-Oct-1007]

2007-10-24 Thread Michael ODonnell


 [...PowerPoint doesn't kill people.
 People using PowerPoint kill people. ]

FYA, a guided tour of crappy PowerPoint by a standup comic:

   http://i-am-bored.com/bored_link.cfm?link_id=23724
 
___
gnhlug-discuss mailing list
gnhlug-discuss@mail.gnhlug.org
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss/


Re: MonadLUG Notes, 12-Oct-1007: Ben Scott presents DNS and BIND

2007-10-24 Thread Kent Johnson
Ted Roche wrote:

 I would think an editor that knows about XHTML so that it creates the
 /li when you create the li tag would help a lot. I mostly hand-code
 my HTML (I know, how last century!), so I'm used to it.

Me too, actually; maybe I'm making too big of a deal out of it.

 Failing this, perhaps OpenOffice.org Impress to develop the presentation
 and PDF output is second-best.

I have been uniformly un-Impressed with OO on Mac OSX. Writer is clunky, 
I have had problems interoperating with MS Word (and whatever you think 
of MS Word, sometimes that is a real requirement) and Calc is unusably 
slow even on a reasonably fast machine. Oh, and X11 doesn't integrate 
very well either. This is one reason I bought MS Office in the first 
place, it wasn't without some consideration of the alternatives. So I'm 
not that excited about trying Impress.

 But PowerPoint? PowerPoint kills, man. (Well, PowerPoint doesn't kill
 people. People using PowerPoint kill people. But, still...)

??

It doesn't help that I already have an older version of the presentation 
in PP...

 P.S. You might take a look at Google Present if you've got a free Google
 Apps account. Similar in concept to S5.

OMG this is sweet! Imports .ppt files with styles! Looks like a winner.

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


Presentation/slideshow apps (was: ... DNS and BIND)

2007-10-24 Thread Ben Scott
On 10/24/07, Kent Johnson [EMAIL PROTECTED] wrote:
 P.S. You might take a look at Google Present if you've got a free Google
 Apps account. Similar in concept to S5.

 OMG this is sweet! Imports .ppt files with styles! Looks like a winner.

  While Google does have some nice stuff... is problem if lose
Internet connection, da?

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


Re: Presentation/slideshow apps (was: ... DNS and BIND)

2007-10-24 Thread Kent Johnson
Ben Scott wrote:
 On 10/24/07, Kent Johnson [EMAIL PROTECTED] wrote:
 P.S. You might take a look at Google Present if you've got a free Google
 Apps account. Similar in concept to S5.
 OMG this is sweet! Imports .ppt files with styles! Looks like a winner.
 
   While Google does have some nice stuff... is problem if lose
 Internet connection, da?

Could be...I don't know if it allows export.

I was going to publish my current presentation as an example but looking 
it over I decided it is actually pretty weak, partly because the slide 
format really doesn't work very well for the material; maybe I will just 
rewrite it as an essay using reStructuredText and publish it on my web 
site :-) (which is available - to me - without an internet connection)

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


Re: Presentation/slideshow apps (was: ... DNS and BIND)

2007-10-24 Thread Shawn K. O'Shea

  FWIW, I've heard good things OpenOffice.org Impress, and it
 supposedly runs on MacOS X if you have X11 installed.

Or run NeoOffice, which is OO.o with the Aqua (OS X) GUI

http://www.neooffice.org/

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


Re: Presentation/slideshow apps (was: ... DNS and BIND)

2007-10-24 Thread Ted Roche
Ben Scott wrote:
 On 10/24/07, Kent Johnson [EMAIL PROTECTED] wrote:
 P.S. You might take a look at Google Present if you've got a free Google
 Apps account. Similar in concept to S5.
 OMG this is sweet! Imports .ppt files with styles! Looks like a winner.
 
   While Google does have some nice stuff... is problem if lose
 Internet connection, da?
 

In Russia, Connection will lose you!!!

No, I think there's a way to download a version locally.

Yup, just confirmed. Uploaded a PPT from Y2K into Google Apps, and saved
it back to the local machine as a .ZIP. Unzipping the file yielded a
.html and several supporting directories. Opening the HTML started a
slideshow in the browser. Sweet.

-- 
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: MonadLUG Notes, 12-Oct-1007: Ben Scott presents DNS and BIND

2007-10-24 Thread Ted Roche
 Ted Roche wrote:
 
 But PowerPoint? PowerPoint kills, man. (Well, PowerPoint doesn't kill
 people. People using PowerPoint kill people. But, still...)

Kent Johnson wrote:
 
 ??
 

Sorry, ramblings of an old PowerPoint junkie. I once paid a lot of money
to attend a conference taken over by M$ who subjected us to a day of
Death by PowerPoint on a new application that was so unstable the only
way they could demo it was in PowerPoint.

Death by PowerPoint yields over a half-million hits on the Internet,
which proves nothing these days. But Edward R. Tufte's essay on The
Cognitive Style of PowerPoint, (which I can leap up from my desk and
lay my hands on instantly) is a must-read for everyone who wants to
understand how to convey information.

I also had the privilege of attending an Edward R. Tufte seminar where
he reviewed the problem with thinking in slides and showed how the
lack of good analytical skills was responsible for the destruction of
the Challenger and the loss of lives. It was moving. Don't miss the
chance to see him if you can.

His essay then goes on to show the same fuzzy thinking, including
PowerPoint slides, that lead to the Columbia disaster. That was criminal.

So, sadly, Powerpoint kills.

-- 
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: MonadLUG Notes, 12-Oct-1007: Ben Scott presents DNS and BIND

2007-10-24 Thread Dan Jenkins
Kent Johnson wrote:
 I have been uniformly un-Impressed with OO on Mac OSX. Writer is clunky, 
 I have had problems interoperating with MS Word (and whatever you think 
 of MS Word, sometimes that is a real requirement) and Calc is unusably 
 slow even on a reasonably fast machine. Oh, and X11 doesn't integrate 
 very well either. This is one reason I bought MS Office in the first 
 place, it wasn't without some consideration of the alternatives. So I'm 
 not that excited about trying Impress.
   
I use NeoOffice for OpenOffice on Mac OSX. It looks native and works 
well, in my experience.
My experience with Impress vs. PowerPoint is limited as I don't 
personally use that class of tools
at all. Some of my clients find Impress acceptable, but more than half 
do prefer PowerPoint.

-- 
Dan Jenkins ([EMAIL PROTECTED])
Rastech Inc., Bedford, NH, USA --- 1-603-206-9951
*** Technical Support Excellence for over a Quarter Century

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


Re: MonadLUG Notes, 12-Oct-1007: Ben Scott presents DNS and BIND

2007-10-24 Thread Ben Scott
On 10/24/07, Ted Roche [EMAIL PROTECTED] wrote:
 But Edward R. Tufte's essay on The
 Cognitive Style of PowerPoint, (which I can leap up from my desk and
 lay my hands on instantly) is a must-read for everyone who wants to
 understand how to convey information.

  Going back on-topic for this thread: If you or anyone else have any
feedback on my DNS presentation, I'd love to hear it.

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


Re: MonadLUG Notes, 12-Oct-1007: Ben Scott presents DNS and BIND

2007-10-24 Thread Paul Lussier
Kent Johnson [EMAIL PROTECTED] writes:

 So, is there a better way to author S5 than being really, really careful 
 while writing XHTML by hand and using an XHTML validator a lot?

Use emacs:

  http://elpoint.sourceforge.net/
  http://www.mew.org/~kazu/proj/goby/index.html.en

I have no idea how well either of these modes work, but it's got to be
better than hacking xhtml.  If you insist upon hacking xhtml use
emacs' nxhtml and nxml modes.

Another simple solution would be to use emacs' muse-mode and publish
the individual pages to html and/or paper for distribution.
-- 
Seeya,
Paul
___
gnhlug-discuss mailing list
gnhlug-discuss@mail.gnhlug.org
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss/


Re: Presentation/slideshow apps

2007-10-24 Thread Paul Lussier
Ben Scott [EMAIL PROTECTED] writes:

   While Google does have some nice stuff... is problem if lose
 Internet connection, da?

Da!  Ees problem if lose eenternet co-nection.  

Eemeergency! Eemeergency!  Everyone to get from street!  Dere ees no
eenternet co-nection!

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


Re: OT - bad PowerPoint [was MonadLUG Notes, 12-Oct-1007]

2007-10-24 Thread Ben Scott
On 10/24/07, Michael ODonnell [EMAIL PROTECTED] wrote:
 FYA, a guided tour of crappy PowerPoint by a standup comic:
http://i-am-bored.com/bored_link.cfm?link_id=23724

  A standup comic who used to be an engineer (really)!  That guy is
hilarious, thanks.  More videos can be found, and he has a website, of
course:

http://www.technicallyfunny.com/

http://video.google.com/videosearch?q=don+mcmillan

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