-
index is the 0 based index value of the button pressed
-
label is the text label of the button pressed
function showConfirm() { var confirmDelegate = navigator.notification.confirm( 'You are the winner!', // message
'Game Over', // title
| import httplib,pycurl,json | |
| from django.conf import settings | |
| from tasks import ProcessTweet | |
| QUERY="android" | |
| class Twitter(): | |
| default_retry_delay = 5 | |
| def run(self,query): | |
| self.buffer = "" |
| import urllib2,httplib,re | |
| def url_title(url,**kwargs): | |
| title = None | |
| request = urllib2.Request(url) | |
| try: | |
| response = urllib2.urlopen(request) | |
| data = response.read() | |
| except urllib2.HTTPError: | |
| data = None |
| import urllib2, json, base64, sys, termios, tty, os | |
| USER = "your_twitter_user" | |
| PASS = "your_twitter_pass" | |
| neg_filename = "negative.txt" | |
| pos_filename = "postive.txt" | |
| queries = ['awesome','beautiful','shit','fuck','android','iphone','blackberry','windows','linux','apple','google'] |
| USER = "your_twitter_user" | |
| PASS = "your_twitter_pass" | |
| if "your_twitter" in USER+PASS: | |
| print "You didn't set your twitter username and password in the script!" | |
| USER = raw_input("Username>") | |
| PASS = raw_input("Password>") | |
| import urllib2, json, base64, sys, os |
| import time,sys | |
| total_loops = 500; | |
| complete_loops = 0; | |
| while (complete_loops < total_loops): | |
| percent = int(complete_loops*100/total_loops) | |
| time.sleep(1) | |
| complete_loops +=1 |
| #!/bin/python | |
| import random | |
| def rgb_to_int(r,g,b): | |
| i = str() | |
| for c in r,g,b: | |
| for d in str("%03d" % (c,)): | |
| i += '%s%s%s' % (d,d,d) | |
| return i |
| import urllib2 | |
| import json | |
| import sys | |
| import os | |
| import re | |
| import time | |
| import rfc822 | |
| import sqlite3 | |
| import datetime |
| from celery.result import AsyncResult | |
| from celery.execute import send_task | |
| def get_results(queries): | |
| result = send_task('task1',queries) | |
| results = result.get() | |
| #this does not return ids until _after_ all the tasks are complete, for some reason. | |
| while results: | |
| #pop first off queue, this will shorten the list and eventually break out of while | |
| first_id = results.pop(0) |
| from tasks import task1 | |
| def get_results(queries): | |
| query_procs = task1.delay(queries).get().join() | |
| results = [] | |
| for query_proc in query_procs: | |
| # while the following iterate() is happening, the other query_procs are ignored. | |
| # ideas on iterating over all of them at once? | |
| for result in query_proc.iterate(): | |
| yield result |