Re: [google-appengine] Prerelease SDK 1.5.5 available for download!

2011-10-03 Thread Rafael Nunes
Will Python 2.7 support multi-thread? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/HBbvHUvJrNsJ. To post to this group, send email to google-app

[google-appengine] Re: FAQ for out of preview pricing changes

2011-05-19 Thread Rafael Nunes
Agreed. Why should I pay for idle time, if it's idle? That *does not make any sense*! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, se

[google-appengine] Re: FAQ for out of preview pricing changes

2011-05-18 Thread Rafael Nunes
So, If Java Runtime can handle multiple requests/threads, how can you define how many request an instance will handle simultaneously? And why some requests takes 30ms to complete and the same request can take 300ms+ sometimes? It makes no sense if instance latency will affect my bills. -- You

[google-appengine] Re: What do you want to see answered in Greg's pricing FAQ?

2011-05-16 Thread Rafael Nunes
7) API quota are daily? 8) What is a XMPP instanza? One client connected? One message sent/ received? We will have 1000 instanzas daily? 9)Reserved Frontend instances are something like Always On, they will be always running? 11) Email API will be 100 recipients emailed? Received? Both? 12) How muc

[google-appengine] Increase Service Quota

2011-02-07 Thread Rafael Nunes
Is there any way to increase the services quota?(URLFetch, TaskQueue, XMPP, etc) I enabled the billing but just have options for CPU, Datastore, Data in/out and Mail. Thanks in advance, Rafael -- You received this message because you are subscribed to the Google Groups "Google App Engine" gro

Re: [google-appengine] Can't Delete a Version

2010-12-07 Thread Rafael Nunes
Same problem here. app-id: myjobs-yaw version: 2 On 12/06/2010 06:11 PM, Ikai Lan (Google) wrote: What's your application ID? -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitte

Re: [google-appengine] Re: Using GAE for a REST API

2010-11-30 Thread Rafael Nunes
JBoss RestEasy is also easy to setup and run on GAE, without class/service scan. Example: www.yaw.com.br/open On 11/29/2010 05:40 PM, Ikai Lan (Google) wrote: James, cool! Did you blog about this anywhere? This blog post is outdated, but I thought Jersey was pretty fun: http://blogs.sun.com/

Re: [google-appengine] PyDev on Eclipse

2010-11-23 Thread Rafael Nunes
Did you try to download the Aptana Studio 3? On 11/23/2010 05:40 AM, Katyayani Bhatia wrote: Hello everyone, I am trying to install PyDev on Eclipse, but the URL http://pydev.sourceforge.net/updates/ is facing some problems. Could you please suggest some alternate site for the same. Thanks.

[google-appengine] Re: Django and Blobstore

2010-11-16 Thread Rafael Nunes
Yeah, I was missing. I should be using 'get_uploads(request, populate_post=True)' instead of 'get_uploads(request)' #RTFM --Rafael On 11/16/2010 01:51 PM, Rafael Nunes wrote: After a weekend fighting with Django and Blobstore, I could make it work with th

[google-appengine] Django and Blobstore

2010-11-16 Thread Rafael Nunes
After a weekend fighting with Django and Blobstore, I could make it work with this: http://appengine-cookbook.appspot.com/recipe/blobstore-get_uploads-helper-function-for-django-request/ I can get the BlobInfo(img) uploaded, but the other fields in my form('txtDesc' and 'txtOne' are missing:

Re: [google-appengine] Can Java and Python coexist in the same app?

2010-11-12 Thread Rafael Nunes
What about Jython? On 11/12/2010 01:10 PM, Barry Hunter wrote: Well an active app can only have one "runtime" at a time. But different versions of the app can have different runtimes. So you could have the default as python (say) and one of the older versions as java. All versions of an app (r

Re: [google-appengine] Blobstore and ImageService

2010-02-04 Thread Rafael Nunes
> The Python documentation on Blobstore states: > > "Blobs are created by the API, and can't be modified after they're > created, although they can be deleted. " > > On Thu, Feb 4, 2010 at 1:46 PM, Rafael Nunes wrote: > >> Is there any way to replace

[google-appengine] Blobstore and ImageService

2010-02-04 Thread Rafael Nunes
Is there any way to replace an object in Blobstore? I can upload files to Blobstore without problems, but sometimes users upload files in wrong sizes. So I would like to get the uploaded file, resize it and store it on Blobstore. I'm using Java to do it. I tried to resize file and than make a new

Re: [google-appengine] Re: MP3 Data Retreival

2009-12-07 Thread Rafael Nunes
I'm actually doing that with 'exiftool'. http://www.sno.phy.queensu.ca/~phil/exiftool/ In a command line: exiftool audio.mp3 (And it will return a list of properties) exiftool -Duration audio.mp3 (Will return just the time duration) And it will works for a bunch of media types(wmv, wma, jpg, etc