Re: [PLUG] awk: next statement not working as intended

2012-07-02 Thread Larry Brigman
For the empty value replace /""/ with /^$/ When I ran your program I found that it never matched the later dates. Awk for the most part does everything as strings and your quoted date fields won't match first because the quotes don't match the data. Since everything is based off the year, I use a

Re: [PLUG] HDMI to VGA conversion

2012-07-02 Thread Neal
> http://www.projectorcentral.com/Hitachi-CP-SX1350.htm Product Sheet link shows VGA/BNC, component, composite and S but no DVI/HDMI. NealS ___ PLUG mailing list PLUG@lists.pdxlinux.org http://lists.pdxlinux.org/mailman/listinfo/plug

Re: [PLUG] awk: next statement not working as intended

2012-07-02 Thread Rich Shepard
On Mon, 2 Jul 2012, Larry Brigman wrote: > A larger data set and a larger section of the script will be needed as the > script won't print anything as written. Larry, Here's the script: #! /usr/bin/gawk -f BEGIN { FS = "|"; OFS = "|" } # If no quantity, drop row $4 ~ /""/ { next; } # If d

Re: [PLUG] HDMI to VGA conversion

2012-07-02 Thread John Jason Jordan
On Mon, 2 Jul 2012 11:36:10 -0700 John Jason Jordan dijo: >On Mon, 02 Jul 2012 10:58:18 -0700 >Michael Dexter dijo: > >>Out speaker this week would prefer use a latest 'n' greatest laptop >>with HDMI output. The venue has VGA. >> >>Being a digital to analog conversion, this is non-trivial. See t

Re: [PLUG] awk: next statement not working as intended

2012-07-02 Thread Larry Brigman
On Mon, Jul 2, 2012 at 3:30 PM, Rich Shepard wrote: > On Mon, 2 Jul 2012, Rich Shepard wrote: > >>   In a data file I have rows like this: >> >> 'D-1'|'2007-12-12'|0|'Hg'||0|| > >   Er, wrong data file. That line should be: > > 'D-1'|'2007-12-12'|'Hg'||0|| A larger data set and a larger section of

Re: [PLUG] awk: next statement not working as intended

2012-07-02 Thread Rich Shepard
On Mon, 2 Jul 2012, Rich Shepard wrote: > In a data file I have rows like this: > > 'D-1'|'2007-12-12'|0|'Hg'||0|| Er, wrong data file. That line should be: 'D-1'|'2007-12-12'|'Hg'||0|| Rich ___ PLUG mailing list PLUG@lists.pdxlinux.org http://l

[PLUG] awk: next statement not working as intended

2012-07-02 Thread Rich Shepard
In a data file I have rows like this: 'D-1'|'2007-12-12'|0|'Hg'||0|| where the 4th field is blank. I want to drop these rows from the output. The awk script begins like this: #! /usr/bin/gawk -f BEGIN { FS = "|"; OFS = "|" } # If no quantity, drop row $4 ~ /""/ { next } yet these ro

[PLUG] Streaming yes ...

2012-07-02 Thread Keith Lofstrom
On Mon, Jul 02, 2012 at 10:53:56AM -0700, Michael Dexter wrote: > Is streaming/recording presentations something I should pursue? It's something I hope someone else with the tools will volunteer to do; you've already got plenty of tasks, while I am backing towards the nearest exit, away from the r

Re: [PLUG] HDMI to VGA conversion

2012-07-02 Thread John Jason Jordan
On Mon, 2 Jul 2012 11:36:10 -0700 John Jason Jordan dijo: >On Mon, 02 Jul 2012 10:58:18 -0700 >Michael Dexter dijo: > >>Out speaker this week would prefer use a latest 'n' greatest laptop >>with HDMI output. The venue has VGA. >> >>Being a digital to analog conversion, this is non-trivial. See t

Re: [PLUG] HDMI to VGA conversion

2012-07-02 Thread John Jason Jordan
On Mon, 02 Jul 2012 10:58:18 -0700 Michael Dexter dijo: >Out speaker this week would prefer use a latest 'n' greatest laptop >with HDMI output. The venue has VGA. > >Being a digital to analog conversion, this is non-trivial. See the >dozen or so $8 cables on Amazon with one star. :( > >I have see

[PLUG] HDMI to VGA conversion

2012-07-02 Thread Michael Dexter
On that note... Out speaker this week would prefer use a latest 'n' greatest laptop with HDMI output. The venue has VGA. Being a digital to analog conversion, this is non-trivial. See the dozen or so $8 cables on Amazon with one star. :( I have seen smart adapters for about $100. Has anyone

Re: [PLUG] REMINDER: systemd is a go July 5th

2012-07-02 Thread Michael Dexter
On 6/28/12 9:57 PM, Russell Senior wrote: > Crap. Get him to cancel! I won't be in town and I wanted to see that > one.;-) In a perfect world, PLUG presentations would be both streamed and captured. I dabbled with the once using Vimeo and at Roots and there was a question from I believe... Sou