Feeling the need to underscore the family 'incompetence in leadership
curse', the lowest bush, continues his politically motivated attack on Teri
Shivo. Like his looser brother in DC, he can't seem to find any useful work.
Partial fix:
foreach bush in politics
rm *bush*
end foreach
"FanJet" <FanJet27@hotmail.com> wrote in message
news:2qVse.309$Q75.66024@newshog.newsread.com...[color=blue]
> Feeling the need to underscore the family 'incompetence in leadership
> curse', the lowest bush, continues his politically motivated attack on[/color]
Teri[color=blue]
> Shivo. Like his looser brother in DC, he can't seem to find any useful[/color]
work.[color=blue]
>
> Partial fix:
> foreach bush in politics
> rm *bush*
> end foreach[/color]
Isn't it sick! He just can't help himself but to now have her husband
investigated...Why? Because he once said he called 911 at 5am instead of
4:30am which he said once before, even though all along he always claimed he
did not know the exact time. The great thing about the Republicans is they
do all the work for the Dems to make themselves look incompetent.
FanJet wrote:[color=blue]
> Feeling the need to underscore the family 'incompetence in leadership
> curse', the lowest bush, continues his politically motivated attack on Teri
> Shivo. Like his looser brother in DC, he can't seem to find any useful work.
>
> Partial fix:
> foreach bush in politics
> rm *bush*
> end foreach
>[/color]
while ($idiot = pop @republicans) {
delete $idiot if $idiot eq 'BUSH';
}
Learning Richard wrote:[color=blue]
> FanJet wrote:[color=green]
>> Feeling the need to underscore the family 'incompetence in leadership
>> curse', the lowest bush, continues his politically motivated attack
>> on Teri Shivo. Like his looser brother in DC, he can't seem to find
>> any useful work.
>>
>> Partial fix:
>> foreach bush in politics
>> rm *bush*
>> end foreach
>>[/color]
>
> while ($idiot = pop @republicans) {
> delete $idiot if $idiot eq 'BUSH';
> }
>
> much more elegant -- perl[/color]
Hopefully I didn't bump into something real. My intention was pseudo-code.
As far ad I'm concerned, the language jury is still out. I do like RPN from
the time when HP made real/really made caluculators - pre-China.
FanJet wrote:[color=blue]
> Learning Richard wrote:[color=green]
> > FanJet wrote:[color=darkred]
> >> Feeling the need to underscore the family 'incompetence in leadership
> >> curse', the lowest bush, continues his politically motivated attack
> >> on Teri Shivo. Like his looser brother in DC, he can't seem to find
> >> any useful work.
> >>
> >> Partial fix:
> >> foreach bush in politics
> >> rm *bush*
> >> end foreach
> >>[/color]
> >
> > while ($idiot = pop @republicans) {
> > delete $idiot if $idiot eq 'BUSH';
> > }
> >
> > much more elegant -- perl[/color]
>
> Hopefully I didn't bump into something real. My intention was pseudo-code.
> As far ad I'm concerned, the language jury is still out. I do like RPN from
> the time when HP made real/really made caluculators - pre-China.
>[/color]
Hey I thought this was just a team effort -- you roll out the
pseudocode, then I actually write the delete_bush.pl program!
On 18 Jun 2005 07:43:54 -0700, "Learning Richard"
<learningrichard@gmail.com> wrote:
[color=blue]
>
>
>FanJet wrote:[color=green]
>> Feeling the need to underscore the family 'incompetence in leadership
>> curse', the lowest bush, continues his politically motivated attack on Teri
>> Shivo. Like his looser brother in DC, he can't seem to find any useful work.
>>
>> Partial fix:
>> foreach bush in politics
>> rm *bush*
>> end foreach
>>[/color]
>
>while ($idiot = pop @republicans) {
> delete $idiot if $idiot eq 'BUSH';
>}
>
>much more elegant -- perl[/color]
But more accurate[1]:
while ($member = (@republicans)) {
delete $member if $member eq 'idiot';
}
Why stop with just one?
[1] accurate except int he same flawwed us of the delete function.
[1a] pop would have the effect of removing ALL elements of
@republicans but there are a few that we'd want to have around.
--
gburnore@databasix dot com
---------------------------------------------------------------------------
How you look depends on where you go.
---------------------------------------------------------------------------
Gary L. Burnore | ÝÛ³ºÝ³Þ³ºÝ³³Ýۺݳ޳ºÝ³Ý³Þ³ºÝ³ÝÝÛ³
| ÝÛ³ºÝ³Þ³ºÝ³³Ýۺݳ޳ºÝ³Ý³Þ³ºÝ³ÝÝÛ³
DataBasix | ÝÛ³ºÝ³Þ³ºÝ³³Ýۺݳ޳ºÝ³Ý³Þ³ºÝ³ÝÝÛ³
| ÝÛ³ 3 4 1 4 2 ݳ޳ 6 9 0 6 9 ÝÛ³
Black Helicopter Repair Svcs Division | Official Proof of Purchase
===========================================================================
Want one? GET one! [url]http://signup.databasix.com[/url]
===========================================================================
Gary L. Burnore wrote:[color=blue]
> On 18 Jun 2005 07:43:54 -0700, "Learning Richard"
> <learningrichard@gmail.com> wrote:
>[color=green]
> >
> >
> >FanJet wrote:[color=darkred]
> >> Feeling the need to underscore the family 'incompetence in leadership
> >> curse', the lowest bush, continues his politically motivated attack onTeri
> >> Shivo. Like his looser brother in DC, he can't seem to find any usefulwork.
> >>
> >> Partial fix:
> >> foreach bush in politics
> >> rm *bush*
> >> end foreach
> >>[/color]
> >
> >while ($idiot = pop @republicans) {
> > delete $idiot if $idiot eq 'BUSH';
> >}
> >
> >much more elegant -- perl[/color]
>
> But more accurate[1]:
>
> while ($member = (@republicans)) {
> delete $member if $member eq 'idiot';
> }
>
> Why stop with just one?
>
> [1] accurate except int he same flawwed us of the delete function.
> [1a] pop would have the effect of removing ALL elements of
> @republicans but there are a few that we'd want to have around.
>[/color]
fine then, lets use a hash:
for $moron (keys %republicans) {
# for burnore -- just assume the keys are unique integers
# this allows us to have more than one BUSH
if (uc $republicans{$moron} eq 'BUSH') {
delete $republicans{$moron};
}
else {
admonish ($republicans{$moron});
}
}
sub admonish {
my $moron = shift;
print "$moron is still a moron\n";
}
[color=blue]
>
> --
> gburnore@databasix dot com
> ---------------------------------------------------------------------------
> How you look depends on where you go.
> ---------------------------------------------------------------------------
> Gary L. Burnore | ÝÛ³ºÝ³Þ³ºÝ³³Ýۺݳ޳ºÝ³Ý³Þ³ºÝ³ÝÝÛ³
> | ÝÛ³ºÝ³Þ³ºÝ³³Ýۺݳ޳ºÝ³Ý³Þ³ºÝ³ÝÝÛ³
> DataBasix | ÝÛ³ºÝ³Þ³ºÝ³³Ýۺݳ޳ºÝ³Ý³Þ³ºÝ³ÝÝÛ³
> | ÝÛ³ 3 4 1 4 2 ݳ޳ 6 9 0 6 9 ÝÛ³
> Black Helicopter Repair Svcs Division | Official Proof of Purchase
> ===========================================================================
> Want one? GET one! [url]http://signup.databasix.com[/url]
> ===========================================================================[/color]
Learning Richard wrote:[color=blue]
> Gary L. Burnore wrote:[color=green]
>> On 18 Jun 2005 07:43:54 -0700, "Learning Richard"
>> <learningrichard@gmail.com> wrote:
>>[color=darkred]
>>>
>>>
>>> FanJet wrote:
>>>> Feeling the need to underscore the family 'incompetence in
>>>> leadership curse', the lowest bush, continues his politically
>>>> motivated attack on Teri Shivo. Like his looser brother in DC, he
>>>> can't seem to find any useful work.
>>>>
>>>> Partial fix:
>>>> foreach bush in politics
>>>> rm *bush*
>>>> end foreach
>>>>
>>>
>>> while ($idiot = pop @republicans) {
>>> delete $idiot if $idiot eq 'BUSH';
>>> }
>>>
>>> much more elegant -- perl[/color]
>>
>> But more accurate[1]:
>>
>> while ($member = (@republicans)) {
>> delete $member if $member eq 'idiot';
>> }
>>
>> Why stop with just one?
>>
>> [1] accurate except int he same flawwed us of the delete function.
>> [1a] pop would have the effect of removing ALL elements of
>> @republicans but there are a few that we'd want to have around.
>>[/color]
>
> fine then, lets use a hash:
>
>
>
> for $moron (keys %republicans) {
> # for burnore -- just assume the keys are unique integers
> # this allows us to have more than one BUSH
> if (uc $republicans{$moron} eq 'BUSH') {
> delete $republicans{$moron};
> }
> else {
> admonish ($republicans{$moron});
> }
> }
>
> sub admonish {
> my $moron = shift;
> print "$moron is still a moron\n";
> }[/color]
Learning Richard wrote:[color=blue]
> Gary L. Burnore wrote:[color=green]
>> On 18 Jun 2005 07:43:54 -0700, "Learning Richard"
>> <learningrichard@gmail.com> wrote:
>>[color=darkred]
>>>
>>>
>>> FanJet wrote:
>>>> Feeling the need to underscore the family 'incompetence in
>>>> leadership curse', the lowest bush, continues his politically
>>>> motivated attack on Teri Shivo. Like his looser brother in DC, he
>>>> can't seem to find any useful work.
>>>>
>>>> Partial fix:
>>>> foreach bush in politics
>>>> rm *bush*
>>>> end foreach
>>>>
>>>
>>> while ($idiot = pop @republicans) {
>>> delete $idiot if $idiot eq 'BUSH';
>>> }
>>>
>>> much more elegant -- perl[/color]
>>
>> But more accurate[1]:
>>
>> while ($member = (@republicans)) {
>> delete $member if $member eq 'idiot';
>> }
>>
>> Why stop with just one?
>>
>> [1] accurate except int he same flawwed us of the delete function.
>> [1a] pop would have the effect of removing ALL elements of
>> @republicans but there are a few that we'd want to have around.
>>[/color]
>
> fine then, lets use a hash:
>
>
>
> for $moron (keys %republicans) {
> # for burnore -- just assume the keys are unique integers
> # this allows us to have more than one BUSH
> if (uc $republicans{$moron} eq 'BUSH') {
> delete $republicans{$moron};
> }
> else {
> admonish ($republicans{$moron});
> }
> }
>
> sub admonish {
> my $moron = shift;
> print "$moron is still a moron\n";
> }[/color]
Hmm funny, I tried sending something in Binary but it didn't post. I wonder
why....
Learning Richard wrote:[color=blue]
> Gary L. Burnore wrote:[color=green]
>> On 18 Jun 2005 07:43:54 -0700, "Learning Richard"
>> <learningrichard@gmail.com> wrote:
>>[color=darkred]
>>>
>>>
>>> FanJet wrote:
>>>> Feeling the need to underscore the family 'incompetence in
>>>> leadership curse', the lowest bush, continues his politically
>>>> motivated attack on Teri Shivo. Like his looser brother in DC, he
>>>> can't seem to find any useful work.
>>>>
>>>> Partial fix:
>>>> foreach bush in politics
>>>> rm *bush*
>>>> end foreach
>>>>
>>>
>>> while ($idiot = pop @republicans) {
>>> delete $idiot if $idiot eq 'BUSH';
>>> }
>>>
>>> much more elegant -- perl[/color]
>>
>> But more accurate[1]:
>>
>> while ($member = (@republicans)) {
>> delete $member if $member eq 'idiot';
>> }
>>
>> Why stop with just one?
>>
>> [1] accurate except int he same flawwed us of the delete function.
>> [1a] pop would have the effect of removing ALL elements of
>> @republicans but there are a few that we'd want to have around.
>>[/color]
>
> fine then, lets use a hash:
>
>
>
> for $moron (keys %republicans) {
> # for burnore -- just assume the keys are unique integers
> # this allows us to have more than one BUSH
> if (uc $republicans{$moron} eq 'BUSH') {
> delete $republicans{$moron};
> }
> else {
> admonish ($republicans{$moron});
> }
> }
>
> sub admonish {
> my $moron = shift;
> print "$moron is still a moron\n";
> }[/color]
The AutoGuide.com network consists of the largest network of enthusiast-owned enthusiast-operated automotive communities.
AutoGuide.com provides the latest car reviews, auto show coverage, new car prices, and automotive news. The AutoGuide network operates more than 100 automotive forums where our users consult peers for shopping information and advice, and share opinions as a community.
ToyotaNation.com is an independent Toyota/Lexus enthusiast website. ToyotaNation.com is not sponsored by or in any way affiliated with Toyota Motor Sales, USA, Inc. The Toyota, Lexus and Scion names and logos are trademarks owned by Toyota Motor Sales, USA, Inc.