<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<STYLE>P {
        PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px
}
BODY {
        FONT-SIZE: 10pt; FONT-FAMILY: Tahoma
}
</STYLE>

<META content="MSHTML 6.00.2900.3086" name=GENERATOR></HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial>Sounds like a good deal but I need metric lengths: 68.5mm. 
I'll pay extra for that! &lt;LOL&gt;</FONT></DIV>
<DIV><FONT face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial>John Pavlick<BR><A 
href="http://www.idseng.com">http://www.idseng.com</A></FONT></DIV>
<BLOCKQUOTE 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV 
  style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
  <A title=rickwallace45@hotmail.com 
  href="mailto:rickwallace45@hotmail.com">Rick Wallace</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>To:</B> <A 
  title=nsrca-discussion@lists.nsrca.org 
  href="mailto:nsrca-discussion@lists.nsrca.org">NSRCA Mailing List</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>Sent:</B> Tuesday, July 03, 2007 2:03 
AM</DIV>
  <DIV style="FONT: 10pt arial"><B>Subject:</B> [NSRCA-discussion] 6-32 control 
  horns WAS Chapter-12 computerscience.</DIV>
  <DIV><BR></DIV>John - <BR>6-32 all-thread from the hardware store's been 
  working fine... if you want I can cut some 2.63452" lengths and package them 
  in a 'Pattern' container - for you, only $16.50 per pair ! <BR>&nbsp;<BR>let 
  me know - <BR>Rick <BR><BR><BR><BR><BR>
  <HR id=stopSpelling>
  <BR>&gt; From: <A 
  href="mailto:jpavlick@idseng.com">jpavlick@idseng.com</A><BR>&gt; To: <A 
  href="mailto:nsrca-discussion@lists.nsrca.org">nsrca-discussion@lists.nsrca.org</A><BR>&gt; 
  Date: Tue, 3 Jul 2007 00:40:20 -0400<BR>&gt; Subject: Re: [NSRCA-discussion] 
  Chapter-12 computer science.<BR>&gt; <BR>&gt; Hey, this is fun! i guess i did 
  a good job with that one. The next time the <BR>&gt; list is slow, I'll know 
  what to do!<BR>&gt; <BR>&gt; Hey - real question: What is everyone using for 
  6-32 threaded control horn <BR>&gt; setups? I heard that stainless screws are 
  too brittle. Can I just use <BR>&gt; zinc-plated hardware from Home Depot or 
  will that only work on a "sport" <BR>&gt; model? &lt;LOL&gt;<BR>&gt; <BR>&gt; 
  John Pavlick<BR>&gt; http://www.idseng.com<BR>&gt; <BR>&gt; John 
  Pavlick<BR>&gt; http://www.idseng.com<BR>&gt; <BR>&gt; <BR>&gt; ----- Original 
  Message ----- <BR>&gt; From: "Keith Black" 
  &lt;tkeithblack@gmail.com&gt;<BR>&gt; To: "NSRCA Mailing List" 
  &lt;nsrca-discussion@lists.nsrca.org&gt;<BR>&gt; Sent: Tuesday, July 03, 2007 
  12:32 AM<BR>&gt; Subject: Re: [NSRCA-discussion] Chapter-12 computer 
  science.<BR>&gt; <BR>&gt; <BR>&gt; &gt; Matthew,<BR>&gt; &gt;<BR>&gt; &gt; 
  syntax error: you didn't define cnt.<BR>&gt; &gt;<BR>&gt; &gt; And by the way, 
  though in principal I agree with you about the int<BR>&gt; &gt; declaration 
  (depending on John's intent) in C or C++ it's perfectly<BR>&gt; &gt; 
  acceptable to increment (++) a char.<BR>&gt; &gt;<BR>&gt; &gt; Keith<BR>&gt; 
  &gt;<BR>&gt; &gt; ----- Original Message ----- <BR>&gt; &gt; From: "Matthew 
  Frederick" &lt;mjfrederick@cox.net&gt;<BR>&gt; &gt; To: "NSRCA Mailing List" 
  &lt;nsrca-discussion@lists.nsrca.org&gt;<BR>&gt; &gt; Sent: Monday, July 02, 
  2007 10:34 PM<BR>&gt; &gt; Subject: Re: [NSRCA-discussion] Chapter-12 computer 
  science.<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt;&gt; John,<BR>&gt; &gt;&gt; 
  What language is that for? C/C++? I don't think that function would 
  work<BR>&gt; &gt;&gt; because doing math with a data type char provides 
  unpredictable results.<BR>&gt; &gt; It<BR>&gt; &gt;&gt; looks like a function 
  that would return the number 255 to the function<BR>&gt; &gt; that<BR>&gt; 
  &gt;&gt; called it, but I would have written it like this:<BR>&gt; &gt;&gt; 
  int foo(void){<BR>&gt; &gt;&gt; int num;<BR>&gt; &gt;&gt; for(num = 0; cnt 
  &lt; 255; num++){<BR>&gt; &gt;&gt; }<BR>&gt; &gt;&gt; return num;<BR>&gt; 
  &gt;&gt; }<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; Or better yet:<BR>&gt; &gt;&gt; 
  int foo(void){<BR>&gt; &gt;&gt; return 255;<BR>&gt; &gt;&gt; }<BR>&gt; 
  &gt;&gt;<BR>&gt; &gt;&gt; Or even better yet, if you know the number that will 
  always be returned,<BR>&gt; &gt;&gt; just make it a global constant and be 
  done with it... Also I've never<BR>&gt; &gt;&gt; intialized 2 variables in a 
  FOR statement before. Didn't know it was<BR>&gt; &gt;&gt; possible, and not 
  quite sure I would ever need to. If the language shown<BR>&gt; &gt; 
  was<BR>&gt; &gt;&gt; not C/C++, then maybe in that language you can in fact do 
  math with data<BR>&gt; &gt;&gt; type char, but why would you store numbers as 
  text? It takes far more<BR>&gt; &gt; space<BR>&gt; &gt;&gt; to store them. 
  Keep in mind, I haven't done actual programming in a <BR>&gt; &gt;&gt; 
  couple<BR>&gt; &gt;&gt; of years so I am a little rusty (I don't consider 
  working with access<BR>&gt; &gt;&gt; databases and excel to be programming 
  although some knowledge is <BR>&gt; &gt;&gt; helpful).<BR>&gt; 
  &gt;&gt;<BR>&gt; &gt;&gt; Matt<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; ----- 
  Original Message ----- <BR>&gt; &gt;&gt; From: "John Pavlick" 
  &lt;jpavlick@idseng.com&gt;<BR>&gt; &gt;&gt; To: "NSRCA Mailing List" 
  &lt;nsrca-discussion@lists.nsrca.org&gt;<BR>&gt; &gt;&gt; Sent: Monday, July 
  02, 2007 9:16 PM<BR>&gt; &gt;&gt; Subject: Re: [NSRCA-discussion] Chapter-12 
  computer science.<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; &gt; OK, 
  what does this do?<BR>&gt; &gt;&gt; &gt;<BR>&gt; &gt;&gt; &gt; char 
  foo(void)<BR>&gt; &gt;&gt; &gt; {<BR>&gt; &gt;&gt; &gt; char cnt, num;<BR>&gt; 
  &gt;&gt; &gt;<BR>&gt; &gt;&gt; &gt; for(cnt = 0, num = 0; cnt &lt; 256; 
  cnt++)<BR>&gt; &gt;&gt; &gt; {<BR>&gt; &gt;&gt; &gt; num++;<BR>&gt; &gt;&gt; 
  &gt; }<BR>&gt; &gt;&gt; &gt; return num;<BR>&gt; &gt;&gt; &gt; }<BR>&gt; 
  &gt;&gt; &gt;<BR>&gt; &gt;&gt; &gt; John Pavlick<BR>&gt; &gt;&gt; &gt; 
  http://www.idseng.com<BR>&gt; &gt;&gt; &gt;<BR>&gt; &gt;&gt; &gt;<BR>&gt; 
  &gt;&gt; &gt; ----- Original Message ----- <BR>&gt; &gt;&gt; &gt; From: 
  "Matthew Frederick" &lt;mjfrederick@cox.net&gt;<BR>&gt; &gt;&gt; &gt; To: 
  "NSRCA Mailing List" &lt;nsrca-discussion@lists.nsrca.org&gt;<BR>&gt; &gt;&gt; 
  &gt; Sent: Sunday, July 01, 2007 4:22 AM<BR>&gt; &gt;&gt; &gt; Subject: Re: 
  [NSRCA-discussion] Chapter-5 Going too far.<BR>&gt; &gt;&gt; &gt;<BR>&gt; 
  &gt;&gt; &gt;<BR>&gt; &gt;&gt; &gt;&gt; I'd like to see the code myself... 
  I've got quite a bit of Computer<BR>&gt; &gt;&gt; &gt;&gt; Science<BR>&gt; 
  &gt;&gt; &gt;&gt; training.<BR>&gt; &gt;&gt; &gt;&gt; ----- Original Message 
  ----- <BR>&gt; &gt;&gt; &gt;&gt; From: "Fred Huber" 
  &lt;fhhuber@clearwire.net&gt;<BR>&gt; &gt;&gt; &gt;&gt; To: "NSRCA Mailing 
  List" &lt;nsrca-discussion@lists.nsrca.org&gt;<BR>&gt; &gt;&gt; &gt;&gt; Sent: 
  Tuesday, June 26, 2007 3:23 PM<BR>&gt; &gt;&gt; &gt;&gt; Subject: Re: 
  [NSRCA-discussion] Chapter-5 Going too far.<BR>&gt; &gt;&gt; &gt;&gt;<BR>&gt; 
  &gt;&gt; &gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt; What computer language was the 
  program written in?<BR>&gt; &gt;&gt; &gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt; Send me the source code.<BR>&gt; &gt;&gt; &gt;&gt;&gt;<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt; ----- Original Message ----- <BR>&gt; &gt;&gt; 
  &gt;&gt;&gt; From: "W. Hinkle" &lt;whinkle1024@msn.com&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt; To: &lt;nsrca-discussion@lists.nsrca.org&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt; Sent: Tuesday, June 26, 2007 10:25 AM<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt; Subject: Re: [NSRCA-discussion] Chapter-5 Going too far.<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; Dave is a good pilot but character being beyond reproach is a 
  bit of<BR>&gt; &gt; a<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; stretch. Ask John 
  Glizellis about when Dave shot him down and <BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; 
  haggled<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; over<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; the price. This was to replace a brand new model with less 
  than 30<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; flights<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; on it at the NATS. The incident was at the NATS during 
  practice at<BR>&gt; &gt; the<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; AMA<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt; field. We all make mistakes, but to penny pinch the 
  guy that just<BR>&gt; &gt; cost<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; his<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt; new model part way through the Nationals. JR had to 
  step in and<BR>&gt; &gt; forced<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; the<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt; hand. If it had not been for Dave the sponsorship 
  threat Dave would<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; still<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; be<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; argueing the price of a 
  new built model. Dave replaced it after some<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; 
  debate<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; with JR. This is not character beyond 
  reproach? Dave may be a good<BR>&gt; &gt; guy<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; just<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; don't be on the same 
  freq. He'll tell how poor your model is built<BR>&gt; &gt; and<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt; its<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; not worth the 
  price of a professional built kit.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt; I'll agree that both parties in this fight are not 
  angels. I'm not a<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; fan<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; or<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; Eric's but my question 
  to this forum<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; Why is the NSRCA involved at all?<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; Doesn't the NSRCA have 
  better things to do with its time and energy<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; 
  than<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; lynching a judge at the request of a 
  couple pilots that have<BR>&gt; &gt; character<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; beyond reproach?<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt; I feel this is another sign of the NSRCA just 
  wasting resources, <BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; time<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; and<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; money in the name of 
  being the Savior of pattern flying. Beware<BR>&gt; &gt; people<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt; beware. Come on. Getting two of Dave's best buddies 
  in D1 to write a<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; program<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; to damn a person that they and David hate with a passion. To 
  me is<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; smells<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; like old shellfish. These were the same judges who claimed in 
  the<BR>&gt; &gt; past<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; the<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; judge that gave the zero was the one that got it 
  right.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; The 
  NSRCA has no business in this arena. I find it appalling the<BR>&gt; &gt; 
  Board<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; even<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; 
  had this on the agenda. I also find it appalling that a ruling was<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt; made,<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; then Eric 
  was notified of the charges and the conviction. As Eric<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; stated,<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; no<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; statistics can determine what the judge actually saw or 
  better yet<BR>&gt; &gt; what<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; the<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt; pilot actually flew. So Eric's scores were below the 
  average for a<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; given<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; pilot. Maybe the pilot flew below average in Eric's eyes. 
  This is <BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; why<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; the<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; NATS uses more than one 
  judge. This is a fact of life. This looks<BR>&gt; &gt; very<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; one<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; sided by the 
  NSRCA.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; The 
  NSRCA has no place in this squabble.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;From: "John 
  Pavlick" &lt;jpavlick@idseng.com&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;Reply-To: NSRCA Mailing List 
  &lt;nsrca-discussion@lists.nsrca.org&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;To: "NSRCA Mailing List" 
  &lt;nsrca-discussion@lists.nsrca.org&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;Subject: Re: [NSRCA-discussion] Chapter-5 Going too 
  far.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;Date: Tue, 26 Jun 2007 01:27:00 
  -0400<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;Len,<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; All of the 
  people involved were from D1 - I thought the good ol'<BR>&gt; &gt; 
  boys<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;were in D2 and D3! 
  &lt;LOL&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;John Pavlick<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;http://www.idseng.com<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; ----- Original Message -----<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; From: Leonard Rudy<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; 
  To: NSRCA Mailing List<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; Sent: Monday, 
  June 25, 2007 8:47 PM<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; Subject: Re: 
  [NSRCA-discussion] Chapter-5 Going too far.<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; John,<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt; The conflict may have blossomed like a Hockey 
  Game Conflict,<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; but<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; in<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;the NHL<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt; those "with the power" hear both sides and let 
  each side present<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; their<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;case before<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; the 
  powers to be assign penalties. After the penalties are<BR>&gt; &gt; 
  imposed,<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; the<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;player or<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; individual 
  still has the right to appeal the decision.<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; You say Eric should take whatever the powers to be want 
  and<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; don't<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;make any<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; noise or 
  waves.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; This is a clear message to others 
  who will be judging at<BR>&gt; &gt; meets<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; in<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;the future. DO 
  NOT GIVE THE GOOD OLD BOYS GROUP any low or bad<BR>&gt; &gt; scores<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt;or<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;you may 
  be on the receiving end of some form of penalty that you <BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;will<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;not<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt;like.<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; Len Rudy<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt; "Life is easier if you learn to plow around the 
  stumps" or in<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; other<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;words, do not<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; hand 
  out low scores to the Good Old Boys or you will pay dearly<BR>&gt; &gt; 
  for<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; it<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;one way or<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; 
  another.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; Fred Huber &lt;fhhuber@clearwire.net&gt; wrote:<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt; The penalty does not appear 
  appropriate...<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; It also sounds like it was not applied in a manner 
  consistant<BR>&gt; &gt; with<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; the<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt;rules system.<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; ----- Original Message -----<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; From: John Ferrell<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; 
  To: Don Ramsey ; NSRCA Mailing List<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; 
  Sent: Monday, June 25, 2007 8:12 AM<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; 
  Subject: Re: [NSRCA-discussion] Chapter-5 Going too far.<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; I have the good fortune to not be involved in this 
  dispute. I<BR>&gt; &gt; am<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;only aware of 
  the conflict.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; Not being very good at staying out of arguments, I offer 
  the<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;following observations:<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt; A heated difference of opinions 
  occurred.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; Every one involved is 
  considered a valuable asset to the<BR>&gt; &gt; Pattern<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;Game.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; Things were 
  said that should not have been said.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; 
  Every one thinks they are right.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; There 
  was probably at least one (or may be several) bad<BR>&gt; &gt; call(s)<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt; by<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;some 
  one.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; The conflict blossomed like a Hockey Game Conflict and 
  the <BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; net<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;result was those with the power and responsibility treated 
  it like a<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;Hockey<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;Game Conflict! A serious "time out" was assigned to the 
  individual <BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;at<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;the<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;focal point of 
  the conflict. It was their duty to put the problem on<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;ice.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt; The expectations of the rest of us who value the 
  game and its<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;players is that right or 
  wrong the referee's call must be honored.<BR>&gt; &gt; The<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;referee has the power to impose further penalties if the 
  individual<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;continues to make waves. Right 
  or wrong, this is the was disputes <BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;are<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;handled in the 
  world of competition.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; If the individual was drawn into the conflict by goading 
  it <BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; is<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; still<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;he who gets 
  the penalty.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; Conflict resolution is not something that is natural to 
  the<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; human<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;condition. Conflict is.<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; Eric needs to take 
  the penalty and get on with things.Those <BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; in<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; power<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt;need to accept that the penalty has been applied 
  and to continue the<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;game.<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; WE ALL 
  need to be aware that we either play nice or get sent<BR>&gt; &gt; to<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt; the<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;showers!<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt; Another factor to consider is that the higher 
  profile one<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; achieves<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;in this sport the greater the need to hold that individual 
  to higher<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;standards.<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; Eric is certainly a "high profile" player.<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; John 
  Ferrell W8CCW<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; "Life is easier if you 
  learn to plow<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; around the stumps"<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt; http://DixieNC.US<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; ----- Original 
  Message -----<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; From: Don Ramsey<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt; To: NSRCA Mailing List<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; Sent: Sunday, June 24, 2007 7:32 PM<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; Subject: Re: [NSRCA-discussion] Chapter-5 Going too 
  far.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; I would like to 
  thank Eric for the nice complement in his<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; comment,<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;"To 
  circumvent this conflict of interest problem and to keep the<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;Nationals<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;above 
  reproach, I steeped out of line and asked Don Ramsey to<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;independently<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;choose 
  the judges, Dave could not refuse this method, but I will <BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;tell<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;you<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt;that he got extremely mad at me for doing 
  it."<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; I must respond that for good or bad I've been choosing 
  the<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; finals<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;judges for many years. I started that process when Jeff 
  Hill was<BR>&gt; &gt; Event<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;Director. It 
  must also be stated that I've never had any pressure <BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;of<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;any<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt;kind from contest management regarding who I 
  choose to judge. I try<BR>&gt; &gt; to<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;pick the best candidates and rotate those so no single 
  judge can<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;influence<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;the outcome extradionarly.<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; Don<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt;<BR>&gt; 
  &gt;&gt;&gt;&gt;&gt;&gt;-----------------------------------------------------------------------<BR>&gt; 
  &gt; ---<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; _______________________________________________<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt; NSRCA-discussion mailing list<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; NSRCA-discussion@lists.nsrca.org<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; 
  http://lists.nsrca.org/mailman/listinfo/nsrca-discussion<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt;<BR>&gt; 
  &gt;&gt;&gt;&gt;&gt;&gt;-----------------------------------------------------------------------<BR>&gt; 
  &gt; ---<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; No virus found in this incoming message.<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; Checked by AVG Free Edition.<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; Version: 7.5.472 / Virus Database: 269.9.6/863 - Release 
  <BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; Date:<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;6/23/2007 11:08 AM<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; 
  _______________________________________________<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; NSRCA-discussion mailing list<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; NSRCA-discussion@lists.nsrca.org<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; 
  http://lists.nsrca.org/mailman/listinfo/nsrca-discussion<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; 
  &gt;&gt;<BR>&gt; 
  &gt;&gt;&gt;&gt;&gt;&gt;-----------------------------------------------------------------------<BR>&gt; 
  &gt; -------<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; Building a website is a 
  piece of cake.<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; Yahoo! Small Business 
  gives you all the tools to get online.<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; 
  &gt;&gt;<BR>&gt; 
  &gt;&gt;&gt;&gt;&gt;&gt;-----------------------------------------------------------------------<BR>&gt; 
  &gt; -------<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;&gt; 
  _______________________________________________<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; NSRCA-discussion mailing list<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; NSRCA-discussion@lists.nsrca.org<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt; 
  http://lists.nsrca.org/mailman/listinfo/nsrca-discussion<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;_______________________________________________<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;&gt;NSRCA-discussion mailing list<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;NSRCA-discussion@lists.nsrca.org<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;&gt;http://lists.nsrca.org/mailman/listinfo/nsrca-discussion<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; _______________________________________________<BR>&gt; 
  &gt;&gt; &gt;&gt;&gt;&gt; NSRCA-discussion mailing list<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; NSRCA-discussion@lists.nsrca.org<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; 
  http://lists.nsrca.org/mailman/listinfo/nsrca-discussion<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; -- <BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; No virus found in this incoming message.<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; Checked by AVG Free Edition.<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; Version: 7.5.476 / Virus Database: 269.9.9/872 - Release 
  Date:<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt; 6/26/2007<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt; 6:43 PM<BR>&gt; &gt;&gt; &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; 
  &gt;&gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt;&gt; 
  _______________________________________________<BR>&gt; &gt;&gt; &gt;&gt;&gt; 
  NSRCA-discussion mailing list<BR>&gt; &gt;&gt; &gt;&gt;&gt; 
  NSRCA-discussion@lists.nsrca.org<BR>&gt; &gt;&gt; &gt;&gt;&gt; 
  http://lists.nsrca.org/mailman/listinfo/nsrca-discussion<BR>&gt; &gt;&gt; 
  &gt;&gt;<BR>&gt; &gt;&gt; &gt;&gt; 
  _______________________________________________<BR>&gt; &gt;&gt; &gt;&gt; 
  NSRCA-discussion mailing list<BR>&gt; &gt;&gt; &gt;&gt; 
  NSRCA-discussion@lists.nsrca.org<BR>&gt; &gt;&gt; &gt;&gt; 
  http://lists.nsrca.org/mailman/listinfo/nsrca-discussion<BR>&gt; &gt;&gt; 
  &gt;<BR>&gt; &gt;&gt; &gt; 
  _______________________________________________<BR>&gt; &gt;&gt; &gt; 
  NSRCA-discussion mailing list<BR>&gt; &gt;&gt; &gt; 
  NSRCA-discussion@lists.nsrca.org<BR>&gt; &gt;&gt; &gt; 
  http://lists.nsrca.org/mailman/listinfo/nsrca-discussion<BR>&gt; 
  &gt;&gt;<BR>&gt; &gt;&gt; 
  _______________________________________________<BR>&gt; &gt;&gt; 
  NSRCA-discussion mailing list<BR>&gt; &gt;&gt; 
  NSRCA-discussion@lists.nsrca.org<BR>&gt; &gt;&gt; 
  http://lists.nsrca.org/mailman/listinfo/nsrca-discussion<BR>&gt; &gt;<BR>&gt; 
  &gt; _______________________________________________<BR>&gt; &gt; 
  NSRCA-discussion mailing list<BR>&gt; &gt; 
  NSRCA-discussion@lists.nsrca.org<BR>&gt; &gt; 
  http://lists.nsrca.org/mailman/listinfo/nsrca-discussion <BR>&gt; <BR>&gt; 
  _______________________________________________<BR>&gt; NSRCA-discussion 
  mailing list<BR>&gt; NSRCA-discussion@lists.nsrca.org<BR>&gt; 
  http://lists.nsrca.org/mailman/listinfo/nsrca-discussion<BR><BR>
  <P>
  <HR>

  <P></P>_______________________________________________<BR>NSRCA-discussion 
  mailing 
  list<BR>NSRCA-discussion@lists.nsrca.org<BR>http://lists.nsrca.org/mailman/listinfo/nsrca-discussion</BLOCKQUOTE></BODY></HTML>