[google-appengine] Re: Please, app engine don't run

2015-01-24 Thread Adam Wildavsky
There are no errors in your log, only a warning. What is the symptom of your problem? What happens when you try to connect to http://localhost:8081? What is your command line? On Saturday, January 24, 2015 at 4:18:51 AM UTC-7, Jaime R wrote: > > This is the log error: > > 2015-01-24 12:14:48 Run

[google-appengine] Re: Where's My Stuff - An Appengine app to help you stop forgetting where your stuff is

2014-09-30 Thread Adam Wildavsky
I like it. Thanks for sharing! On Wednesday, September 24, 2014 5:51:28 PM UTC-4, Corey Gilmore wrote: > > A quick and simple app I wrote to learn Golang and GAE. Well, I build a > few smaller pointless apps and then dove right into this. Loved how simple > GAE is to use and really like using

[google-appengine] Re: Site in development on appspot domain - restrict access to developers

2014-08-28 Thread Adam Wildavsky
What I do is require Google authentication and then check the user's email address and domain against a whitelist. I had some trouble at first because GMail addresses ignore internal periods, so for instance ad...@gmail.com and ada...@gmail.com are the same address. In fact they are also the sam

[google-appengine] Re: Google app engine speed python vs java execution time

2014-08-20 Thread Adam Wildavsky
Sorry to take so long to chime in! A couple things occurred to me that you might want to consider: 1. App Engine is addressed primarily towards building web sites and services, not heavy back end processing. That doesn't mean it can't be made to work, but you might want to consider building you

[google-appengine] Re: Anybody interested in a Datastore Manager for GAE?

2014-06-22 Thread Adam Wildavsky
I would pay what you propose for this if it supported ndb -- either payment model would be fine. I have no preference for desktop vs web, except that for me it needs to run on MacOS. Web might be easiest unless you know a good environment for cross platform Linux/Mac/Windows desktop app develop

Re: [google-appengine] Re: Ereporter problem

2014-05-31 Thread Adam Wildavsky
27;s a way to do this without a wrapper (and without cloning the ereporter code in my own project) I'd be happy to hear about it! On Wed, May 28, 2014 at 2:48 PM, Adam Wildavsky wrote: > Thanks! Until i saw this I could not figure out why I was not receiving > mail. > > I want my c

[google-appengine] Re: Ereporter problem

2014-05-31 Thread Adam Wildavsky
Thanks! Until i saw this I could not figure out why I was not receiving mail. I want my cron to send me all outstanding exception reports, though, not just yesterday's. How can I achieve that? Calling datetime.datetime.now() would be clever, but i don't know where to put the call. My choices se