-
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
from nltk.probability import DictionaryProbDist | |
from nltk import NaiveBayesClassifier | |
train_samples = { | |
'I hate you and you are a bad person': 'neg', | |
'I love you and you are a good person': 'pos', | |
'I fail at everything and I want to kill people' : 'neg', | |
'I win at everything and I want to love people' : 'pos', | |
'sad are things are heppening. fml' : 'neg', | |
'good are things are heppening. gbu' : 'pos', |
#The goal is to emulate the following bash line properly in python: | |
#wget -O - "https://github.com/downloads/Tawlk/synt/sample_data.bz2" | bzcat | sqlite3 sample_data.db | |
import bz2 | |
import sqlite3 | |
import time | |
import urllib2 | |
import os | |
from cStringIO import StringIO |
from geventwebsocket.handler import WebSocketHandler | |
from gevent.pywsgi import WSGIServer | |
from flask import Flask, request, render_template | |
app = Flask(__name__) | |
@app.route('/') | |
def index(): | |
return render_template('index.html') |
from tasks import task1 | |
def get_results(queries): | |
query_procs = task1.delay(queries).get() | |
tasks = [] | |
for query_proc in query_procs: | |
tasks.extend(query_proc.subtasks) | |
while tasks: | |
current_task = tasks.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 |
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) |
import urllib2 | |
import json | |
import sys | |
import os | |
import re | |
import time | |
import rfc822 | |
import sqlite3 | |
import datetime |
#!/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 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 |