Page 1 of 1
Commandline program for ordering Pizza
Posted: Sun Mar 12, 2006 2:23 am
by Tsuroerusu
I was just goofing around on Freshmeat for fun and look what I ran into:
http://www.beigerecords.com/cory/pizza_party/
There's a video there showing it working, too bad it only works in the US

Posted: Sun Mar 12, 2006 2:30 am
by snarkout
Cool idea, too bad Domino's sucks ass.
Posted: Sun Mar 12, 2006 2:32 am
by Tsuroerusu
Snarkout wrote:Cool idea, too bad Domino's sucks ass.
Never tried, so I can't tell, but you gotta admit, the idea of setting this app up to run as a cron job is very cool.

Posted: Sun Mar 12, 2006 2:41 am
by Ryochan7
I remember reading about that app a few months ago and I still think that it is cool. This app just seems to embrace so many stereotypes about geeks that it is funny. The demonstration video is still pretty funny too. I don't like Dominos pizza though so I would never use it. On a somewhat random note, Pizza Party is in the AUR under the community repository.
http://aur.archlinux.org/packages.php?d ... =1&ID=3258
Posted: Sun Mar 12, 2006 3:09 am
by Tsuroerusu
We need something like this for Pizza Hut!

Posted: Sun Mar 12, 2006 3:46 am
by thetza
When you get too lazy to pick up the phone to order pizza..........
Posted: Sun Mar 12, 2006 3:48 am
by Tsuroerusu
thetza wrote:When you get too lazy to pick up the phone to order pizza..........
Can you run the phone as a cronjob?

Posted: Sun Mar 12, 2006 3:39 pm
by CptnObvious999
Tsuroerusu wrote:thetza wrote:When you get too lazy to pick up the phone to order pizza..........
Can you run the phone as a cronjob?

To Asterisk!

Posted: Sun Mar 12, 2006 3:49 pm
by Tsuroerusu
CptnObvious999 wrote:Tsuroerusu wrote:thetza wrote:When you get too lazy to pick up the phone to order pizza..........
Can you run the phone as a cronjob?

To Asterisk!

Yeah okay, but I mean't setting up a cronjob for ordering pizza over the phone

Posted: Mon Mar 13, 2006 12:09 pm
by Chess
My bash skills are virtually nonexistant, but something like this?
Code: Select all
#!/bin/sh
#If stomach is empty, order a pizza; otherwise, induce guilt trip
#
#version 0.01 alpha
#Chess Griffin, March 13, 2006
#
#Enter your variables here
LOCAL_DELIVERY="555-444-3333" #enter your local pizza delivery phone number
PIZZA_SIZE="12 inch" #enter your pizza size
TOPPINGS="pepperoni" #enter your pizza toppings
ADDRESS="123 Main Street" #enter your address
STOMACH_CONTENTS=cat /home/body/stomach
if [ "$STOMACH_CONTENTS" == "" ]; then
echo "Dialing pizza place"
dial $LOCAL_DELIVERY
echo "I want a $PIZZA_SIZE with $TOPPINGS please. My home address is $ADDRESS."
else
echo "Why are you ordering a pizza if you are not hungry? Go for a run instead!"
fi
Posted: Mon Mar 13, 2006 2:05 pm
by Tsuroerusu
Posted: Tue Mar 14, 2006 10:21 pm
by thetza
obviously /home/body/stomach should be /dev/stomach!!
grocery scripting
Posted: Wed Mar 15, 2006 4:44 pm
by treehead
;this has actually been around a long time. i remember seeing this back when i had never even touched linux or unix at all and being very impressed.
;what someone needs to do is create hardware/write an API for your refrigerator and cupboards that monitors the levels of foods. you could then script against this API and make calls to the hardware (or maybe it would just send SNMP traps or something). when the system has aggregated a suffient amount of "low" groceries on the list, it orders them automatically from the grocery store. many grocery stores have at least a phone-in grocery service, so at the very least, you could script your system to call festival in conjunction with asterisk, read the list over the phone, and ask for the grocery store to call you when their ready.
;ok chess, go to work....
;treehead
Re: grocery scripting
Posted: Wed Mar 15, 2006 5:38 pm
by Chess
treehead wrote:
;ok chess, go to work....
;treehead
hehe, you wouldn't want me coding something like that, trust me.