PDA

View Full Version : How much did you donate TODAY?




yongrel
11-04-2007, 04:59 PM
Enough with the money bombs.

Let's focus on getting Ron Paul into office one day at a time.

So... how much have you donated today?

I've donated $17.86

NinjaPirate
11-04-2007, 05:01 PM
I've been working on homework:
-----------------------

monitor ProducerConsumer;

int item, c, BUFFER_SIZE;
condition full, empty;

void addItem()
{
//Block if buffer is full
while(c == BUFFER_SIZE){
wait(full);
}


item = itemAdd;
c = c++;

if (c == 1){
signal(empty);
}
}

void removeItem()
{

//Block if buffer is empty
while(c == 0){
wait(empty);
}

item = itemRemove;
c = c--;

if (c == BUFFER_SIZE -1){
signal(full)
}

c = 0;
item = 0;
end monitor;

function Consumer()
{
int item;

while(1){

item = ProducerConsumer.removeItem;
itemConsumed;
}
}

function Producer()
{

int item;

while(1){
item = item++;
ProducerConsumer.addItem;
}

//Main Function
void main(){

parbegin(producer, consumer);

}

r3volution
11-04-2007, 05:09 PM
Enough with the money bombs.

Let's focus on getting Ron Paul into office one day at a time.

So... how much have you donated today?

I've donated $17.86

your right , we should forget about the 18000 people that pleged to donate $100 or more in a few hrs . :rolleyes: nice try though ...

dsentell
11-04-2007, 05:38 PM
Well, I have donated no money today . . . I only have so much to donate in the next few days. If I donate today, that just leaves less for tomorrow!

Friday night, all day Saturday and today I donated time working at a gun show spreading the Ron Paul message of freedom!!

http://farm3.static.flickr.com/2377/1863058311_dcb26cca37.jpg?v=0

http://farm3.static.flickr.com/2171/1863058075_3210e7683c.jpg?v=0

olehounddog
11-04-2007, 05:42 PM
Thank you for your generous donation of $25.00!

Contribution received!
Thank you very much for your donation to the Ron Paul 2008 Presidential Campaign.

Your donation will allow us to expand and grow our campaign.

We depend on donors like you to help us spread the message of freedom, peace and prosperity through Ron Paul’s candidacy.


More to follow after midnight

Seth M.
11-04-2007, 05:46 PM
Well, I have donated no money today . . . I only have so much to donate in the next few days. If I donate today, that just leaves less for tomorrow!

Friday night, all day Saturday and today I donated time working at a gun show spreading the Ron Paul message of freedom!!

http://farm3.static.flickr.com/2377/1863058311_dcb26cca37.jpg?v=0

http://farm3.static.flickr.com/2171/1863058075_3210e7683c.jpg?v=0


OMG that's awesome! Keep up the good work. I would say that is equivalent to oh.. about $500 - $800. Thank you!

How did it go?

BillyDkid
11-04-2007, 05:50 PM
Enough with the money bombs.

Let's focus on getting Ron Paul into office one day at a time.

So... how much have you donated today?

I've donated $17.86What? What are you talking about? The Nov. 5 thing is a done deal. What would be the point now in trying to diminish it? If you like I can donate $5 now and then do my $100 tomorrow - if that will make you feel better.

r3volution
11-04-2007, 05:50 PM
Well, I have donated no money today . . . I only have so much to donate in the next few days. If I donate today, that just leaves less for tomorrow!

Friday night, all day Saturday and today I donated time working at a gun show spreading the Ron Paul message of freedom!!

http://farm3.static.flickr.com/2377/1863058311_dcb26cca37.jpg?v=0

http://farm3.static.flickr.com/2171/1863058075_3210e7683c.jpg?v=0


you are a patriot ..

kylejack
11-04-2007, 05:51 PM
Well, I have donated no money today . . . I only have so much to donate in the next few days. If I donate today, that just leaves less for tomorrow!

Friday night, all day Saturday and today I donated time working at a gun show spreading the Ron Paul message of freedom!!

http://farm3.static.flickr.com/2377/1863058311_dcb26cca37.jpg?v=0

http://farm3.static.flickr.com/2171/1863058075_3210e7683c.jpg?v=0

GO GO GO

dsentell
11-04-2007, 05:55 PM
OMG that's awesome! Keep up the good work. I would say that is equivalent to oh.. about $500 - $800. Thank you!

How did it go?


It was quite inspiring! We educated a lot of people -- many of whom had never heard of the good Doctor. I believe we converted several from Huck and a few from Fred (there weren't that many for Fred to begin with:D)

Somehow, it was sort of sad though -- the show was much smaller than ones in the past and not nearly as many people attended. I believe it was a reflection of the economy. . .

dsentell
11-04-2007, 06:00 PM
OMG that's awesome! Keep up the good work. I would say that is equivalent to oh.. about $500 - $800.


You are right --

Ron Paul Message of Freedom: Priceless! :) :) :) :)

Mortikhi
11-04-2007, 06:27 PM
I've been working on homework:
-----------------------

monitor ProducerConsumer;

int item, c, BUFFER_SIZE;
condition full, empty;

void addItem()
{
//Block if buffer is full
while(c == BUFFER_SIZE){
wait(full);
}


item = itemAdd;
c = c++;

if (c == 1){
signal(empty);
}
}

void removeItem()
{

//Block if buffer is empty
while(c == 0){
wait(empty);
}

item = itemRemove;
c = c--;

if (c == BUFFER_SIZE -1){
signal(full)
}

c = 0;
item = 0;
end monitor;

function Consumer()
{
int item;

while(1){

item = ProducerConsumer.removeItem;
itemConsumed;
}
}

function Producer()
{

int item;

while(1){
item = item++;
ProducerConsumer.addItem;
}

//Main Function
void main(){

parbegin(producer, consumer);

}

Aw, look. Its a little baby program!
tickle, tickle, tickle.
Ain't it cute :p

kylejack
11-04-2007, 06:28 PM
Aw, look. Its a little baby program!
tickle, tickle, tickle.
Ain't it cute :p
Yeah, the variable and sub-routine names are way too boring. How about using RP08 as a variable? :D