Tuesday, November 2, 2010

opendems: Polling Place API - RaiseYourVote - Commit to #Vote Challenge - #2010

Definitely worth a look!

Regards,
proclus
http://www.gnu-darwin.org/

via Open.Dems by gillc on 10/28/10

The Polling Place Lookup API allows users to create applications that include a dynamic polling place lookup based on a voter’s street address and ZIP code.

Authentication

Using any DNC API requires the use of an API key. By default all API key users are rate limited to 100 requests per hour – if your application requires a higher volume key, please get in touch.

Looking Up a Polling Place

To lookup a polling place, perform a GET on http://services.dnc.org/places/lookup with the following parameters:

Required parameters:

  • address: the URL-encoded house number and street name to look up, i.e. “address=2005%20Pimmit%20Dr”
  • postal_code: the 5-digit ZIP code that goes along with the address, i.e. “postal_code=22043″
  • your API key: i.e., “key=YOUR_API_KEY”

OR

  • zip9: the 9 digit ZIP+4 code whose precinct you are trying to find.  Most people do not know their ZIP+4, but lookups with address and postal_code will return the “plus4″ portion of the ZIP+4 (zip9 lookups do not return the plus4). i.e., “zip9=220431408″
  • your API key: i.e., “key=YOUR_API_KEY”

Examples

Performing a GET to http://services.dnc.org/places/lookup?address=2005%20Pimmit%20Dr&postal_code=22043&key=YOUR_API_KEY will result in HTTP status code 200 (successful) response with the following body which is a JSON hash object:

{“region”:”VA”,
“precinct_name”:”315 – Pimmit”,
“polling_location”:”PIMMIT HILLS CENTER”,
“location_description”:null,
“address”:”7510 LISLE AVE”,
“locality”:”FALLS CHURCH”,
“postal_code”:”220431050″,
“latitude”:38.916322,
“longitude”:-77.204321,
“precision”:”address”,
“precinct_code”:”0315″,
“polling_location_contact_info”:null,
“van_precinct_id”:295851,
“plus4″:”1408″
}

The returned fields are:

  • region: The 2-letter state abbreviation for the state this polling place is in.
  • precinct_name: The name of the precinct this polling place resides in.
  • polling_location: The name of the polling place.
  • location_description: Usually blank, but can have additional information like “Room 2-B” or other descriptive information.
  • address: The number and street of the polling place.
  • locality: The city of the polling place.
  • postal_code: The ZIP+4 code for the polling place.
  • latitude: The latitude of the polling place, achieved by geocoding the address.  See precision to know how accurate this is.
  • longitude: The longitude of the polling place, achieved by geocoding the address.  See precision to know how accurate this is.
  • precision: The granularity achieved during the geocoding of the address.  If the precision is “address” then it is likely that services such as Google Maps will be able to provide driving directions.  If it is “street” or “zip” or anything else, the coordinates will not be meaningful enough to use.
  • precinct_code: The code for this polling place assigned by the precinct.
  • polling_location_contact_info: The person responsible for the accuracy of this polling place.  Usually blank.
  • van_precinct_id: An internal primary key used to identify polling places.  This is the value passed to the /show API endpoint to retrieve details about a polling place without having to lookup an address in that precinct.
  • plus4: This is the last 4 digits of the ZIP+4 for the address that was used to look up the polling place.  Note that it is usually different
    from the last 4 digits of “postal_code” as the polling place and the voter do not usually share ZIP+4.  You can use this information to better geocode the voter’s address by appending it to their ZIP code on services such as Google Maps or use it in subsequent calls to lookup that voter.

Error conditions:

If the address you provide is valid but we can’t locate the polling place, you will receive an HTTP status code 200 (successful) response but the JSON object will have an “error” property.  It may also have additional information about where to go to find your polling place to help assist people with finding out their polling location.

{“error”:”No polling place found.”,
“region”:”FL”,
“region_name”:”Florida”,
“website”:”http://election.dos.state.fl.us/”,
“voter_information”:”http://election.dos.state.fl.us/”,
“phone”:”8663086739″}

The response fields are:

  • error: The cause of the error response.
  • region: The abbreviated state of the query address.
  • region_name: The full name of the state from the query address.
  • website: The Secretary of State or Board of Elections website for the state.
  • voter_information: The Secretary of State or Board of Elections website for the state, may be the same as the website.
  • phone: The phone number for the Secretary of State or Board of Elections.

If the address doesn’t seem valid, or we cannot determine the state of the address, the error response body will just contain:

{“error”:”No polling place found.”}

Showing a Polling Place

To retrieve the details for a polling place for which you already have
the van_precinct_id, perform a GET to
http://services.dnc.org/places/show with the following parameters:

- id
The van_precinct_id from a previous polling place lookup.
- key
Your API key.

Examples:

Performing a GET to http://services.dnc.org/places/show?id=295851&key=YOUR_API_KEY will result in a JSON hash object being returned like the following:

{“region”:”VA”,
“precinct_name”:”315 – Pimmit”,
“polling_location”:”PIMMIT HILLS CENTER”,
“location_description”:null,
“address”:”7510 LISLE AVE”,
“locality”:”FALLS CHURCH”,
“postal_code”:”220431050″,
“latitude”:38.916322,
“longitude”:-77.204321,
“precision”:”address”,
“precinct_code”:”0315″,
“polling_location_contact_info”:null,
“van_precinct_id”:295851
}

Error conditions:

In the case of an invalid ID being passed, the API will return a 404 Not Found HTTP response with no body.

JSONP Support

If you want to consume the Polling Place API from a webpage, you can use Javascript and JSONP without the need for any server-side code.  Just append “.jsonp” to the URL and pass the required parameters.

For lookups:

http://services.dnc.org/places/lookup.jsonp?address=2005%20Pimmit%20Dr&postal_code=22043&key=YOUR_API_KEY

http://services.dnc.org/places/lookup.jsonp?zip9=220431408&key=YOUR_API_KEY

For showing a polling location:

http://services.dnc.org/places/show.jsonp?id=295851&key=YOUR_API_KEY

JSONP queries can contain a callback parameter or variable name
parameter (or both):

- callback
the name of a Javascript method to call on the returned JSON response, i.e. “callback=processPollingLocation”
- variable
the name of a Javascript variable that you would like the returned JSON object to be assigned to, i.e. “variable=polling_place”

Examples:

Performing a GET on

http://services.dnc.org/places/lookup.jsonp?address=2005%20Pimmit%20Dr&po...

returns:

var bar = {“region”:”VA”,”precinct_name”:”315 -
Pimmit”,”location_description”:null,”address”:”7510 LISLE
AVE”,”latitude”:38.916322,”precinct_code”:”0315″,”plus4″:”1408″,”postal_code”:”220431050″,”polling_location_contact_info”:null,”locality”:”FALLS
CHURCH”,”precision”:”address”,”longitude”:-77.204321,”van_precinct_id”:295851,”polling_location”:”PIMMIT
HILLS CENTER”}; foo(bar);

This can be evaluated as Javascript client-side and uses the JSONP
method to get around cross-domain connectivity issues.

Help

If you have problems or questions, please send a message to the Open.Dems mailing list

CommonDreams: "It's Okay if It's Impossible." Vote!

Click here to download:
unknownname.out (0 KB)

Dear Michael L,

Today is Election Day. The Tea Partiers and the cynics are hoping we all decide not to do anything and stay home.

Today Common Dreams published the transcript of a speech Bill Moyers gave this past Saturday night as part of the Howard Zinn Lecture Series at Boston University.

It's rather long but we encourage you to read the whole speech.

Here's the final paragraph:

But let's be clear: Even with most Americans on our side, the odds are long. Money fights hard, and it fights dirty. Think Rove. The Chamber. The Kochs. We may lose. It all may be impossible. But it's OK if it's impossible. You heard me right. I've learned something about this from the former farmworker and labor organizer Baldemar Velasquez. The members of his Farm Labor Organizing Committee are a long way from the world of K Street lobbyists. But they took on the Campbell Soup Company - and won. They took on North Carolina growers - and won, using transnational organizing tactics that helped win Velasquez a "genius" award from the MacArthur Foundation. And now they're taking on no less than R. J. Reynolds Tobacco and one of its principle financial sponsors, JPMorgan-Chase. Some people question the wisdom of taking on such powerful interests, but here's what Velasquez says: "It's OK if it's impossible; it's OK! Now I'm going to speak to you as organizers. Listen carefully. The object is not to win. That's not the objective. The object is to do the right and good thing. If you decide not to do anything, because it's too hard or too impossible, then nothing will be done, and when you're on your death bed, you're gonna say, ‘I wish I had done something.' But if you go and do the right thing NOW, and you do it long enough good things will happen-something's gonna happen. Shades of Howard Zinn!"

I hope you will join all of us in the Common Dreams community in defying the polls and the cynics by going to vote. We can’t give up ”because it's too hard or too impossible”.

And no matter the results of today’s elections, Common Dreams will be here for you going forward, bringing you the breaking news and views from the best progressive voices of our time.

“Do the right thing NOW” and go vote. Good things will happen,

Thanks,

Craig Brown
for the whole Common Dreams team

P.S. Later this week Common Dreams will be launching our critical fall fundraising campaign. Can we count on your help? Don’t let our progressive voices be silenced! We can’t do it without you.

www.commondreams.org

CommonDreams.org is an Internet-based progressive news and grassroots activism organization, founded in 1997.
We are a nonprofit, progressive, independent and nonpartisan organization.

Home | About Us | Donate | Signup | Archives | Search

To inform. To inspire. To ignite change for the common good.

--
You can unsubscribe from this mailing list at any time.

Ratify the Convention on the Elimination of All Forms of Discrimination Agai...

This is clearly now an urgent action. I hope that you will join me in supporting CEDAW.

Regards,
proclus
http://www.gnu-darwin.org/


Call on the U.S. Senate to ratify the Convention on the Elimination of All Forms of Discrimination Against Women (CEDAW) to ensure the protection of the fundamental human rights and equality for women around the world.

OFA: Urgent -- how many calls can you make right now? - #greens #pr ogressives

Click here to download:
unknownname.out (0 KB)

Organizing for America
Friend --

It's Election Day, and we all need to call voters for 20 minutes.

We know there are millions of people across the country who might not cast their ballots -- unless they hear from someone like you. These people -- whether they vote or not -- will be the difference in the closest races.

That's why thousands of supporters are using our call tool after they vote today to make sure these folks get to the polls.

You can talk to these people right now. You can remind them of the importance of their voice in this election. You can tell them where their local polling place is -- and when it closes its doors.

It's all one click away. Start right now -- because "later" will be too late.

Can you take 20 minutes to call some of these voters in key districts?

This election will determine the direction our country takes over the next two years.

Once the polls close, we can only watch the results come in.

Those results are being determined right now. And we can do a whole lot more than just watch.

As long as the polls are still open, you can have a real impact on the races that will come down to the wire.

Join thousands of supporters just like you for the final push -- and pick up the phone now:

http://my.barackobama.com/E-DayCalls

Thanks -- now let's get to work,

Natalie

Natalie Foster
New Media Director

P.S. -- In case you haven't made it out to vote already, click here to find your polling place.


Paid for by Organizing for America, a project of the Democratic National Committee -- 430 South Capitol Street SE, Washington, D.C. 20003. This communication is not authorized by any candidate or candidate's committee.

This email was sent to: proclus@gnu-darwin.org

Update Address / Email | Unsubscribe

GP.org: Today's the Day - Vote Green!

Back to GP.org

Green Party

 

                                                         Donate to the Green Party

Today is the Day - Get Out and Vote Green!

Today's message is short and simple - don't forget to vote today, and make sure to vote Green! Hundreds of Green Party candidates have been campaigning for months to make a impact today. They can't do it without you! 

If you haven't voted already, don't forget to get to the polls today and vote for as many Green Party candidates as possible. If you did vote today, remember to remind your family and friends to vote Green as well.  

If you don't see any Green candidates on your ballot, it's never too early to help build the party in your area and recruit candidates for the next election. Maybe the next Green Party candidate you can vote for will be you...?

We are always working to build the Green Party on the local, state, and national level. With your support, there will be more and better Green Party candidates on ballots across the country next time. Can you make a contribution today?

Green Party candidates everywhere thank you for your support so far in helping them spread the word about their 2010 campaigns.  The last part of the effort is easy - get out and Vote Green!


Support the Green Party!


Donate today. A Greener future is within our reach. Your donation today can help us bring the vision we share a little closer to reality.

Spread this message on Facebook and on Twitter.

You can sustain the Green Party by making a recurring donation on a monthly basis. Donate here.

Thank you!

Unsubscribe from future mailings here.  


empowered by Salsa

Reminder: Vote today

Click here to download:
unknownname.out (0 KB)

Organizing for America
Friend --

A quick reminder: You said you were planning to vote before 11:00 a.m.

It all comes down to today. Make sure to vote.

Click here to look up your polling place and get Maryland voting information.

We expect turnout to be very high -- and with so many extreme candidates trying to take our country backward, we can't afford for anyone to sit out.

You've already set your Election Day plan -- now it's time to follow through.

Let's win this together,

Organizing for America


Paid for by Organizing for America, a project of the Democratic National Committee -- 430 South Capitol Street SE, Washington, D.C. 20003. This communication is not authorized by any candidate or candidate's committee.

This email was sent to: proclus@gnu-darwin.org

Update Address / Email | Unsubscribe

Sunday, October 31, 2010

RaiseYourVote sms tool for voting reminders - Commit to Vote Challenge| #VOTE 2010 #GOTV #sms *http://OFA.BO/Y5EC3Z

OFA released today a neat tool for getting a reminder to #VOTE, an sms text message on your phone.  Click through to http://OFA.BO/Y5EC3Z to try it out.  One of the great things about this system is that you don't need web access to use it.  Just use your phone to text RaiseYourVote and the name of your state to 62262 and you will get voting reminders and other information. 

One of the disadvantages of the Commit to Vote Challenge is that it requires a Facebook account and friends in order to use it.  If you have freinds who are not on Facebook, then you cannot easily reach them with the Commit to Vote tool.  I know many people who are not on Facebook.  This sms system provides a great way to quickly reach many people who are not on Facebook.  I sent the following sms text message to scores of friends and associates via sms text. 

Text RaiseYourVote and the name of your state to 62262 to get a voting reminders, etc: http://bit.ly/bIfHNv

Some frequent readers of my blogs and messages may notice one of my typical typos immediately.  It is important to note that no one has complained as of yet about these messages, and I learned that someone who did not use Commit to Vote Challenge, but they have already voted.  It may be worthwhile to send it to some friends who DID use the Commit to Vote tool, because they may also forward it to some of their friends via sms.

If for some reason you are not comfortable with OFA tools, there are other sms vote reminder services.  You might be able to find them with the following Google search.

text to get a voting reminder - Google Search http://ping.fm/8SB4X

Time is growing shorter.  Thank goodness that OFA has come out with these excellent tools for voter activism.  Let's work hard to get the vote out!  As always, all discussion is welcome, and please feel free to forward this message along as you like.

Regards,
proclus
http://www.gnu-darwin.org/

Text RaiseYourVote and the name of your state to 62262 to get a voting reminders, etc

The service is operated by OFA. Cheers! All discussion welcome.

Regards,
proclus
http://www.gnu-darwin.org/

text to get a voting reminder - Google Search

Numerous services are available, so that you don't need the web to get a cell phone voting reminder. Try this link to maybe get a list.

Regards,
proclus
http://www.gnu-darwin.org/

From: http://ping.fm/F1WGP

Commit to #Vote Challenge – *http://j.mp/9cXdso - #GOTV - get a voting reminder - #sms #text #phone

OFA released today a neat tool for getting a reminder to #VOTE, an sms
text message on your phone. #GOTV -> *http://OFA.BO/Y5EC3Z

Please feel free to copy or tweet this blog or the above text. No
attribution is required. If you would like to discuss this further, I
am eager to do so. For my part, I am grateful to OFA for creating
these excellent voter activism tools, so that we can get the vote out.
Let's chat about it.

Regards,
proclus
http://www.gnu-darwin.org/

Saturday, October 30, 2010

This tool makes a great climax to this elections season. Thanks for all that led up to this. #onenation
Read the Article at HuffingtonPost
That is fabulous news. Congratulations to the OFA: Commit to Vote team for an excellent voter activism tool.



Regards,

proclus

http://www­.gnu-darwi­n.org/
Read the Article at HuffingtonPost

Let's make voting viral! - Commit to Vote Challenge - http://j.mp/9cXdso

@TheDemocrats sez Commit to Vote Challenge has gone viral
'officially'. Hoorah! This is the best of news, because it means
that people in the social media space are reminding their friends to
vote in the US. It is a good indication that people in general are
doing the same thing. Be sure and remind your friends to vote, online
and in person as well. If you voted in the last election, you are
good to go, so be there Tuesday.

Voter activism is one of the best ways to ensure that the government
listens to the people instead of the monied interests, who have been
covertly pouring their influence into this election. They act
covertly because they have something to hide, but we do not. We act
in the open, and in truth, that is why we will win!

Regards,
proclus
http://www.gnu-darwin.org/

Wednesday, October 27, 2010

Interest growing in 'Commit to Vote Challenge' - #p2

photo

Here are some more great Commit to Vote Challenge links.

  1. Michael L. Love's blog: Facebook | Commit to Vote Challengehttp://htxt.it/Au4F http://bit.ly/d6HVZR
  2. Facebook | Commit to Vote Challenge http://ping.fm/BSsUv
  3. Daily Kos: State of the Nation - Daily Kos OFA/Facebook Commit to Vote Challenge: Full of Win http://ping.fm/lRu7T
  4. Commit to Vote Challenge - Barack Obama's Myspace Blog | http://ping.fm/cuDw8
  5. : I am very impressed with this voter activism tool.Read the Article at HuffingtonPost http://bit.ly/acl6V2
  6. I am very impressed with this voter activism tool. http://huff.to/9Damqj via @huffingtonpost
  7. RT @TheDemocrats: Get started with the Commit to Vote Challenge—one of the most effective tools you can use to boost voter turnout.

Best wishes for a successful campaign!

Regards,
proclus
http://www.gnu-darwin.org/

I am very impressed with this voter activism tool.
Read the Article at HuffingtonPost

OFA: Commit to #Vote Challenge - #voter #activism #america #coica #acta #facebook #boycottbp #oilspill #blacktide

Hi!

I just signed up for the Commit to Vote Challenge, and I wanted to
invite you to join me.

It's a great new tool from Organizing for America that lets you show
your commitment to vote in the upcoming 2010 elections, share your
reason for participating and inspire your friends to commit as well.

You can track your progress, see who you've inspired to commit, and
even compete against your friends (like me) to see who can inspire the
most voters.

With the elections so close in dozens of states and districts around
the country, our friends could end up making all the difference.

So get the wave started -- join me an try out the Commit to Vote
Challenge today!

http://my.barackobama.com/commit


Regards,
proclus
http://www.gnu-darwin.org/

For Bats, the Future Is Spooky

When Congress returns for the "lame duck" session following the November elections we may have our best (and perhaps last for a long time) opportunity to pass important legislation protecting our public lands. One bill that should be a priority for passage is the California Desert Protection Act of 2010 (S.2921). Introduced by Senator Dianne Feinstein, the bill would create a new national monument in the California desert that would connect Joshua Tree National Park with the Mojave National Preserve, protecting some of the most pristine, ecologically important and beautiful desert lands in the world.

Unfortunately, the Department of the Interior is considering allowing industrial-scale energy development in some of these places. While a rapid transition to renewable energy is essential if we are to address global warming, we need not destroy pristine public lands and endangered species habitat to do so, as hundreds of thousands of acres of already degraded lands outside the proposed monument, which are better suited for energy development, have been identified.

Please take a moment and let your senator know that you strongly support Senator Feinstein's proposed monument and that the Senate should take up and pass S.2921 when it returns from the election recess.

Visit http://action.biologicaldiversity.org/p/dia/action/public/?action_KEY=5072 to take action now.

Amnesty: Arizona Ignores Trial Judge, Kills Prisoner


The death penalty in this case is not appropriate and never has been.”

That’s what former judge Cheryl Hendrix told Arizona’s Board of Executive Clemency in support of Jeffrey Landrigan’s effort to have his death sentence commuted.  What’s important about judge Hendrix is that she is the one who sentenced him to death.  New information that Landrigan’s lawyer failed to present at the trial convinced her that the death sentence she issued had been wrong.  

Unfortunately, the US Supreme Court, by a 5-4 vote, had already ruled that this new information would NOT have made a difference.  That turned out to be flat wrong, but an erroneous Supreme Court ruling that still trumps everything else. The Arizona Board split 2-2 vote, but that, and Governor Jan Brewer, was enough to keep the execution process rolling. 

Landrigan’s attorneys also attempted to shine a light on the secretive practices of Arizona’s execution team (which now apparently includes an un-named British pharmaceutical company).  Had they been successful, this would have been a great public service.  Why should a public agency with the power to kill people be allowed to operate in the dark?

But that effort was not successful, thanks to another 5-4 US Supreme Court vote.  The non-FDA approved drugs acquired from Great Britain appeared to work as the executioners wanted, and, late last night, Arizona carried out a death sentence that “is not appropriate and never has been.

Repower at Home: Let's talk vampires

Click here to download:
unknownname.out (0 KB)

 

Dear Michael L.,

Halloween is here and we've got special decorations you can download and print right now. These decorations not only help put your home in the Halloween spirit, but are also a great way to help drive a stake through the heart of vampire power in your community.

Get your decorations

Hang these around your house and when trick or treaters (and parents) come over, you'll have a great conversation starter. We've even included a "vampire power fact sheet" you can give out with your candy. It's a great resource to help identify energy vampires and suggest solutions.

Most of your neighbors probably don't know that energy vampires -- electronics that use power even when turned off -- cost Americans more than ten billion dollars a year and contribute to climate change. The worst offenders have remote control sensors and indicator lights, including most computers and televisions.

When your neighbors see these decorations and fact sheets, they'll take action, saving money, conserving energy and putting a dent in the climate crisis.

View the decorations now.

Thanks for taking action,

Keith "Ghoul-man" Goodman
Director
Repower at Home

P.S. After you put up your decorations, send us a picture at field@repowerathome.com. We'd love to see how it looks!

DONATE

 

This email was sent to proclus@gnu-darwin.org.
Paid for by the Alliance for Climate Protection

Tuesday, October 26, 2010

Invasion of the Democracy Crushers: Oil Industry Monsters Work to Destroy th...

via AlterNet.org by Rebecca Solnit, Tomdispatch.com on 10/24/10

Oil industry monsters from Texas are preying on California, pumping money into a campaign that would kill the Global Warming Solutions Act of 2006.