[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

ruby-sdl: How do you poll events?

ck1

3/18/2007 3:59:00 PM

The code of my raw main loop is below. I'm sure there are better ways
to poll the event queue. Do you have better ideas?
Also I'm not sure about the garbage collect thing at the bottom...

loop {
offset_x = 0
offset_y = 0
if event.poll != 0
case event.type
when SDL::Event::QUIT
break
when SDL::Event::KEYDOWN
case event.keySym
when SDL::Key::ESCAPE
break
when SDL::Key::LEFT
offset_x = -5
when SDL::Key::RIGHT
offset_x = +5
when SDL::Key::DOWN
offset_y = +5
when SDL::Key::UP
offset_y = -5
end
end
end

before = now
now = SDL::getTicks
dt = now-before
# here comes the rendering finally
player.draw(screen)
enemies.each{|i| i.draw(screen)}
screen.fillRect(0,0,640,480,0)
w.to_sdl(screen, offset_x, offset_y)
screen.fillRect(0,0,640,480,0)
ObjectSpace.garbage_collect
screen.flip
}

10 Answers

Ken Allen

3/18/2007 8:59:00 PM

0

ChrisKaelin wrote:
> The code of my raw main loop is below. I'm sure there are better ways
> to poll the event queue. Do you have better ideas?
> Also I'm not sure about the garbage collect thing at the bottom...
>
> loop {
> offset_x = 0
> offset_y = 0
> if event.poll != 0
> case event.type
> when SDL::Event::QUIT
> break
> when SDL::Event::KEYDOWN
> case event.keySym
> when SDL::Key::ESCAPE
> break
> when SDL::Key::LEFT
> offset_x = -5
> when SDL::Key::RIGHT
> offset_x = +5
> when SDL::Key::DOWN
> offset_y = +5
> when SDL::Key::UP
> offset_y = -5
> end
> end
> end
>
> before = now
> now = SDL::getTicks
> dt = now-before
> # here comes the rendering finally
> player.draw(screen)
> enemies.each{|i| i.draw(screen)}
> screen.fillRect(0,0,640,480,0)
> w.to_sdl(screen, offset_x, offset_y)
> screen.fillRect(0,0,640,480,0)
> ObjectSpace.garbage_collect
> screen.flip
> }
>
>
>
>
Here's the main loop from my game engine. You should poll the event
queue in a loop or you'll only handle one event every iteration of the
main loop.
I handle the input by passing the important info from the event on to
the top element of a stack of input handlers. This means you can easily
switch control
contexts by pushing/popping handlers. This isn't really perfect though.
Ideally it wouldn't be method calls directly on the top element, ideally
the event poller shouldn't
know about the stack and the input handler should allow for allowing
events to continue down the stack. Errr, this may not really have been
what you were asking for.
Also I think there's a helper function in sdl that builds a hash of
keysyms to booleans that stores the keyboard state.
Anyway, I hope this helps you.

def main_loop
@running = true
@last_time = SDL.get_ticks
while @running
while event = SDL::Event2.poll
case event
when SDL::Event2::Quit
quit
when SDL::Event2::KeyDown
@input.last.key_down( event.sym ) unless @input.empty?
when SDL::Event2::KeyUp
@input.last.key_up( event.sym ) unless @input.empty?
when SDL::Event2::MouseButtonDown
@input.last.mouse_down( event.button, P[event.x,event.y] )
when SDL::Event2::MouseButtonUp
@input.last.mouse_up( event.button, P[event.x,event.y] )
end
end
current_time = SDL.get_ticks
if current_time - @last_time > GAME_SPEED
@last_time = current_time
Core.objects.update current_time
end
Core.display.draw
end
end

ck1

3/19/2007 8:24:00 AM

0

Ok, thanks a lot I'll give that one a try. It is remarkable, that
there is not quite good tutorial stuff around. Some part of the C-SDL
tutorial can be transponded to ruby, but not all...

btw, your game engine is not open-source by any chance? ;-)

SonOfLilit

3/19/2007 8:53:00 AM

0

Indeed, the ruby-sdl binding has very poor documentation.

I've used it twice before.

Would you like to cooperate on creating some tutorial for ruby-sdl? I
coudn't do it alone (time) but I'd be glad to help.


Also, check http://rubymentor.rub...

I'm sure there are mentors with SDL experience there (at least if you
consider me a potential mentor, which you should - in other words, I'm
offering mentorship :) )


Aur

ck1

3/19/2007 12:35:00 PM

0


SonOfLilit wrote:
> Indeed, the ruby-sdl binding has very poor documentation.
>
> I've used it twice before.
>
> Would you like to cooperate on creating some tutorial for ruby-sdl? I
> coudn't do it alone (time) but I'd be glad to help.
>
>
> Also, check http://rubymentor.rub...
>
> I'm sure there are mentors with SDL experience there (at least if you
> consider me a potential mentor, which you should - in other words, I'm
> offering mentorship :) )
>
>
> Aur

I like that "the documentation is poor - let's change it" attitude ;-)
Thanks for your offering. But be warned, I'm not a programmer, just a
lazy system administrator (that's why I love ruby, it supports my
lazyness) with general interest in ruby OO programming.
The most easy thing would be a wiki-place, where we could start a
nice, ever-growing tutorial/howto. Advantage would be, that also
experienced SDL programmers could give input then... any idea where we
could start that thing?

Greetings

Chris

SonOfLilit

3/19/2007 3:01:00 PM

0

We can create a RubyForge project for it (with permission from the
author, which I think is japanese) and use the wiki there.

But I was thinking more of a tutorial.

Something that reads and streams.

In the process, of course, reference documentation would also be improved.



Aur

On 3/19/07, ChrisKaelin <ck1@stonedragon.ch> wrote:
>
> SonOfLilit wrote:
> > Indeed, the ruby-sdl binding has very poor documentation.
> >
> > I've used it twice before.
> >
> > Would you like to cooperate on creating some tutorial for ruby-sdl? I
> > coudn't do it alone (time) but I'd be glad to help.
> >
> >
> > Also, check http://rubymentor.rub...
> >
> > I'm sure there are mentors with SDL experience there (at least if you
> > consider me a potential mentor, which you should - in other words, I'm
> > offering mentorship :) )
> >
> >
> > Aur
>
> I like that "the documentation is poor - let's change it" attitude ;-)
> Thanks for your offering. But be warned, I'm not a programmer, just a
> lazy system administrator (that's why I love ruby, it supports my
> lazyness) with general interest in ruby OO programming.
> The most easy thing would be a wiki-place, where we could start a
> nice, ever-growing tutorial/howto. Advantage would be, that also
> experienced SDL programmers could give input then... any idea where we
> could start that thing?
>
> Greetings
>
> Chris
>
>
>

ck1

3/19/2007 3:25:00 PM

0

On 19 Mrz., 16:00, SonOfLilit <sonofli...@gmail.com> wrote:
> We can create a RubyForge project for it (with permission from the
> author, which I think is japanese) and use the wiki there.
>
> But I was thinking more of a tutorial.
>
> Something that reads and streams.
>
> In the process, of course, reference documentation would also be improved.
>
> Aur
>
> On 3/19/07, ChrisKaelin <c...@stonedragon.ch> wrote:
>
>
>
> > SonOfLilit wrote:
> > > Indeed, the ruby-sdl binding has very poor documentation.
>
> > > I've used it twice before.
>
> > > Would you like to cooperate on creating some tutorial for ruby-sdl? I
> > > coudn't do it alone (time) but I'd be glad to help.
>
> > > Also, checkhttp://rubymentor.rub...
>
> > > I'm sure there are mentors with SDL experience there (at least if you
> > > consider me a potential mentor, which you should - in other words, I'm
> > > offering mentorship :) )
>
> > > Aur
>
> > I like that "the documentation is poor - let's change it" attitude ;-)
> > Thanks for your offering. But be warned, I'm not a programmer, just a
> > lazy system administrator (that's why I love ruby, it supports my
> > lazyness) with general interest in ruby OO programming.
> > The most easy thing would be a wiki-place, where we could start a
> > nice, ever-growing tutorial/howto. Advantage would be, that also
> > experienced SDL programmers could give input then... any idea where we
> > could start that thing?
>
> > Greetings
>
> > Chris

Yeah, but still I think a wiki is the best place to start easy
tutorials, that can hyperlink into detailed parts or even the
documentation inside the same wiki. Also my point is, I'm very poor on
spare time atm. and don't know, what progress I'd make on my own...

§?amßuster

10/23/2013 1:53:00 AM

0



=====================================================

OOPS, I SPAMMED THIS INTO A CANADIAN NEWSGROUP

=====================================================

On 10/22/2013 11:56 AM, Rudy Canoza wrote:




REAL NAME: ART LOWE, VICTORIA B.C.

SOME OF HIS OTHER ALIASES . . .

"%" <persent@gmail.com>
"$27 TRILLION to pay for Kyoto"
"$27 TRILLION to pay for Kyoto" <rander3...@gmail.com>
21st Century ZimmerMan <crazy8@nobody.com>
1-20-2013" <01202...@obamas-lastday.com>
"70.67.8...@sjrb.ca" <70.67.8...@sjrb.ca>
"15.1 Million Unemployed in Bummah's Economy"
"A. Hoffman" <invalid@example.com>
A J Byng <ajbyng@yahoo.ch>
"A-Roid Rodriguez" <otterpower@xhotmail.com>
"Adam H. Kerman" <ahk@chinet.com>
"AGW = BS" <n...@nowhere.com>>
Ali Muhammad El Sharif <rander3...@gmail.com>
Alan Brown <alan.brown55@hotmail.com>
AlleyCat <alley@aohell.com>
AlleyCat <mrbawana2u@yahoo.com>
AlleyCat <tracey12_12_12@yahoo.com>
AM <sctu...@comcast.net>
American <Bollo...@GWLIE.org>
American <OneBigAssMistakeAmeri...@Whitehouse.org>
Amhearst <Amhea...@yahoo.com>
Amhearst <Amhea...@yahoo.com>
"Amused" <amused@libtards.com>
Andy <andesyeung@yahoo.ca>
Anonymous Infidel - the anti-political talking head"
apn123547 <bettymar...@gmail.com>
apn123547 <sulliv...@live.ca>
Arrest Nancy Pelosi" <arrest-nancy-pelosi@barackobama.com>
Back At Ya Jack <no...@nobody.org>
Bawana <mrbawana2u@yahoo.com>
Baxter <lbax_spamblock@baxcode.com>
BeamMeUpScotty <Koom-Bay-Ya@space.cadet.NebulaX.com>
BeamMeUpScotty <ThenDestroyEverything@blackhole.nebulax.com>
Beam Me Up Scotty <Then-Destroy-Everyth...@Talk-n-dog.com>
"Biffy The Magic Weiner" <pull-muh-weiner@democrats.org>
"Bill Steele" <obama-fags@70-3-168-216.pools.spcsdns.net>
Billy Job <coldlazarus@ymail.com>
birdog <rander3...@gmail.com>
Bit <bitrot@aukhistory.invalid>
Blob Ford <noone@nowhere.com>
BMarino <bettymar...@gmail.com>
Bob Culp <rander3...@gmail.com>
"Bob Milby Jr." <fat...@yahoo.com>
Bobby Clarke <bobby@clarke.net>
Bollocks <Bollo...@GWLIE.org>
born again reactionary <tracey12em...@gmail.com>
"BOZO - Your Aussie Mate" <b...@excite.com>
Buckwheat <buckwheat@samcro.net>
Bush <Bollock...@GWLIE.org>
Buzz <racist_...@NAMBLA.invalid>
Carl <carl392992@!yahoo.com>
Carl Palmer <czarl@yahoo.ca>
Carl from NASCAR <andesyeung@yahoo.ca>
Carol Kinsey Goman <ckg@f??rbes.com>
Catoni <Bollo...@GWLIE.org>
CB <C...@PrayForMe.com>
Cerebrus <cerebrus@seneca.com>
Charly Barta <Bollo...@GWLIE.org>
Chet <theslapdow...@yahoo.com>
"Chris Harmon" <chris_harmon@thebuzz.com>
Christopher <calderho...@yahoo.com>
Chuck <ch...@yahoo.com>
Chuck <ch...@yahoo.com>
Clark Wilcox <kiiickgummmmer@shytheeads.com>
Claude <nobody@nospam.net>
clay <claynorthw...@gmail.com>
clay <er...@yahoo.ca>
Clay <sulliv...@live.ca>
Clay Northwood <coldlazarus@ymail.com>
Climate Change Bollocks <Bollo...@GWLIE.org>
cloud dreamer <reduce.reuse@recycle.com>
Clyde Armstrong <rightists-r-lazy@nospam.net>
Clyde Armstrong <seneca@microsoft.com>
Clyde Seneca Armstrong <gaylord@yahoo.ca>
Cold Lazarus <jacke@nobody.com>
Congo Bongo <obama-fraud@fbi.gov>
Corruption Scandals <Bollo...@GWLIE.org>
Craig Zimmerman <czimmerman@aol.com>
Crap Detector <cicer...@rogers.com>
Crescentius Vespasianus <jazzyb...@hotmail.com>
D. Stussy <spam+newsgro...@bde-arc.ampr.org>
David Bradley <Sa...@Mexico.mx>
David Price <price@nospam.none>
"Delma T. Ivey" <somewhere@thegreatbeyond.con>
Delvin Benet <DB@nbc.n??t>
"D. Jones" <derekjones23211@gmail.com>
Does Welfare Leech Hansel Still Suck Ken Wiebe?
Doug <andxor...@gmail.com>
"Dr. Jay Maharaj" <mrbawana2u@yahoo.com>
"Dr. No" <doctor.ya...@gmail.com>
dr yacub <doctor.ya...@gmail.com>
duke <duckgumb...@cox.net>
Dustin <abughunter@gmail.com>
E Gisin <Bollo...@GWLIE.org>
E. Gisin <Then-Destroy-Everyth...@Talk-n-dog.com>
Ed Huntress <huntres23@optonline.net>
Eddie Haskell <f...@eeaeae.com>
"Eddie Haskell" <ynhin@sawq.com>
<editor.radiotalkingpoints....@gmail.com>
"Emmanuael Ben-Stein" <st...@zionist.org>
"End Rightist Lies And Propaganda NOW!" <rander3...@gmail.com>
"Ernst P. Muehlbauer" <epMuehlba...@yahoo.com>
<EvictObummahi...@Whitehouse.org>
<fakecapital...@welfarecanada.com>
Father Haskell <fatherhaskell@yahoo.com>
Editor RadioTalkingPoints
Erasmus <eras...@yahoo.com>
Eric Gisin <cicer...@rogers.com>
Eric Gisin <gis...@yahoo.com>
Escape_the_Cult_Now <killef...@invalid.invalid>
Expert <exp...@yahoo.com>
Ezra Stein <eest...@yahoo.com>
Fat Gary <fatgary@yahoo.com>
Fight Back for Christ Sake God Damn You <kingjohnnyforpresident@gmail.com>
FirstPost <AIOE_posters_are_all_liars@AIOE.org>
First Post <ast_p...@LyingLeftistsare.invalid>
First Post <last_p...@LyingLeftistsare.invalid>
"First. Post" <OccupiersDumberThanDirt@invalid.net>
Flint <agent001@section-31.net>
Ford Prefect <anddesyeung@yahoo.ca
Fred <rander3...@gmail.com>
Fred Oinkman <claudiusd...@sbcglobal.net>
Fuk Obama <Bollo...@GWLIE.org>
"G. A." <G...@yahoo.com>
Gary Singh <LimbaughWhispe...@jam.rr.com>
"GaryWillis" <Abstractlogixt@bass.gov>
Gearld Newton <Bollo...@GWLIE.org>
Genesis <er...@utopia.org>
Genocide Rocks <lemone@cox.net>
"Geo. Pomeroy" <geopome...@excite.com>
"Geo. Rush" <gru...@excite.com>
George Plimpton <george@si.not>
Get Lost <rander3...@gmail.com>
"Give Free to Banker Man, Loan Back Maybe Later Scam"
<kingjohnnyforpresidentREMOVEFIRST@gmail.com>
God Is Angry At Obama <Bollo...@GWLIE.org>
God the Globalist Wills Justice Always - Fight Back for Christ Sake God
Damn You <kingjohnnyforpresident@gmail.com>
GOP_Decline_and_Fall <D...@null.net>
GOP = Grand Old Pedophiles <fakecapital...@welfarecanada.com>
GOP = GRAND OLD PEDOPHILES <last_p...@LyingLeftistsare.invalid>
Gordy Brown <bordy232@sympatico.com>
gram <gramnom...@nomail.com>
GravFox <granfox@yahoo.com>
Gray Ghost <grey_ghost471-newsgro...@yahoo.com>
Gray Guest <No_email_for_you@wahoo.com>
Gunner Asch <rightwing...@jam.rr.com>
Gun R Gud <andesyeung@yahoo.ca>
GW Bollocks <bollo...@GW.k00k>
<han...@suckwiebe.cock>
Hansel Soricalist <hhan...@socialist.com>
Hansel Soricalist <hhan...@socialist.com>
Harold Burton <hal.i.burton@hotmail.com>
Harold Gersh <nosurrender@never.net>
Herb <andesyeung@yahoo.ca>
<hitler.was.a.conservat...@GWLIE.org>
Homer Stille Cummings <ag@just_us.g??v>
Horst Hagelsturm <kick.dwieber@stupid.taft.fuckstains.com>
Insane Kanuk Welfare Case Eric Gisin
iPhone <iphone@aol.com>
Ishm...@Rover.com
"Ishm...@Rover.com" <Ishm...@Rover.com>
James <Ja...@socialist.jesus.com>>
james g. keegan <jgkeegan@gma??l.com>
Jerry Jim Wilfors <jjwilf...@yahoo.com>
Jesus Wants Us To Kill Kill Kill <killer@nobody.com>
Jethro B. <jet...@jam.rr.com>
JFK <n...@nowhere.com>
Jim Austin <dickmor...@dickmorris.com>
"Jnrgen Schr??????der" <schroder5...@yahoo.com>
Joe Bruno <joebr...@88hitler.org>
Joe Cooper <ciceroii@rogers.com
Joe Lord <joe.lord3589@hotmail.com>
"Joe Westman" <jwestman@flash.net>
John Fleming <nos...@sprynet.com>
John Jones <Bollo...@GWLIE.org>
John The Capitalist <andesyeung@yahoo.com>
Johnny Johnson <TopCop1988@yahoo.com>
KAOS <rander3...@gmail.com>
"Karl Hess" <karl.hess@studer.de>
Kickin' Asss and Takin' Names <PopUlist349@hotmail.com>
<KickinNamesTakesItInThe...@yahoo.com>
Kickin Names Takes It In The Ass
kill <kill@yahoo.ca>
<kingjohnnyforpresident@hotmail.com>
- King Johnny for President - <kingjohnnyforpresident@gmail.com>
"Kirby Grant" <kgrant@whatzit.org>
Klaus Schadenfreude <klausscha...@yahoo.com>
Klaus Schadenfreude <klausschadenfreude@yahoo.com>
Klaus Voortman <coldlazarus@ymail.com>
Kurt Nicklas <knicklas@plovdiv.bg>
Lance <Bollo...@GWLIE.org>
<last_p...@LyingLeftistsare.invalid>
Last Post <last_p...@LyingLeftistsare.invalid>
Last Post <last_p...@LyingLeftistsare.invalid>
Lazarus <coldlazarus@ymail.com>
Leon Robinovitch <acoupleofnumbersfromleon@gmail.com>
Leonard <Bollo...@GWLIE.org>
leonard <leonardpul...@primus.net>
"leonard7...@gmail.com" <leonard7...@gmail.com>
"leonard7...@primus.ca" <leonard7...@primus.ca>
Leroy N. Soetoro <leroysoetoro@usurper.org>
"Leroy N. Soetoro" <tracey12_12_12@yahoo.com>
"Leroy N. Soetoro" <leonard78sp@gmail.com>
Liberals are vermin <rander3...@gmail.com>
Libertarian Realist <rander3...@gmail.com>
Limbaugh Whisperer <LimbaughWhisperer@jam.rr.com>
Loonard78p <doctor.ya...@gmail.com>
Lucretious <claynorth@gmail.com>
Lucretious <otterpower@xhotmail.com>
Marcus Annaeus Seneca <seneca-the-elder@teaparty.net>
MARK HANSEL <mflanni...@jam.rr.com>
"Marriage Destroyed, Check!" <democrat-faggots@did-it.com>
Matt <matttelles@sprynet.com>
MattB <trdell1234@gmail.com>
MattB b+ <trdell1234@googlemail.com>
MattB++. <trdell1234@(google)mail.com>
Max Boot <max.boot@lathymes.com>
Maximus <romanxleg...@gmail.com>
Mellakon <mellakon8...@yahoo.com>
<messiah2...@yahoo.com>
Mike Flannigan <mflanni...@ja22m.rr.com>
Mike Flannigan <mflanni...@jam.rr.com>
"Milo Pheasant" <mp@spcsdns.net>
Mitchell Holman <nomailverizon.net>
Mohammad Al Kallal <theslapd...@yahoo.com>
Monkey Clumps <spacebrai...@yahoo.com>
Mort Davis <mdav...@yahoo.com>
mrbawana2u <mrbawan...@gmail.com>
mrbawana2u <mrbawan...@yahoo.com>
"Mr.B1ack" <b...@barrk.net>
Mr. Unagi" <catoni88@sympatico.cat>
"Nancy Pelosi Perjury" <insider@trading.us>
"Nancy Pelosi Honesty Foundation" <embezzling-bitch@democrats.org>
Nevill?? M Wiles <kick.dweeb r. ss@taft.sucks.for.sure>
"Nick" <nick.sanders@msn.com>
no evidence against accused is US being abused
<kingjohnnyforpresidentMINUSTHIS@gmail.com>
No_He_Can_Not <nohecan...@mail.com>
Noddin Dog <Then-Destroy-Everyth...@Talk-n-dog.com>
None4U <Non...@jam.rr.com>
None4U <nos...@nospam.none>
Oath Keeper <lnew...@gmail.com>
"Obama Cares" <Obamacare@cocksuckers.com>
Obama's Legion of Flash Mobs @ 7/11.nig
"Obummah's Katrina: TheGulf Oil disaster"
Old Bald John Howard <Bollo...@GWLIE.org>
OneBigAssMistakeAmerica
<OneBigAssMistakeAmeri...@Whitehouse.org>
Orson <orson@orson3.net>
Orson <orson.white@excite.com>
"Overweight Lamprey" <suck-my-weener@democrats.org>
Oxley <ox...@yahoo.com>
pajamasmedia <rander3...@gmail.com>
Palin <e2ollo...@GWLIE.org>
Patriot <Bollo...@GWLIE.org>
Patriot Games <patriotga...@nambla.org>
"Pay Up For Israel - America" <weinst...@yahoo.org>
Peter Muehlbauer <muehba...@jam.rr.com>
Phil <clayno...@gmail.com>
"Pickup Truck Chains Inc." <info@ptci.com>
Pontius Pilate <Bollo...@GWLIE.org>
President O Debacle <GOPedoph...@yahoo.com>
Preston Mulligan <prest...@yahoo.com>
"pul...@primus.ca" <ppul...@primus.ca>
pyjamarama <pyjamaram...@yahoo.com>
pyotr filipivich <Amhearst@ph...@mindspring.comyahoo.com>
pyotr filipivich <pyotrfilipiv...@yahoo.com>
Ramon F Herrera <ramon@conexus.net>
Rander <rander3.127@gmail.com>
Rastus <ras...@yahoo.com>
R??vNsf??n?? <RavNsfan@myhouse.invalid>
Realist <no...@nowhere.com>
ReichTurd <doctor.ya...@gmail.com>
Remailer <ccicer...@rogers.com>
Rich <rander3...@gmail.com>
Rich <rander3...@gmail.com>
RichA <rander3...@gmail.com>
Richard Hanson <Richard_Han...@GaryRosellesAsshole.com>
Right Wing Scum Are Vermin <rander3...@gmail.com>
RIGHTIST FAGGOTS ARE SUBHUMAN VERMIN <rander3...@gmail.com>
Rightists Are Insects <nobody@nospam.net
Rightists are vermin pedophiles who rape children
rob <nobody@nospam.net>
Robert Milby Jr." <Bollo...@GWLIE.org>
Ross John <rossj...@yahoo.com>
ROYAL FLUSH <kingjohnnyforpresident@gmail.com>
"R. P." <robbiep@sjrb.ca>
Rudy Canoza <LaLaLaLaLaLa@philhendrie.con>
Sage2 <isdom...@gmail.com>
Sancho Panza <otterpower@xhotmail.com>
SaPeIsMa <SaPeI...@HotMail.com>
See We Be Me Free G <kingjohnnyforpresidentREMOVETHISFIRST@gmail.com>
"Seneca" <lucretius3@outlook.com>
Seneca <mflannigan@jam.rr.com>
Seneca <seneca@microsoft.com>
Seneca <seneca@yahoo.com>
Seneca <rjlambourn@capitalism.net>
Sir John Howard AC WSCMoF <fag...@yahoo.com>
SkyEyes <skyeyes9@cox.net>
"Starkiller??" <nospam@nospam.none>
Stormin Mormon <cayoung61@hotmail.com>
Straightarrow <hoofhearte...@yahoo.com>
Super Realist <Bollo...@GWLIE.org>
"Survivor - Eye Of The Tiger" <doctor.ya...@gmail.com>
Take Me To Your Leader - Justice is Victory in Freedom for Everyone
<kiNOTTHESEWORDngSjohnnyforpresident@hotmail.com>
"Teabaggers Lie" <Nope@FokYu.com>
The Alex Jones Cult <kingjohnnyforpresidentREMOVETHISFIRST@gmail.com>
The Echoing Word of God <pvt.wilhelm@hotmail.com>
The Real Truth <realtr...@GWLIE.org>
The Reverend Jesus Christ Our Lord <Bollo...@GWLIE.org>
"The S. Cole Militia" <claudius.d...@yahoo.org>
The Secret <kingjohnnyforpresidentREMOVE@gmail.com>
"The_Slapdown" <theslapd...@yahoo.com>
The Zionist <theslapd...@yahoo.com>
"Throw The Bummah Out in '12" <EvictObummahi...@Whitehouse.org>
"Too_Many_Tools" <too_many_liberal_atheists@yahoo.com>
"Too_Many_Tools" <too_many_black_apes@yahoo.com>
too_many_damned_niggers@yahoo.com
"Too_Many_Tools" <too_many_asshole_liberals@yahoo.com>
"Too_Many_Tools" <too_many_liberal_molesters@yahoo.com>
"Too_Many_Tools" <too_many_thieving_niggers@yahoo.com>
"Tom Engstrom" <tengstrom@vancouver.ca>
Topaz <alexva...@hitler.org>
Topaz <mars1933@hotmail.com>
Trace <er...@yahoo.ca>
Tracey12 <tracey12em...@gmail.com>
Tracey12 <tracey12_12_12@yahoo.com>
"Transparent Government" <socialists@whitehouse.us>
Travis <sulliv...@live.ca>
trdell1234@gmail.com
tunderbar <Bollo...@GWLIE.org>
tunderbar <tdcomeau@gmail.com>
Tunderbar <tdcomeau@gmail.com>
tv <tjwilson6...@gmail.com>
vict0r <rander3...@gmail.com>
Violent Chicago Obamathug <Obamat...@WhiteHouse.gov>
WangoTango <Asgard24@mindspring.com>
"Warren E. Harrison" <beat.em.up@shitbags.con>
Wayne <mflannigan3@jam.rr.com>
western auto <western-a...@GWLIE.org>
Western Voice <rander3...@gmail.com>
"Warren E. Harrison" <beat.em.up@shitbags.con>
"White Pussies" <white@invalid.org>
White Western Voice <doctor.ya...@gmail.com>
Wicked Game.. <kingjohnnyforpresiREMOVETHISFIRSTdent@hotmail.com>
WudzUpWitDat? <WudzUpWitDat@WudzUpWitDat.net>
"Yellow Snow" <yellowsnow@shaw.ca>
Yoorghis@Jurgis.net
"ZO, N,,OB" <Bollo...@GWLIE.org>
___________________________________________________________

Rudy Canoza

10/23/2013 12:50:00 PM

0

On 10/22/2013 7:41 PM, DCI wrote:
> On Tuesday, October 22, 2013 11:56:28 AM UTC-7, Rudy Canoza wrote:
>> On 10/22/2013 10:54 AM, Baxter wrote:
>>
>>> hal lillywhite <hlillywh@juno.com> wrote in
>>
>>> news:2c179bbb-a08e-4e09-8ac3-7edbe8392409@googlegroups.com:
>>
>>>
>>
>>>> So the feds have a woman in an ad saying that signing up for Obamacare
>>
>>>> is simple. Then why did it take her 3 days to get signed up?
>>
>>>>
>>
>>>> http://www.nationalreview.com/corner/361887/enrollee-featured...
>>
>>>> egov-video-spent-three-days-trying-enroll-sterling-beard
>>
>>>>
>>
>>>
>>
>>> Why do you think that the website is the only method of signing up? You
>>
>>> can also sign up by phone or actually go somewhere and talk to a live
>>
>>> person.
>>
>>
>>
>> Golly - "going somewhere" to obtain voter ID seems such a silly little
>>
>> inconvenience all of a sudden, doesn't it?
>
> One problem may be, you have to show legitimate ID if you want a Voter ID, like a death certificate (Illinois).

You don't think a person has to furnish ID to obtain coverage from a
public exchange under ACA? I bet one does.

How've you been, Donn?

Rudy Canoza

10/24/2013 5:47:00 AM

0

[followups vandalism by left-wing stooge dupe repaired]


On 10/23/2013 9:04 PM, Wes Groleau wrote:
> On 10-23-2013, 08:49, Rudy Canoza wrote:
>
> I'm not a leftist by a long shot, nor do I like this unaffordable Care Act.
>
> But YOU are obviously a leftist stooge

No.

§?amßuster

10/24/2013 10:38:00 PM

0



=====================================================

OOPS, I SPAMMED THIS INTO A CANADIAN NEWSGROUP AGAIN

=====================================================

On 10/23/2013 10:46 PM, Rudy Canoza wrote:




REAL NAME: ART LOWE, VICTORIA B.C.

SOME OF HIS OTHER ALIASES . . .

"%" <persent@gmail.com>
"$27 TRILLION to pay for Kyoto"
"$27 TRILLION to pay for Kyoto" <rander3...@gmail.com>
21st Century ZimmerMan <crazy8@nobody.com>
1-20-2013" <01202...@obamas-lastday.com>
"70.67.8...@sjrb.ca" <70.67.8...@sjrb.ca>
"15.1 Million Unemployed in Bummah's Economy"
"A. Hoffman" <invalid@example.com>
A J Byng <ajbyng@yahoo.ch>
"A-Roid Rodriguez" <otterpower@xhotmail.com>
"Adam H. Kerman" <ahk@chinet.com>
"AGW = BS" <n...@nowhere.com>>
Ali Muhammad El Sharif <rander3...@gmail.com>
Alan Brown <alan.brown55@hotmail.com>
AlleyCat <alley@aohell.com>
AlleyCat <mrbawana2u@yahoo.com>
AlleyCat <tracey12_12_12@yahoo.com>
AM <sctu...@comcast.net>
American <Bollo...@GWLIE.org>
American <OneBigAssMistakeAmeri...@Whitehouse.org>
Amhearst <Amhea...@yahoo.com>
Amhearst <Amhea...@yahoo.com>
"Amused" <amused@libtards.com>
Andy <andesyeung@yahoo.ca>
Anonymous Infidel - the anti-political talking head"
apn123547 <bettymar...@gmail.com>
apn123547 <sulliv...@live.ca>
Arrest Nancy Pelosi" <arrest-nancy-pelosi@barackobama.com>
Back At Ya Jack <no...@nobody.org>
Bawana <mrbawana2u@yahoo.com>
Baxter <lbax_spamblock@baxcode.com>
BeamMeUpScotty <Koom-Bay-Ya@space.cadet.NebulaX.com>
BeamMeUpScotty <ThenDestroyEverything@blackhole.nebulax.com>
Beam Me Up Scotty <Then-Destroy-Everyth...@Talk-n-dog.com>
"Biffy The Magic Weiner" <pull-muh-weiner@democrats.org>
"Bill Steele" <obama-fags@70-3-168-216.pools.spcsdns.net>
Billy Job <coldlazarus@ymail.com>
birdog <rander3...@gmail.com>
Bit <bitrot@aukhistory.invalid>
Blob Ford <noone@nowhere.com>
BMarino <bettymar...@gmail.com>
Bob Culp <rander3...@gmail.com>
"Bob Milby Jr." <fat...@yahoo.com>
Bobby Clarke <bobby@clarke.net>
Bollocks <Bollo...@GWLIE.org>
born again reactionary <tracey12em...@gmail.com>
"BOZO - Your Aussie Mate" <b...@excite.com>
Buckwheat <buckwheat@samcro.net>
Bush <Bollock...@GWLIE.org>
Buzz <racist_...@NAMBLA.invalid>
Carl <carl392992@!yahoo.com>
Carl Palmer <czarl@yahoo.ca>
Carl from NASCAR <andesyeung@yahoo.ca>
Carol Kinsey Goman <ckg@f????rbes.com>
Catoni <Bollo...@GWLIE.org>
CB <C...@PrayForMe.com>
Cerebrus <cerebrus@seneca.com>
Charly Barta <Bollo...@GWLIE.org>
Chet <theslapdow...@yahoo.com>
"Chris Harmon" <chris_harmon@thebuzz.com>
Christopher <calderho...@yahoo.com>
Chuck <ch...@yahoo.com>
Chuck <ch...@yahoo.com>
Clark Wilcox <kiiickgummmmer@shytheeads.com>
Claude <nobody@nospam.net>
clay <claynorthw...@gmail.com>
clay <er...@yahoo.ca>
Clay <sulliv...@live.ca>
Clay Northwood <coldlazarus@ymail.com>
Climate Change Bollocks <Bollo...@GWLIE.org>
cloud dreamer <reduce.reuse@recycle.com>
Clyde Armstrong <rightists-r-lazy@nospam.net>
Clyde Armstrong <seneca@microsoft.com>
Clyde Seneca Armstrong <gaylord@yahoo.ca>
Cold Lazarus <jacke@nobody.com>
Congo Bongo <obama-fraud@fbi.gov>
Corruption Scandals <Bollo...@GWLIE.org>
Craig Zimmerman <czimmerman@aol.com>
Crap Detector <cicer...@rogers.com>
Crescentius Vespasianus <jazzyb...@hotmail.com>
D. Stussy <spam+newsgro...@bde-arc.ampr.org>
David Bradley <Sa...@Mexico.mx>
David Price <price@nospam.none>
"Delma T. Ivey" <somewhere@thegreatbeyond.con>
Delvin Benet <DB@nbc.n????t>
"D. Jones" <derekjones23211@gmail.com>
Does Welfare Leech Hansel Still Suck Ken Wiebe?
Doug <andxor...@gmail.com>
"Dr. Jay Maharaj" <mrbawana2u@yahoo.com>
"Dr. No" <doctor.ya...@gmail.com>
dr yacub <doctor.ya...@gmail.com>
duke <duckgumb...@cox.net>
Dustin <abughunter@gmail.com>
E Gisin <Bollo...@GWLIE.org>
E. Gisin <Then-Destroy-Everyth...@Talk-n-dog.com>
Ed Huntress <huntres23@optonline.net>
Eddie Haskell <f...@eeaeae.com>
"Eddie Haskell" <ynhin@sawq.com>
<editor.radiotalkingpoints....@gmail.com>
"Emmanuael Ben-Stein" <st...@zionist.org>
"End Rightist Lies And Propaganda NOW!" <rander3...@gmail.com>
"Ernst P. Muehlbauer" <epMuehlba...@yahoo.com>
<EvictObummahi...@Whitehouse.org>
<fakecapital...@welfarecanada.com>
Father Haskell <fatherhaskell@yahoo.com>
Editor RadioTalkingPoints
Erasmus <eras...@yahoo.com>
Eric Gisin <cicer...@rogers.com>
Eric Gisin <gis...@yahoo.com>
Escape_the_Cult_Now <killef...@invalid.invalid>
Expert <exp...@yahoo.com>
Ezra Stein <eest...@yahoo.com>
Fat Gary <fatgary@yahoo.com>
Fight Back for Christ Sake God Damn You <kingjohnnyforpresident@gmail.com>
FirstPost <AIOE_posters_are_all_liars@AIOE.org>
First Post <ast_p...@LyingLeftistsare.invalid>
First Post <last_p...@LyingLeftistsare.invalid>
"First. Post" <OccupiersDumberThanDirt@invalid.net>
Flint <agent001@section-31.net>
Ford Prefect <anddesyeung@yahoo.ca
Fred <rander3...@gmail.com>
Fred Oinkman <claudiusd...@sbcglobal.net>
Fuk Obama <Bollo...@GWLIE.org>
"G. A." <G...@yahoo.com>
Gary Singh <LimbaughWhispe...@jam.rr.com>
"GaryWillis" <Abstractlogixt@bass.gov>
Gearld Newton <Bollo...@GWLIE.org>
Genesis <er...@utopia.org>
Genocide Rocks <lemone@cox.net>
"Geo. Pomeroy" <geopome...@excite.com>
"Geo. Rush" <gru...@excite.com>
George Plimpton <george@si.not>
Get Lost <rander3...@gmail.com>
"Give Free to Banker Man, Loan Back Maybe Later Scam"
<kingjohnnyforpresidentREMOVEFIRST@gmail.com>
God Is Angry At Obama <Bollo...@GWLIE.org>
God the Globalist Wills Justice Always - Fight Back for Christ Sake God
Damn You <kingjohnnyforpresident@gmail.com>
GOP_Decline_and_Fall <D...@null.net>
GOP = Grand Old Pedophiles <fakecapital...@welfarecanada.com>
GOP = GRAND OLD PEDOPHILES <last_p...@LyingLeftistsare.invalid>
Gordy Brown <bordy232@sympatico.com>
gram <gramnom...@nomail.com>
GravFox <granfox@yahoo.com>
Gray Ghost <grey_ghost471-newsgro...@yahoo.com>
Gray Guest <No_email_for_you@wahoo.com>
Gunner Asch <rightwing...@jam.rr.com>
Gun R Gud <andesyeung@yahoo.ca>
GW Bollocks <bollo...@GW.k00k>
<han...@suckwiebe.cock>
Hansel Soricalist <hhan...@socialist.com>
Hansel Soricalist <hhan...@socialist.com>
Harold Burton <hal.i.burton@hotmail.com>
Harold Gersh <nosurrender@never.net>
Herb <andesyeung@yahoo.ca>
<hitler.was.a.conservat...@GWLIE.org>
Homer Stille Cummings <ag@just_us.g????v>
Horst Hagelsturm <kick.dwieber@stupid.taft.fuckstains.com>
Insane Kanuk Welfare Case Eric Gisin
iPhone <iphone@aol.com>
Ishm...@Rover.com
"Ishm...@Rover.com" <Ishm...@Rover.com>
James <Ja...@socialist.jesus.com>>
james g. keegan <jgkeegan@gma????l.com>
Jerry Jim Wilfors <jjwilf...@yahoo.com>
Jesus Wants Us To Kill Kill Kill <killer@nobody.com>
Jethro B. <jet...@jam.rr.com>
JFK <n...@nowhere.com>
Jim Austin <dickmor...@dickmorris.com>
"Jnrgen Schr????????????der" <schroder5...@yahoo.com>
Joe Bruno <joebr...@88hitler.org>
Joe Cooper <ciceroii@rogers.com
Joe Lord <joe.lord3589@hotmail.com>
"Joe Westman" <jwestman@flash.net>
John Fleming <nos...@sprynet.com>
John Jones <Bollo...@GWLIE.org>
John The Capitalist <andesyeung@yahoo.com>
Johnny Johnson <TopCop1988@yahoo.com>
KAOS <rander3...@gmail.com>
"Karl Hess" <karl.hess@studer.de>
Kickin' Asss and Takin' Names <PopUlist349@hotmail.com>
<KickinNamesTakesItInThe...@yahoo.com>
Kickin Names Takes It In The Ass
kill <kill@yahoo.ca>
<kingjohnnyforpresident@hotmail.com>
- King Johnny for President - <kingjohnnyforpresident@gmail.com>
"Kirby Grant" <kgrant@whatzit.org>
Klaus Schadenfreude <klausscha...@yahoo.com>
Klaus Schadenfreude <klausschadenfreude@yahoo.com>
Klaus Voortman <coldlazarus@ymail.com>
Kurt Nicklas <knicklas@plovdiv.bg>
Lance <Bollo...@GWLIE.org>
<last_p...@LyingLeftistsare.invalid>
Last Post <last_p...@LyingLeftistsare.invalid>
Last Post <last_p...@LyingLeftistsare.invalid>
Lazarus <coldlazarus@ymail.com>
Leon Robinovitch <acoupleofnumbersfromleon@gmail.com>
Leonard <Bollo...@GWLIE.org>
leonard <leonardpul...@primus.net>
"leonard7...@gmail.com" <leonard7...@gmail.com>
"leonard7...@primus.ca" <leonard7...@primus.ca>
Leroy N. Soetoro <leroysoetoro@usurper.org>
"Leroy N. Soetoro" <tracey12_12_12@yahoo.com>
"Leroy N. Soetoro" <leonard78sp@gmail.com>
Liberals are vermin <rander3...@gmail.com>
Libertarian Realist <rander3...@gmail.com>
Limbaugh Whisperer <LimbaughWhisperer@jam.rr.com>
Loonard78p <doctor.ya...@gmail.com>
Louis Bricano <lou.bricano_x@gmail.com>
Lucretious <claynorth@gmail.com>
Lucretious <otterpower@xhotmail.com>
Marcus Annaeus Seneca <seneca-the-elder@teaparty.net>
MARK HANSEL <mflanni...@jam.rr.com>
"Marriage Destroyed, Check!" <democrat-faggots@did-it.com>
Matt <matttelles@sprynet.com>
MattB <trdell1234@gmail.com>
MattB b+ <trdell1234@googlemail.com>
MattB++. <trdell1234@(google)mail.com>
Max Boot <max.boot@lathymes.com>
Maximus <romanxleg...@gmail.com>
Mellakon <mellakon8...@yahoo.com>
<messiah2...@yahoo.com>
Mike Flannigan <mflanni...@ja22m.rr.com>
Mike Flannigan <mflanni...@jam.rr.com>
"Milo Pheasant" <mp@spcsdns.net>
Mitchell Holman <nomailverizon.net>
Mohammad Al Kallal <theslapd...@yahoo.com>
Monkey Clumps <spacebrai...@yahoo.com>
Mort Davis <mdav...@yahoo.com>
mrbawana2u <mrbawan...@gmail.com>
mrbawana2u <mrbawan...@yahoo.com>
"Mr.B1ack" <b...@barrk.net>
Mr. Unagi" <catoni88@sympatico.cat>
"Nancy Pelosi Perjury" <insider@trading.us>
"Nancy Pelosi Honesty Foundation" <embezzling-bitch@democrats.org>
Nevill???? M Wiles <kick.dweeb r. ss@taft.sucks.for.sure>
"Nick" <nick.sanders@msn.com>
no evidence against accused is US being abused
<kingjohnnyforpresidentMINUSTHIS@gmail.com>
No_He_Can_Not <nohecan...@mail.com>
Noddin Dog <Then-Destroy-Everyth...@Talk-n-dog.com>
None4U <Non...@jam.rr.com>
None4U <nos...@nospam.none>
Oath Keeper <lnew...@gmail.com>
"Obama Cares" <Obamacare@cocksuckers.com>
Obama's Legion of Flash Mobs @ 7/11.nig
"Obummah's Katrina: TheGulf Oil disaster"
Old Bald John Howard <Bollo...@GWLIE.org>
OneBigAssMistakeAmerica
<OneBigAssMistakeAmeri...@Whitehouse.org>
Orson <orson@orson3.net>
Orson <orson.white@excite.com>
"Overweight Lamprey" <suck-my-weener@democrats.org>
Oxley <ox...@yahoo.com>
pajamasmedia <rander3...@gmail.com>
Palin <e2ollo...@GWLIE.org>
Patriot <Bollo...@GWLIE.org>
Patriot Games <patriotga...@nambla.org>
"Pay Up For Israel - America" <weinst...@yahoo.org>
Peter Muehlbauer <muehba...@jam.rr.com>
Phil <clayno...@gmail.com>
"Pickup Truck Chains Inc." <info@ptci.com>
Pontius Pilate <Bollo...@GWLIE.org>
President O Debacle <GOPedoph...@yahoo.com>
Preston Mulligan <prest...@yahoo.com>
"pul...@primus.ca" <ppul...@primus.ca>
pyjamarama <pyjamaram...@yahoo.com>
pyotr filipivich <Amhearst@ph...@mindspring.comyahoo.com>
pyotr filipivich <pyotrfilipiv...@yahoo.com>
Ramon F Herrera <ramon@conexus.net>
Rander <rander3.127@gmail.com>
Rastus <ras...@yahoo.com>
R????vNsf????n???? <RavNsfan@myhouse.invalid>
Realist <no...@nowhere.com>
ReichTurd <doctor.ya...@gmail.com>
Remailer <ccicer...@rogers.com>
Rich <rander3...@gmail.com>
Rich <rander3...@gmail.com>
RichA <rander3...@gmail.com>
Richard Hanson <Richard_Han...@GaryRosellesAsshole.com>
Right Wing Scum Are Vermin <rander3...@gmail.com>
RIGHTIST FAGGOTS ARE SUBHUMAN VERMIN <rander3...@gmail.com>
Rightists Are Insects <nobody@nospam.net
Rightists are vermin pedophiles who rape children
rob <nobody@nospam.net>
Robert Milby Jr." <Bollo...@GWLIE.org>
Ross John <rossj...@yahoo.com>
ROYAL FLUSH <kingjohnnyforpresident@gmail.com>
"R. P." <robbiep@sjrb.ca>
Rudy Canoza <LaLaLaLaLaLa@philhendrie.con>
Sage2 <isdom...@gmail.com>
Sancho Panza <otterpower@xhotmail.com>
SaPeIsMa <SaPeI...@HotMail.com>
See We Be Me Free G <kingjohnnyforpresidentREMOVETHISFIRST@gmail.com>
"Seneca" <lucretius3@outlook.com>
Seneca <mflannigan@jam.rr.com>
Seneca <seneca@microsoft.com>
Seneca <seneca@yahoo.com>
Seneca <rjlambourn@capitalism.net>
Sir John Howard AC WSCMoF <fag...@yahoo.com>
SkyEyes <skyeyes9@cox.net>
"Starkiller????" <nospam@nospam.none>
Stormin Mormon <cayoung61@hotmail.com>
Straightarrow <hoofhearte...@yahoo.com>
Super Realist <Bollo...@GWLIE.org>
"Survivor - Eye Of The Tiger" <doctor.ya...@gmail.com>
Take Me To Your Leader - Justice is Victory in Freedom for Everyone
<kiNOTTHESEWORDngSjohnnyforpresident@hotmail.com>
"Teabaggers Lie" <Nope@FokYu.com>
The Alex Jones Cult <kingjohnnyforpresidentREMOVETHISFIRST@gmail.com>
The Echoing Word of God <pvt.wilhelm@hotmail.com>
The Real Truth <realtr...@GWLIE.org>
The Reverend Jesus Christ Our Lord <Bollo...@GWLIE.org>
"The S. Cole Militia" <claudius.d...@yahoo.org>
The Secret <kingjohnnyforpresidentREMOVE@gmail.com>
"The_Slapdown" <theslapd...@yahoo.com>
The Zionist <theslapd...@yahoo.com>
"Throw The Bummah Out in '12" <EvictObummahi...@Whitehouse.org>
"Too_Many_Tools" <too_many_liberal_atheists@yahoo.com>
"Too_Many_Tools" <too_many_black_apes@yahoo.com>
too_many_damned_niggers@yahoo.com
"Too_Many_Tools" <too_many_asshole_liberals@yahoo.com>
"Too_Many_Tools" <too_many_liberal_molesters@yahoo.com>
"Too_Many_Tools" <too_many_thieving_niggers@yahoo.com>
"Tom Engstrom" <tengstrom@vancouver.ca>
Topaz <alexva...@hitler.org>
Topaz <mars1933@hotmail.com>
Trace <er...@yahoo.ca>
Tracey12 <tracey12em...@gmail.com>
Tracey12 <tracey12_12_12@yahoo.com>
"Transparent Government" <socialists@whitehouse.us>
Travis <sulliv...@live.ca>
trdell1234@gmail.com
tunderbar <Bollo...@GWLIE.org>
tunderbar <tdcomeau@gmail.com>
Tunderbar <tdcomeau@gmail.com>
tv <tjwilson6...@gmail.com>
vict0r <rander3...@gmail.com>
Violent Chicago Obamathug <Obamat...@WhiteHouse.gov>
Von Hootenberg <Von-Hootenberg@yahoo.se>
WangoTango <Asgard24@mindspring.com>
"Warren E. Harrison" <beat.em.up@shitbags.con>
Wayne <mflannigan3@jam.rr.com>
western auto <western-a...@GWLIE.org>
Western Voice <rander3...@gmail.com>
"Warren E. Harrison" <beat.em.up@shitbags.con>
"White Pussies" <white@invalid.org>
White Western Voice <doctor.ya...@gmail.com>
Wicked Game.. <kingjohnnyforpresiREMOVETHISFIRSTdent@hotmail.com>
WudzUpWitDat? <WudzUpWitDat@WudzUpWitDat.net>
"Yellow Snow" <yellowsnow@shaw.ca>
Yoorghis@Jurgis.net
"ZO, N,,OB" <Bollo...@GWLIE.org>
___________________________________________________________