Re: Bash Tutorial

2014-01-23 Thread Dan Egli
On January 22, 2014, Jeff Anderson wrote: > I am writing a series Bash tutorial e-mails for people at work who don't > have a lot of experience using it. Also, for my own benefit. Anyone mind > if I post them here? Can I just say, PLEASE? I'd love to see them. I love the command line and anyt

Re: ZSH tab completion problem

2014-01-23 Thread Michael Torrie
On 01/23/2014 10:34 PM, justin wrote: > While you're switching, why not switch all the way to Fish? All the cool > kids are doing it :) Hmm. Never heard of fish before, which tells you how cool I am (but you already knew I wasn't! ;). Will take a look. /* PLUG: http://plug.org, #utah on irc.fre

Re: ZSH tab completion problem

2014-01-23 Thread justin
While you're switching, why not switch all the way to Fish? All the cool kids are doing it :) --j ᐧ On Thu, Jan 23, 2014 at 8:20 PM, Michael Torrie wrote: > Thanks to the encouragement of pluggers a few months back (or was it > years... can't remember) I've switched my main shell to zsh and fo

ZSH tab completion problem

2014-01-23 Thread Michael Torrie
Thanks to the encouragement of pluggers a few months back (or was it years... can't remember) I've switched my main shell to zsh and for the most part I like it. I run a few things from ohmyzsh which might be part of the problem. The problem I'm seeing is tab-completion behavior when two file nam

Re: DNS amplification attacks

2014-01-23 Thread Andy Bradford
Thus said Daniel Fussell on Thu, 23 Jan 2014 13:16:19 -0700: > The root zones seems to have it bad as they can't disable recursion, > and I suspect they are filtering based on query type and queried zone. It isn't really relevant for the root servers. They don't perform recursion, and a

Re: Good magazines?

2014-01-23 Thread Doran Barton
Markdown is anything but new. I've been using it for 10+ years. -Fozz PS sorry for the top post. I'm on my phone. "S. Dale Morrey" wrote: >Markdown is the new hotness in formatting. >Instead of open and close tags like SGML/HTML/XML your markup is done >with >a single tag and indenting takes ca

JOB: IT Operations Manager - Property Solutions

2014-01-23 Thread Steve Meyers
I was asked to post this to the PLUG mailing list. IT OPERATIONS MANAGER We are looking for an IT Operations Manager to advance the IT initiatives in our six offices and two data centers in the US and offshore. Our ideal candidate will have a working knowledge of Linux system administration

Re: DNS amplification attacks

2014-01-23 Thread Daniel Fussell
On 01/22/2014 03:29 PM, Lonnie Olson wrote: > On Wed, Jan 22, 2014 at 1:33 PM, Daniel Fussell wrote: >> The one thing I know is, I'm being continually scanned by what appears >> to be bots, on both tcp and udp, despite my refusal to do the recursion, >> perhaps under the assumption I might screw u

Re: Print to Digital conversions

2014-01-23 Thread Richard Esplin
The tool I use is gscan2pdf http://freecode.com/projects/gscan2pdf Open source ORC is not very good though. Richard On Thursday, January 23, 2014 14:46:26 Dan Egli wrote: > I was letting my mind wander last night, and I got to thinking about all > these older magazines that I have stashed in va

Re: C++ fu needed

2014-01-23 Thread Levi Pearson
On Thu, Jan 23, 2014 at 7:59 AM, Eric Wald wrote: > I once used a language with three operators: > > left := right assigned, > left == right compared, > left = rightguessed. > > The guess was generally correct; when used as a statement, it would > assign; when used as an expression,

Re: Good magazines?

2014-01-23 Thread Levi Pearson
On Thu, Jan 23, 2014 at 3:09 AM, justin wrote: > ᐧ > > On Thu, Jan 23, 2014 at 1:30 AM, S. Dale Morrey wrote: > >> Markdown is the new hotness in formatting. Instead of open and close >> tags like SGML/HTML/XML your markup is done with a single tag and >> indenting takes care of the rest. > > > Yo

Re: Print to Digital conversions

2014-01-23 Thread Levi Pearson
On Thu, Jan 23, 2014 at 2:16 AM, Dan Egli wrote: > I was letting my mind wander last night, and I got to thinking about all > these older magazines that I have stashed in various places. I kept them > because they had interesting articles and the like. I was wondering if > there was an easy way to

Re: C++ fu needed

2014-01-23 Thread Eric Wald
On Jan 22, S. Dale Morrey wrote: > Consider for a moment the hypothetical bit of code. > > if(pStart->nVersion = 2){do something new}else{do the old thing} > > if nVersion was defined as a constant, then this would throw a compile > error the first time you built it. But with the current code the

Re: PLUG Digest, Vol 109, Issue 41

2014-01-23 Thread Robert Fleming
I need a couple Visual Basic .net devs and some android and iOS devs. If you have some leads we are hiring. Email me resumes or contact information. The Bertmeister On Jan 23, 2014, at 2:18 AM, plug-requ...@plug.org wrote: > Send PLUG mailing list submissions to >plug@plug.org > > To sub

Re: Good magazines?

2014-01-23 Thread justin
ᐧ On Thu, Jan 23, 2014 at 1:30 AM, S. Dale Morrey wrote: > Markdown is the new hotness in formatting. Instead of open and close > tags like SGML/HTML/XML your markup is done with a single tag and > indenting takes care of the rest. You're thinking of [Haml][1], which is not awesome. [Markdown]

Re: Good magazines?

2014-01-23 Thread S. Dale Morrey
Markdown is the new hotness in formatting. Instead of open and close tags like SGML/HTML/XML your markup is done with a single tag and indenting takes care of the rest. eg. #html #head #meta: content blah #body #container lorem ipsum #footer Theoretica

Re: Good magazines?

2014-01-23 Thread Dan Egli
On January 21, 2014, Michael Torrie wrote: > Just for kicks, I tried to convert the epub version of Linux Journal to > txt. It mostly worked, but the source code snippets lost all their > indenting. Converting to markdown format worked a little better, > preserving the source code format, but t

Print to Digital conversions

2014-01-23 Thread Dan Egli
I was letting my mind wander last night, and I got to thinking about all these older magazines that I have stashed in various places. I kept them because they had interesting articles and the like. I was wondering if there was an easy way to convert them into a digital format, so I can recycle the

Re: C++ fu needed

2014-01-23 Thread Levi Pearson
On Wed, Jan 22, 2014 at 8:43 PM, S. Dale Morrey wrote: > Well ok I see your point. A getter and a setter would be irrelevant extra > verbage at this point. > Nevertheless if it were me I would make the value a const. > The point of protecting the variable at all is to prevent anyone from > changi