[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Compare Arrays

Tj Superfly

10/12/2008 3:51:00 AM

Hey, I just have a quick question about arrays.

I have two different ones that I would like to compare.

Example:

Array 1: cats, dogs, monkeys

Array 2: cats, fish, dogs, birds, monkeys

Now, I would like to compare array 2 with array 1 and have it spit out
any words that aren't in both... if that makes sense.

So what the program should output is fish, monkeys.
--
Posted via http://www.ruby-....

18 Answers

Todd Benson

10/12/2008 4:58:00 AM

0

On Sat, Oct 11, 2008 at 10:50 PM, Tj Superfly <nonstickglue@verizon.net> wrote:
> Hey, I just have a quick question about arrays.
>
> I have two different ones that I would like to compare.
>
> Example:
>
> Array 1: cats, dogs, monkeys
>
> Array 2: cats, fish, dogs, birds, monkeys
>
> Now, I would like to compare array 2 with array 1 and have it spit out
> any words that aren't in both... if that makes sense.
>
> So what the program should output is fish, monkeys.

Hmm. I'm assuming you are looking for ["fish", "birds"], and if you
are, do union, then subtract intersection...

a = %w( cats dogs monkeys )
b = %w( cats fish dogs birds monkeys )

(a | b) - (a & b)

More than two arrays is left as an exercise :)

Todd

Peda, Allan (NYC-GIS)

10/12/2008 5:00:00 AM

0

You are doing set operations, so I looked there first:
require 'set'
s1 =3D Set.new [1, 2, 7, 8, 9, 45, 98, 85, 39] =20
s2 =3D Set.new [1, 45, 66, 4, 84, 98 ]

p (s1 - s2) | (s2 - s1)



-----Original Message-----
From: Tj Superfly [mailto:nonstickglue@verizon.net]
Sent: Sat 10/11/2008 11:50 PM
To: ruby-talk ML
Subject: Compare Arrays
=20
Hey, I just have a quick question about arrays.

I have two different ones that I would like to compare.

Example:

Array 1: cats, dogs, monkeys

Array 2: cats, fish, dogs, birds, monkeys

Now, I would like to compare array 2 with array 1 and have it spit out
any words that aren't in both... if that makes sense.

So what the program should output is fish, monkeys.
--=20
Posted via http://www.ruby-....




This message contains information which may be confidential and privileged.
Unless you are the intended recipient (or authorized to receive this message
for the intended recipient), you may not use, copy, disseminate or disclose=
to
anyone the message or any information contained in the message. If you have
received the message in error, please advise the sender by reply e-mail, and
delete the message. Thank you very much.
(A)

christoforever@gmail.com

10/12/2008 5:01:00 AM

0

On Oct 11, 11:50 pm, Tj Superfly <nonstickg...@verizon.net> wrote:
> Hey, I just have a quick question about arrays.
>
> I have two different ones that I would like to compare.
>
> Example:
>
> Array 1: cats, dogs, monkeys
>
> Array 2: cats, fish, dogs, birds, monkeys
>
> Now, I would like to compare array 2 with array 1 and have it spit out
> any words that aren't in both... if that makes sense.
>
> So what the program should output is fish, monkeys.
> --
> Posted viahttp://www.ruby-....

Im assuming the elements in the array are strings so.....

so we have arr1 and arr2 with the previous mentioned elements i guess
you could make a method something like this and then depending on how
your comparing these elements...

def print_elements_not_in_array
arr1.each do |temp|
arr2.each do |temp2|
puts " #{temp2} " if temp1 != temp2
end
end
end

Brian Candler

10/12/2008 9:21:00 AM

0

Tj Superfly wrote:
> Hey, I just have a quick question about arrays.
>
> I have two different ones that I would like to compare.
>
> Example:
>
> Array 1: cats, dogs, monkeys
>
> Array 2: cats, fish, dogs, birds, monkeys
>
> Now, I would like to compare array 2 with array 1 and have it spit out
> any words that aren't in both... if that makes sense.
>
> So what the program should output is fish, monkeys.

If arr2 is always a superset of arr1, then arr2-arr1

--
Posted via http://www.ruby-....

Rüdiger Brahns

10/12/2008 2:39:00 PM

0

Todd Benson schrieb:
> On Sat, Oct 11, 2008 at 10:50 PM, Tj Superfly <nonstickglue@verizon.net> wrote:
>> Hey, I just have a quick question about arrays.
>>
>> I have two different ones that I would like to compare.
>>
>> Example:
>>
>> Array 1: cats, dogs, monkeys
>>
>> Array 2: cats, fish, dogs, birds, monkeys
>>
>> Now, I would like to compare array 2 with array 1 and have it spit out
>> any words that aren't in both... if that makes sense.
>>
>> So what the program should output is fish, monkeys.
>
> Hmm. I'm assuming you are looking for ["fish", "birds"], and if you
> are, do union, then subtract intersection...
>
> a = %w( cats dogs monkeys )
> b = %w( cats fish dogs birds monkeys )
>
> (a | b) - (a & b)

Why not just

b - a

? But as I understand him what he wants is

a & b

BeeSting Alergy

4/19/2014 8:11:00 PM

0

Vandar wrote:
> On 4/19/2014 1:00 PM, BeeSting Alergy wrote:
> > Vandar wrote:
> > > On 4/18/2014 6:29 PM, BeeSting Alergy wrote:
> > > > by Sadie Gurman
> > > > Associated Press
> > > > April 18, 2014 5:20PM
> > > >
> > > > DENVER (AP) ? Two recent deaths have stoked concerns about
> > > > Colorado's recreational marijuana industry and the effects of
> > > > pot edibles that can be exponentially more potent than a joint.
> > > >
> > > > Authorities have not formally linked the shooting death of
> > > > 44-year-old Kristine Kirk to consumption of marijuana candy by
> > > > her husband.
> > >
> > > That's because there's no link. They said he was on pain meds for
> > > his back and hallucinating. Marijuana doesn't cause
> > > hallucinations.
> >
> > In large enough doses, THC can induce auditory and visual
> > hallucination. http://en.wikipedia.org/wiki/Effects_o...
>
> The referenced study only says "might" and is referring to medical
> marijuana. But it doesn't. The cause of that guy's reality break was
> probably his pain meds on top of an already existing psychosis.

Sooo... you're saying that marijuana HAD NOTHING to do with it?

Are you serious?

> > > > However, in the case of 19-year-old Wyoming college student Levy
> > > > Thamba Pongi, an autopsy report listed marijuana intoxication
> > > > as a significant contributing factor in his death when he fell
> > > > from a hotel balcony.
> > >
> > > I'd say a more significant contributing factor would be gravity.
> >
> > "Man who plunged from Denver balcony ate 6x (SIX TIMES) recommended
> > amount of pot cookie" http://bit....
>
> Marijuana didn't kill him. It doesn't make you jump off buildings.

<*SIGH*>

I guess marijuana is a harmless drug.

You're kidding, right?

> > > > Twenty-six people have reported poisonings from marijuana
> > > > edibles this year in Colorado. Six were children.
> > > >
> > > > Supporters of the pot law and some experts say the issues can be
> > > > largely addressed through better regulations.
> > > >
> > > > The deaths occurred as Colorado lawmakers are scrambling to
> > > > create safety regulations for the largely unmonitored marijuana
> > > > snacks.
> > > >
> > > > ===============================================================
> > > >
> > > > VIDEO is here: http://bit...
> > > >
> > > > Colorado state police are on the scene of a serious crash
> > > > involving a school bus in Larimer County.
> > > >
> > > > UPDATE: 12:40p ET: FOX 31 reported that the driver of the car
> > > > was flown to a hospital with life-threatening injuries. The
> > > > three children are being treated for minor injuries, and the
> > > > bus driver has more serious but not life-threatening injuries.
> > > >
> > > > New video shows a car crushed underneath the back of the school
> > > > bus. At least three children on board the bus were reportedly
> > > > injured.
> > > >
> > > > Colorado State Patrol tweeted:
> > > >
> > > > +++++++++++++++++++++++++++++++
> > > > @CSP_Larimer
> > > >
> > > > We are working a very serious crash involving a school bus and
> > > > passenger vehicle on LCR 82 and LCR 15.
> > > > 9:45 AM - 18 Apr 2014
> > > > +++++++++++++++++++++++++++++++
> > > >
> > > > Fox 31 Denver reported more details:
> > > >
> > > > The accident occurred at 1125 E. Larimer County Road 82, near
> > > > the intersection with Larimer County Road 15.
> > > >
> > > > The Poudre Valley School District said nine children en route to
> > > > Eyestone Elementary School and Wellington Middle School were on
> > > > board the bus. Three of the children have injures, but it is not
> > > > known their extent.
> > >
> > > Nothing about marijuana in that story.
> >
> > Not yet.
> >
> > Just so you know.
>
> Serious question: Have you ever smoked it, to know its effects first
> hand?

I've smoked more marijuana to last two lifetimes... haven't smoked for
a good while now. But I do know that marijuana gets one high, so this
HAS to have some effect on the brain.

I'm not advocating that what Colorado & Washington did should be
overturned. Indeed, just the opposite - I think ALL DRUGS should be
legal... it should be up to the person to judge what's good for him/her
and not some outside entity. Some folks will not judge wisely; those
folks should seek help and be helped.

However, it simply amazes me that the same folks who would agree that
alcohol can make people do some very stupid things (like drive drunk or
kill their spouses)... and cigarettes can destroy the body (throat,
mouth, lips, lungs, etc) can - in the same conversation - say that
marijuana (something that is smoked and alters judgment/brain function)
has little to no effect on a person.

IMHO, that's not rational thinking.

Just so you know.

BeeSting Alergy

4/19/2014 9:42:00 PM

0

Vandar wrote:
> On 4/19/2014 4:10 PM, BeeSting Alergy wrote:
> > Vandar wrote:
> > > On 4/19/2014 1:00 PM, BeeSting Alergy wrote:
> > > > Vandar wrote:
> > > > > On 4/18/2014 6:29 PM, BeeSting Alergy wrote:
> > > > > > by Sadie Gurman
> > > > > > Associated Press
> > > > > > April 18, 2014 5:20PM
> > > > > >
> > > > > > DENVER (AP) ? Two recent deaths have stoked concerns about
> > > > > > Colorado's recreational marijuana industry and the effects
> > > > > > of pot edibles that can be exponentially more potent than a
> > > > > > joint.
> > > > > >
> > > > > > Authorities have not formally linked the shooting death of
> > > > > > 44-year-old Kristine Kirk to consumption of marijuana candy
> > > > > > by her husband.
> > > > >
> > > > > That's because there's no link. They said he was on pain meds
> > > > > for his back and hallucinating. Marijuana doesn't cause
> > > > > hallucinations.
> > > >
> > > > In large enough doses, THC can induce auditory and visual
> > > > hallucination. http://en.wikipedia.org/wiki/Effects_o...
> > >
> > > The referenced study only says "might" and is referring to medical
> > > marijuana. But it doesn't. The cause of that guy's reality break
> > > was probably his pain meds on top of an already existing
> > > psychosis.
> >
> > Sooo... you're saying that marijuana HAD NOTHING to do with it?
> >
> > Are you serious?
> >
> > > > > > However, in the case of 19-year-old Wyoming college student
> > > > > > Levy Thamba Pongi, an autopsy report listed marijuana
> > > > > > intoxication as a significant contributing factor in his
> > > > > > death when he fell from a hotel balcony.
> > > > >
> > > > > I'd say a more significant contributing factor would be
> > > > > gravity.
> > > >
> > > > "Man who plunged from Denver balcony ate 6x (SIX TIMES)
> > > > recommended amount of pot cookie" http://bit....
> > >
> > > Marijuana didn't kill him. It doesn't make you jump off buildings.
> >
> > <*SIGH*>
> >
> > I guess marijuana is a harmless drug.
> >
> > You're kidding, right?
> >
> > > > > > Twenty-six people have reported poisonings from marijuana
> > > > > > edibles this year in Colorado. Six were children.
> > > > > >
> > > > > > Supporters of the pot law and some experts say the issues
> > > > > > can be largely addressed through better regulations.
> > > > > >
> > > > > > The deaths occurred as Colorado lawmakers are scrambling to
> > > > > > create safety regulations for the largely unmonitored
> > > > > > marijuana snacks.
> > > > > >
> > > > > > ============================================================
> > > > > > ===
> > > > > >
> > > > > > VIDEO is here: http://bit...
> > > > > >
> > > > > > Colorado state police are on the scene of a serious crash
> > > > > > involving a school bus in Larimer County.
> > > > > >
> > > > > > UPDATE: 12:40p ET: FOX 31 reported that the driver of the
> > > > > > car was flown to a hospital with life-threatening injuries.
> > > > > > The three children are being treated for minor injuries,
> > > > > > and the bus driver has more serious but not
> > > > > > life-threatening injuries.
> > > > > >
> > > > > > New video shows a car crushed underneath the back of the
> > > > > > school bus. At least three children on board the bus were
> > > > > > reportedly injured.
> > > > > >
> > > > > > Colorado State Patrol tweeted:
> > > > > >
> > > > > > +++++++++++++++++++++++++++++++
> > > > > > @CSP_Larimer
> > > > > >
> > > > > > We are working a very serious crash involving a school bus
> > > > > > and passenger vehicle on LCR 82 and LCR 15.
> > > > > > 9:45 AM - 18 Apr 2014
> > > > > > +++++++++++++++++++++++++++++++
> > > > > >
> > > > > > Fox 31 Denver reported more details:
> > > > > >
> > > > > > The accident occurred at 1125 E. Larimer County Road 82,
> > > > > > near the intersection with Larimer County Road 15.
> > > > > >
> > > > > > The Poudre Valley School District said nine children en
> > > > > > route to Eyestone Elementary School and Wellington Middle
> > > > > > School were on board the bus. Three of the children have
> > > > > > injures, but it is not known their extent.
> > > > >
> > > > > Nothing about marijuana in that story.
> > > >
> > > > Not yet.
> > > >
> > > > Just so you know.
> > >
> > > Serious question: Have you ever smoked it, to know its effects
> > > first hand?
> >
> > I've smoked more marijuana to last two lifetimes... haven't smoked
> > for a good while now. But I do know that marijuana gets one high,
> > so this HAS to have some effect on the brain.
>
> Of course it does, but it hasn't been shown to be detrimental.

It took DECADES for "the powers that be" to tell the public the dangers
of smoking cigarettes. Sometimes I watch old "Perry Mason" episodes. To
see how, just about, everyone smoked at that time and how "gallant" it
was for a man to light a woman's cigarette is shocking - in this day
and age.

When you typed "...but it hasn't been shown..." you left out one word:

"YET"

> > I'm not advocating that what Colorado & Washington did should be
> > overturned. Indeed, just the opposite - I think ALL DRUGS should be
> > legal... it should be up to the person to judge what's good for
> > him/her and not some outside entity. Some folks will not judge
> > wisely; those folks should seek help and be helped.
> >
> > However, it simply amazes me that the same folks who would agree
> > that alcohol can make people do some very stupid things (like drive
> > drunk or kill their spouses)... and cigarettes can destroy the body
> > (throat, mouth, lips, lungs, etc) can - in the same conversation -
> > say that marijuana (something that is smoked and alters
> > judgment/brain function) has little to no effect on a person.
> >
> > IMHO, that's not rational thinking.
>
> It has an effect, but it doesn't doesn't compel you to leap to your
> death or shoot your wife.

Sooo... alcohol MIGHT cause one to do just that, but marijuana does not?

What have you been smoking?

> To think it does isn't rational either.

But it's not a weed-induced fantasyland.

Just so you know.

BeeSting Alergy

4/19/2014 10:38:00 PM

0

MattC-minus is posting while drunk (again):
> "BeeSting Alergy" <BeeSting.Alergy@email.com> wrote in
> news:wd0j0zndh2licfe003@reader.albasani.net:
>
> > Vandar wrote:
> >> On 4/19/2014 4:10 PM, BeeSting Alergy wrote:
> >> > Vandar wrote:
> >> > > On 4/19/2014 1:00 PM, BeeSting Alergy wrote:
> >> > > > Vandar wrote:
> >> > > > > On 4/18/2014 6:29 PM, BeeSting Alergy wrote:
> >> > > > > > by Sadie Gurman
> >> > > > > > Associated Press
> >> > > > > > April 18, 2014 5:20PM
> >> > > > > >
> >> > > > > > DENVER (AP) ? Two recent deaths have stoked concerns
> about >> > > > > > Colorado's recreational marijuana industry and the
> effects >> > > > > > of pot edibles that can be exponentially more
> potent than a >> > > > > > joint.
> >> > > > > >
> >> > > > > > Authorities have not formally linked the shooting death
> of >> > > > > > 44-year-old Kristine Kirk to consumption of marijuana
> candy >> > > > > > by her husband.
> >> > > > >
> >> > > > > That's because there's no link. They said he was on pain
> meds >> > > > > for his back and hallucinating. Marijuana doesn't
> cause >> > > > > hallucinations.
> >> > > >
> >> > > > In large enough doses, THC can induce auditory and visual
> >> > > > hallucination.
> http://en.wikipedia.org/wiki/Effects_o...
> >> > >
> >> > > The referenced study only says "might" and is referring to
> medical
> >> > > marijuana. But it doesn't. The cause of that guy's reality
> break >> > > was probably his pain meds on top of an already existing
> >> > > psychosis.
> >> >
> >> > Sooo... you're saying that marijuana HAD NOTHING to do with it?
> >> >
> >> > Are you serious?
> >> >
> >> > > > > > However, in the case of 19-year-old Wyoming college
> student >> > > > > > Levy Thamba Pongi, an autopsy report listed
> marijuana >> > > > > > intoxication as a significant contributing
> factor in his >> > > > > > death when he fell from a hotel balcony.
> >> > > > >
> >> > > > > I'd say a more significant contributing factor would be
> >> > > > > gravity.
> >> > > >
> >> > > > "Man who plunged from Denver balcony ate 6x (SIX TIMES)
> >> > > > recommended amount of pot cookie" http://bit....
> >> > >
> >> > > Marijuana didn't kill him. It doesn't make you jump off
> buildings.
> >> >
> >> > <*SIGH*>
> >> >
> >> > I guess marijuana is a harmless drug.
> >> >
> >> > You're kidding, right?
> >> >
> >> > > > > > Twenty-six people have reported poisonings from marijuana
> >> > > > > > edibles this year in Colorado. Six were children.
> >> > > > > >
> >> > > > > > Supporters of the pot law and some experts say the issues
> >> > > > > > can be largely addressed through better regulations.
> >> > > > > >
> >> > > > > > The deaths occurred as Colorado lawmakers are scrambling
> to >> > > > > > create safety regulations for the largely unmonitored
> >> > > > > > marijuana snacks.
> >> > > > > >
> >> > > > > >
> ============================================================
> >> > > > > > ===
> >> > > > > >
> >> > > > > > VIDEO is here: http://bit...
> >> > > > > >
> >> > > > > > Colorado state police are on the scene of a serious crash
> >> > > > > > involving a school bus in Larimer County.
> >> > > > > >
> >> > > > > > UPDATE: 12:40p ET: FOX 31 reported that the driver of the
> >> > > > > > car was flown to a hospital with life-threatening
> injuries. >> > > > > > The three children are being treated for
> minor injuries, >> > > > > > and the bus driver has more serious but
> not >> > > > > > life-threatening injuries.
> >> > > > > >
> >> > > > > > New video shows a car crushed underneath the back of the
> >> > > > > > school bus. At least three children on board the bus were
> >> > > > > > reportedly injured.
> >> > > > > >
> >> > > > > > Colorado State Patrol tweeted:
> >> > > > > >
> >> > > > > > +++++++++++++++++++++++++++++++
> >> > > > > > @CSP_Larimer
> >> > > > > >
> >> > > > > > We are working a very serious crash involving a school
> bus >> > > > > > and passenger vehicle on LCR 82 and LCR 15.
> >> > > > > > 9:45 AM - 18 Apr 2014
> >> > > > > > +++++++++++++++++++++++++++++++
> >> > > > > >
> >> > > > > > Fox 31 Denver reported more details:
> >> > > > > >
> >> > > > > > The accident occurred at 1125 E. Larimer County Road 82,
> >> > > > > > near the intersection with Larimer County Road 15.
> >> > > > > >
> >> > > > > > The Poudre Valley School District said nine children en
> >> > > > > > route to Eyestone Elementary School and Wellington Middle
> >> > > > > > School were on board the bus. Three of the children have
> >> > > > > > injures, but it is not known their extent.
> >> > > > >
> >> > > > > Nothing about marijuana in that story.
> >> > > >
> >> > > > Not yet.
> >> > > >
> >> > > > Just so you know.
> >> > >
> >> > > Serious question: Have you ever smoked it, to know its effects
> >> > > first hand?
> >> >
> >> > I've smoked more marijuana to last two lifetimes... haven't
> smoked >> > for a good while now. But I do know that marijuana gets
> one high, >> > so this HAS to have some effect on the brain.
> >>
> >> Of course it does, but it hasn't been shown to be detrimental.
> >
> > It took DECADES for "the powers that be" to tell the public the
> dangers
> > of smoking cigarettes. Sometimes I watch old "Perry Mason"
> > episodes.
> To
> > see how, just about, everyone smoked at that time and how "gallant"
> > it was for a man to light a woman's cigarette is shocking - in this
> > day and age.
> >
> > When you typed "...but it hasn't been shown..." you left out one
> > word:
> >
> > "YET"
> >
> >> > I'm not advocating that what Colorado & Washington did should be
> >> > overturned. Indeed, just the opposite - I think ALL DRUGS should
> be >> > legal... it should be up to the person to judge what's good
> for >> > him/her and not some outside entity. Some folks will not
> judge >> > wisely; those folks should seek help and be helped.
> >> >
> >> > However, it simply amazes me that the same folks who would agree
> >> > that alcohol can make people do some very stupid things (like
> drive >> > drunk or kill their spouses)... and cigarettes can destroy
> the body >> > (throat, mouth, lips, lungs, etc) can - in the same
> conversation - >> > say that marijuana (something that is smoked and
> alters >> > judgment/brain function) has little to no effect on a
> person. >> >
> >> > IMHO, that's not rational thinking.
> >>
> >> It has an effect, but it doesn't doesn't compel you to leap to your
> >> death or shoot your wife.
> >
> > Sooo... alcohol MIGHT cause one to do just that, but marijuana does
> not?
>
> Because, you know, BeeStink knows this stuff.

It's really fun when BeeSting Alergy & Steve get underneath the thin
skin of C-minus. I remember when I made him sign his name as "mat".

*LSHTARDMF*
(Laughing So Hard Tears Are Running Down My Face)

This clown goes completely off the rails.

Fun to watch.

Just so you know.

BeeSting Alergy

4/19/2014 10:51:00 PM

0

MattC-minus caught a virus from urt-spawn of Iris <LOL>:
> "BeeSting Alergy" <BeeSting.Alergy@email.com> wrote in
> news:matt0zow02nio37008@reader.albasani.net:
>
> > MattC-minus is posting while drunk (again):
> >> "BeeSting Alergy" <BeeSting.Alergy@email.com> wrote in
> >> news:wd0j0zndh2licfe003@reader.albasani.net:
> >>
> >> > Vandar wrote:
> >> >> On 4/19/2014 4:10 PM, BeeSting Alergy wrote:
> >> >> > Vandar wrote:
> >> >> > > On 4/19/2014 1:00 PM, BeeSting Alergy wrote:
> >> >> > > > Vandar wrote:
> >> >> > > > > On 4/18/2014 6:29 PM, BeeSting Alergy wrote:
> >> >> > > > > > by Sadie Gurman
> >> >> > > > > > Associated Press
> >> >> > > > > > April 18, 2014 5:20PM
> >> >> > > > > >
> >> >> > > > > > DENVER (AP) ? Two recent deaths have stoked concerns
> >> about >> > > > > > Colorado's recreational marijuana industry and
> the >> effects >> > > > > > of pot edibles that can be exponentially
> more >> potent than a >> > > > > > joint.
> >> >> > > > > >
> >> >> > > > > > Authorities have not formally linked the shooting
> death >> of >> > > > > > 44-year-old Kristine Kirk to consumption of
> marijuana >> candy >> > > > > > by her husband.
> >> >> > > > >
> >> >> > > > > That's because there's no link. They said he was on pain
> >> meds >> > > > > for his back and hallucinating. Marijuana doesn't
> >> cause >> > > > > hallucinations.
> >> >> > > >
> >> >> > > > In large enough doses, THC can induce auditory and visual
> >> >> > > > hallucination.
> >> http://en.wikipedia.org/wiki/Effects_o...
> >> >> > >
> >> >> > > The referenced study only says "might" and is referring to
> >> medical
> >> >> > > marijuana. But it doesn't. The cause of that guy's reality
> >> break >> > > was probably his pain meds on top of an already
> existing >> >> > > psychosis.
> >> >> >
> >> >> > Sooo... you're saying that marijuana HAD NOTHING to do with
> it? >> >> >
> >> >> > Are you serious?
> >> >> >
> >> >> > > > > > However, in the case of 19-year-old Wyoming college
> >> student >> > > > > > Levy Thamba Pongi, an autopsy report listed
> >> marijuana >> > > > > > intoxication as a significant contributing
> >> factor in his >> > > > > > death when he fell from a hotel balcony.
> >> >> > > > >
> >> >> > > > > I'd say a more significant contributing factor would be
> >> >> > > > > gravity.
> >> >> > > >
> >> >> > > > "Man who plunged from Denver balcony ate 6x (SIX TIMES)
> >> >> > > > recommended amount of pot cookie" http://bit....
> >> >> > >
> >> >> > > Marijuana didn't kill him. It doesn't make you jump off
> >> buildings.
> >> >> >
> >> >> > <*SIGH*>
> >> >> >
> >> >> > I guess marijuana is a harmless drug.
> >> >> >
> >> >> > You're kidding, right?
> >> >> >
> >> >> > > > > > Twenty-six people have reported poisonings from
> marijuana
> >> >> > > > > > edibles this year in Colorado. Six were children.
> >> >> > > > > >
> >> >> > > > > > Supporters of the pot law and some experts say the
> issues
> >> >> > > > > > can be largely addressed through better regulations.
> >> >> > > > > >
> >> >> > > > > > The deaths occurred as Colorado lawmakers are
> scrambling >> to >> > > > > > create safety regulations for the
> largely unmonitored >> >> > > > > > marijuana snacks.
> >> >> > > > > >
> >> >> > > > > >
> >> ============================================================
> >> >> > > > > > ===
> >> >> > > > > >
> >> >> > > > > > VIDEO is here: http://bit...
> >> >> > > > > >
> >> >> > > > > > Colorado state police are on the scene of a serious
> crash
> >> >> > > > > > involving a school bus in Larimer County.
> >> >> > > > > >
> >> >> > > > > > UPDATE: 12:40p ET: FOX 31 reported that the driver of
> the
> >> >> > > > > > car was flown to a hospital with life-threatening
> >> injuries. >> > > > > > The three children are being treated for
> >> minor injuries, >> > > > > > and the bus driver has more serious
> but >> not >> > > > > > life-threatening injuries.
> >> >> > > > > >
> >> >> > > > > > New video shows a car crushed underneath the back of
> the >> >> > > > > > school bus. At least three children on board the
> bus were
> >> >> > > > > > reportedly injured.
> >> >> > > > > >
> >> >> > > > > > Colorado State Patrol tweeted:
> >> >> > > > > >
> >> >> > > > > > +++++++++++++++++++++++++++++++
> >> >> > > > > > @CSP_Larimer
> >> >> > > > > >
> >> >> > > > > > We are working a very serious crash involving a school
> >> bus >> > > > > > and passenger vehicle on LCR 82 and LCR 15.
> >> >> > > > > > 9:45 AM - 18 Apr 2014
> >> >> > > > > > +++++++++++++++++++++++++++++++
> >> >> > > > > >
> >> >> > > > > > Fox 31 Denver reported more details:
> >> >> > > > > >
> >> >> > > > > > The accident occurred at 1125 E. Larimer County Road
> 82, >> >> > > > > > near the intersection with Larimer County Road 15.
> >> >> > > > > >
> >> >> > > > > > The Poudre Valley School District said nine children
> en >> >> > > > > > route to Eyestone Elementary School and Wellington
> Middle
> >> >> > > > > > School were on board the bus. Three of the children
> have >> >> > > > > > injures, but it is not known their extent.
> >> >> > > > >
> >> >> > > > > Nothing about marijuana in that story.
> >> >> > > >
> >> >> > > > Not yet.
> >> >> > > >
> >> >> > > > Just so you know.
> >> >> > >
> >> >> > > Serious question: Have you ever smoked it, to know its
> effects >> >> > > first hand?
> >> >> >
> >> >> > I've smoked more marijuana to last two lifetimes... haven't
> >> smoked >> > for a good while now. But I do know that marijuana gets
> >> one high, >> > so this HAS to have some effect on the brain.
> >> >>
> >> >> Of course it does, but it hasn't been shown to be detrimental.
> >> >
> >> > It took DECADES for "the powers that be" to tell the public the
> >> dangers
> >> > of smoking cigarettes. Sometimes I watch old "Perry Mason"
> >> > episodes.
> >> To
> >> > see how, just about, everyone smoked at that time and how
> "gallant" >> > it was for a man to light a woman's cigarette is
> shocking - in this >> > day and age.
> >> >
> >> > When you typed "...but it hasn't been shown..." you left out one
> >> > word:
> >> >
> >> > "YET"
> >> >
> >> >> > I'm not advocating that what Colorado & Washington did should
> be >> >> > overturned. Indeed, just the opposite - I think ALL DRUGS
> should >> be >> > legal... it should be up to the person to judge
> what's good >> for >> > him/her and not some outside entity. Some
> folks will not >> judge >> > wisely; those folks should seek help and
> be helped. >> >> >
> >> >> > However, it simply amazes me that the same folks who would
> agree >> >> > that alcohol can make people do some very stupid things
> (like >> drive >> > drunk or kill their spouses)... and cigarettes
> can destroy >> the body >> > (throat, mouth, lips, lungs, etc) can -
> in the same >> conversation - >> > say that marijuana (something that
> is smoked and >> alters >> > judgment/brain function) has little to
> no effect on a >> person. >> >
> >> >> > IMHO, that's not rational thinking.
> >> >>
> >> >> It has an effect, but it doesn't doesn't compel you to leap to
> your
> >> >> death or shoot your wife.
> >> >
> >> > Sooo... alcohol MIGHT cause one to do just that, but marijuana
> does >> not?
> >>
> >> Because, you know, BeeStink knows this stuff.
> >
> > It's really fun when BeeSting Alergy & Steve get underneath the
> > thin skin of C-minus. I remember when I made him sign his name
> > as "mat".
> >
> > *LSHTARDMF*
> > (Laughing So Hard Tears Are Running Down My Face)
> >
> > This clown goes completely off the rails.
> >
> > Fun to watch.
>
> Did you forget which 'nym you were posting under, Stink?

Ahhhh... the "urt-spawn of Iris" syndrome... thinking (and I use that
term loosely) that EVERYONE who doesn't agree with your dumbass is a
sock-puppet.

Very funny indeed.

Just so you know.

BeeSting Alergy

4/19/2014 11:12:00 PM

0

MattC-minus is using the "I'm a dumbass" excuse <LOL>:
> "BeeSting Alergy" <BeeSting.Alergy@email.com> wrote in
> news:pn0j0zp6x2nzu6b009@reader.albasani.net:
>
> > MattC-minus caught a virus from urt-spawn of Iris <LOL>:
> >> "BeeSting Alergy" <BeeSting.Alergy@email.com> wrote in
> >> news:matt0zow02nio37008@reader.albasani.net:
> >>
> >> > MattC-minus is posting while drunk (again):
> >> >> "BeeSting Alergy" <BeeSting.Alergy@email.com> wrote in
> >> >> news:wd0j0zndh2licfe003@reader.albasani.net:
> >> >>
> >> >> > Vandar wrote:
> >> >> >> On 4/19/2014 4:10 PM, BeeSting Alergy wrote:
> >> >> >> > Vandar wrote:
> >> >> >> > > On 4/19/2014 1:00 PM, BeeSting Alergy wrote:
> >> >> >> > > > Vandar wrote:
> >> >> >> > > > > On 4/18/2014 6:29 PM, BeeSting Alergy wrote:
> >> >> >> > > > > > by Sadie Gurman
> >> >> >> > > > > > Associated Press
> >> >> >> > > > > > April 18, 2014 5:20PM
> >> >> >> > > > > >
> >> >> >> > > > > > DENVER (AP) ? Two recent deaths have stoked
> concerns >> >> about >> > > > > > Colorado's recreational marijuana
> industry and >> the >> effects >> > > > > > of pot edibles that can
> be exponentially >> more >> potent than a >> > > > > > joint.
> >> >> >> > > > > >
> >> >> >> > > > > > Authorities have not formally linked the shooting
> >> death >> of >> > > > > > 44-year-old Kristine Kirk to consumption
> of >> marijuana >> candy >> > > > > > by her husband.
> >> >> >> > > > >
> >> >> >> > > > > That's because there's no link. They said he was on
> pain
> >> >> meds >> > > > > for his back and hallucinating. Marijuana
> doesn't >> >> cause >> > > > > hallucinations.
> >> >> >> > > >
> >> >> >> > > > In large enough doses, THC can induce auditory and
> visual >> >> >> > > > hallucination.
> >> >> http://en.wikipedia.org/wiki/Effects_o...
> >> >> >> > >
> >> >> >> > > The referenced study only says "might" and is referring
> to >> >> medical
> >> >> >> > > marijuana. But it doesn't. The cause of that guy's
> reality >> >> break >> > > was probably his pain meds on top of an
> already >> existing >> >> > > psychosis.
> >> >> >> >
> >> >> >> > Sooo... you're saying that marijuana HAD NOTHING to do with
> >> it? >> >> >
> >> >> >> > Are you serious?
> >> >> >> >
> >> >> >> > > > > > However, in the case of 19-year-old Wyoming college
> >> >> student >> > > > > > Levy Thamba Pongi, an autopsy report listed
> >> >> marijuana >> > > > > > intoxication as a significant
> contributing >> >> factor in his >> > > > > > death when he fell from
> a hotel balcony.
> >> >> >> > > > >
> >> >> >> > > > > I'd say a more significant contributing factor would
> be >> >> >> > > > > gravity.
> >> >> >> > > >
> >> >> >> > > > "Man who plunged from Denver balcony ate 6x (SIX TIMES)
> >> >> >> > > > recommended amount of pot cookie"
> http://bit.... >> >> >> > >
> >> >> >> > > Marijuana didn't kill him. It doesn't make you jump off
> >> >> buildings.
> >> >> >> >
> >> >> >> > <*SIGH*>
> >> >> >> >
> >> >> >> > I guess marijuana is a harmless drug.
> >> >> >> >
> >> >> >> > You're kidding, right?
> >> >> >> >
> >> >> >> > > > > > Twenty-six people have reported poisonings from
> >> marijuana
> >> >> >> > > > > > edibles this year in Colorado. Six were children.
> >> >> >> > > > > >
> >> >> >> > > > > > Supporters of the pot law and some experts say the
> >> issues
> >> >> >> > > > > > can be largely addressed through better
> regulations. >> >> >> > > > > >
> >> >> >> > > > > > The deaths occurred as Colorado lawmakers are
> >> scrambling >> to >> > > > > > create safety regulations for the
> >> largely unmonitored >> >> > > > > > marijuana snacks.
> >> >> >> > > > > >
> >> >> >> > > > > >
> >> >> ============================================================
> >> >> >> > > > > > ===
> >> >> >> > > > > >
> >> >> >> > > > > > VIDEO is here: http://bit...
> >> >> >> > > > > >
> >> >> >> > > > > > Colorado state police are on the scene of a
> serious >> crash
> >> >> >> > > > > > involving a school bus in Larimer County.
> >> >> >> > > > > >
> >> >> >> > > > > > UPDATE: 12:40p ET: FOX 31 reported that the driver
> of >> the
> >> >> >> > > > > > car was flown to a hospital with life-threatening
> >> >> injuries. >> > > > > > The three children are being treated for
> >> >> minor injuries, >> > > > > > and the bus driver has more serious
> >> but >> not >> > > > > > life-threatening injuries.
> >> >> >> > > > > >
> >> >> >> > > > > > New video shows a car crushed underneath the back
> of >> the >> >> > > > > > school bus. At least three children on
> board the >> bus were
> >> >> >> > > > > > reportedly injured.
> >> >> >> > > > > >
> >> >> >> > > > > > Colorado State Patrol tweeted:
> >> >> >> > > > > >
> >> >> >> > > > > > +++++++++++++++++++++++++++++++
> >> >> >> > > > > > @CSP_Larimer
> >> >> >> > > > > >
> >> >> >> > > > > > We are working a very serious crash involving a
> school
> >> >> bus >> > > > > > and passenger vehicle on LCR 82 and LCR 15.
> >> >> >> > > > > > 9:45 AM - 18 Apr 2014
> >> >> >> > > > > > +++++++++++++++++++++++++++++++
> >> >> >> > > > > >
> >> >> >> > > > > > Fox 31 Denver reported more details:
> >> >> >> > > > > >
> >> >> >> > > > > > The accident occurred at 1125 E. Larimer County
> Road >> 82, >> >> > > > > > near the intersection with Larimer County
> Road 15.
> >> >> >> > > > > >
> >> >> >> > > > > > The Poudre Valley School District said nine
> children >> en >> >> > > > > > route to Eyestone Elementary School
> and Wellington >> Middle
> >> >> >> > > > > > School were on board the bus. Three of the children
> >> have >> >> > > > > > injures, but it is not known their extent.
> >> >> >> > > > >
> >> >> >> > > > > Nothing about marijuana in that story.
> >> >> >> > > >
> >> >> >> > > > Not yet.
> >> >> >> > > >
> >> >> >> > > > Just so you know.
> >> >> >> > >
> >> >> >> > > Serious question: Have you ever smoked it, to know its
> >> effects >> >> > > first hand?
> >> >> >> >
> >> >> >> > I've smoked more marijuana to last two lifetimes... haven't
> >> >> smoked >> > for a good while now. But I do know that marijuana
> gets
> >> >> one high, >> > so this HAS to have some effect on the brain.
> >> >> >>
> >> >> >> Of course it does, but it hasn't been shown to be
> detrimental. >> >> >
> >> >> > It took DECADES for "the powers that be" to tell the public
> the >> >> dangers
> >> >> > of smoking cigarettes. Sometimes I watch old "Perry Mason"
> >> >> > episodes.
> >> >> To
> >> >> > see how, just about, everyone smoked at that time and how
> >> "gallant" >> > it was for a man to light a woman's cigarette is
> >> shocking - in this >> > day and age.
> >> >> >
> >> >> > When you typed "...but it hasn't been shown..." you left out
> one >> >> > word:
> >> >> >
> >> >> > "YET"
> >> >> >
> >> >> >> > I'm not advocating that what Colorado & Washington did
> should >> be >> >> > overturned. Indeed, just the opposite - I think
> ALL DRUGS >> should >> be >> > legal... it should be up to the person
> to judge >> what's good >> for >> > him/her and not some outside
> entity. Some >> folks will not >> judge >> > wisely; those folks
> should seek help and >> be helped. >> >> >
> >> >> >> > However, it simply amazes me that the same folks who would
> >> agree >> >> > that alcohol can make people do some very stupid
> things >> (like >> drive >> > drunk or kill their spouses)... and
> cigarettes >> can destroy >> the body >> > (throat, mouth, lips,
> lungs, etc) can - >> in the same >> conversation - >> > say that
> marijuana (something that >> is smoked and >> alters >> >
> judgment/brain function) has little to >> no effect on a >> person.
> >> > >> >> >> > IMHO, that's not rational thinking.
> >> >> >>
> >> >> >> It has an effect, but it doesn't doesn't compel you to leap
> to >> your
> >> >> >> death or shoot your wife.
> >> >> >
> >> >> > Sooo... alcohol MIGHT cause one to do just that, but marijuana
> >> does >> not?
> >> >>
> >> >> Because, you know, BeeStink knows this stuff.
> >> >
> >> > It's really fun when BeeSting Alergy & Steve get underneath the
> >> > thin skin of C-minus. I remember when I made him sign his name
> >> > as "mat".
> >> >
> >> > LSHTARDMF
> >> > (Laughing So Hard Tears Are Running Down My Face)
> >> >
> >> > This clown goes completely off the rails.
> >> >
> >> > Fun to watch.
> >>
> >> Did you forget which 'nym you were posting under, Stink?
> >
> > Ahhhh... the "urt-spawn of Iris" syndrome... thinking (and I use
> > that term loosely) that EVERYONE who doesn't agree with your
> > dumbass is a sock-puppet.
>
> ooo, didums not notice that you referred to yourself in the third
> person?

Which BeeSting Alergy has been known to do... often.
Your point?

> Guess you must not be too bright.

C'mon... humor me...

d/dx tan (x) = ?

*LSHTARDMF*
(Laughing So Hard Tears Are Running Down My Face)

Just so you know.