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

2011-05-18 Thread Sudhir
I need, or just fetch all 1000 directly? Being able to provide a definitive answer to these questions would really help. Sudhir On May 18, 11:54 am, Maxim Lacrima wrote: > Hi! > > Under the new model for the Datastore API calls, does it mean that I don't > care anymore about per

[google-appengine] Re: So Google want us to make use of the instances? Give us the tools to do that!

2011-05-18 Thread Sudhir
I believe the release of Python 2.7 will bring multithreading later this year. To compensate for it's lack right now, the GAE team is planning to double the number of Python instances you get and cut their prices and capacities in half. On May 18, 12:14 pm, "Raymond C." wrote: > The original desi

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

2011-05-30 Thread Sudhir
view. This is approximate, of course, but you get the idea. Things might not be as bad as you think, and your CPU optimizations will probably continue to serve you well. Let's wait a bit and see what the actual situation is. Sudhir On May 30, 12:05 pm, "Jan Z/ Hapara" wrote: >

Re: [google-appengine] 1.6.3 Prerelease SDK Available

2012-02-28 Thread Sudhir
I think that's exactly what it means. Sudhir On Wednesday, 22 February 2012 13:23:25 UTC+5:30, Prashant Gupta wrote: > > - Using Google Apps wildcard domain mappings, you can access alternate > versions of your app via a custom domain. >> >> > Does this mean th

[google-appengine] Re: Customize login page

2008-09-24 Thread Sudhir
how about the moderator.appspot.com page? they have a customized login On Sep 24, 1:40 am, Sam G <[EMAIL PROTECTED]> wrote: > It is possible to add a logo if you have tethered the domain to your > Google Apps account. > It uses the logo you upload for Google Apps. > Beyond that, the only thin

[google-appengine] Textmate bundle

2008-09-30 Thread Sudhir
g a bundle for unit / web testing that lets you run GAE Unit ( http://code.google.com/p/gaeunit/ ) tests in textmate. Let me know if anyone wants to see :) Sudhir --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Go

[google-appengine] Is App Engine already integrated with Cloud CDN?

2017-09-14 Thread Sudhir
Are we already charged at Cloud CDN rates for static and cache-control: public content? Or do the flat bandwidth rates apply for CDN egress? Cloud CDN can be attached to the GCE load balancers, so it stands to reason that GAE already runs on it. -- You received this message because you are s

[google-appengine] Measures taken to speed index building

2010-01-02 Thread Sudhir
on earth do you guys do demos at I/O? I don't think any of the presenters hit deploy and said "okay, let's all come back tomorrow, or maybe the day after, and we'll see if this works" :-/ Sudhir -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Measures taken to speed index building

2010-01-02 Thread Sudhir
dy, I think. It completely takes the 'instant' and 'quick' out of the process, and I think it needs to be fixed before it gives GAE a bad rep. Sudhir On Jan 3, 4:53 am, Barry Hunter wrote: > A index built against a empty datastore (or at least a Model without > any Ent

[google-appengine] Re: Possible to remove white background from image?

2010-01-03 Thread Sudhir
Might not work that way even if its possible... if the image has white inside it (like someone's teeth) they go transparent too. Sudhir On Jan 3, 5:10 am, trung wrote: > Is it possible to remove the white background from a PNG image in > order to make it look transparent? > >

[google-appengine] Sharing an app between different Google apps domains

2009-08-10 Thread Sudhir
? I don't want to create, maintain and update a separate app for each and every one of my customers... how can I share the app with my client domains keeping a separate datastore and auth setup for each of them? Sudhir --~--~-~--~~~---~--~~ You received this

[google-appengine] Re: Sharing an app between different Google apps domains

2009-08-10 Thread Sudhir
Is there an ETA for that kind of sharing? The point of this idea is to let the users of each organization use their custom domain based Google Apps authentication, while saving me the trouble of managing and updating a large number of app deployments. Sudhir On Aug 10, 1:30 pm, "Nick Jo

[google-appengine] Re: Modeling mutual references

2008-10-16 Thread Sudhir
db.ReferenceProperty(Customer,collection_name='all_my_points') this lets me call customer.all_my_points, which returns an array of the point objects that are linked to that customer. The full scoop is here http://code.google.com/appengine/docs/datastore/entitiesandmodels.html#Refe

[google-appengine] Django template version

2008-10-18 Thread Sudhir
Does GAE still come with the django templates v0.96? v1 is out and has lots of improvements... --~--~-~--~~~---~--~~ 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-app

[google-appengine] simulating login using webtest

2008-10-20 Thread Sudhir
Does anyone know how to simulate login using webtest? I've tried doing app.get('/_ah/login?action=Login&[EMAIL PROTECTED]') but its doesn't register the user as logged in when using webtest. Sudhir --~--~-~--~~~---~--~~ You received this

[google-appengine] Re: Crappiest Product from Google

2008-11-04 Thread Sudhir
le to cook my meals and clean my room too. BTW, @The AppEngine Team, can I get a Google plate for the undying support I'm giving you guys? I might have people over for lunch :D On Nov 4, 6:57 pm, Sudhir <[EMAIL PROTECTED]> wrote: > I'm not sure which language automatically loa

[google-appengine] Re: Google App Engine Roadmap - Now Published

2008-11-04 Thread Sudhir
ns of tens of thousands of map points, and its a no starter / course in advanced mathematics and algorithms if I can't just use brute force. Sudhir On Nov 4, 3:14 am, johnP <[EMAIL PROTECTED]> wrote: > I still don't understand one aspect of Google's approach - regardi

[google-appengine] Re: Crappiest Product from Google

2008-11-04 Thread Sudhir
I'm not sure which language automatically loads all the possible classes and modules when every line of code is run I've been developing only a year or so, but a language that does that isn't something I'd use. Maybe we should rewrite C# to load all the .NET libraries automatically, and config

[google-appengine] Re: simulating login using webtest

2008-11-11 Thread Sudhir
Well, I managed to figure it out myself :-/ Just stub out users.get_current_user = lambada usr = '[EMAIL PROTECTED]': return usr before you run the tests. You can also extract it out into a method to make things easy. On Oct 21, 9:28 am, Sudhir <[EMAIL PROTECTED]> wrote: > D

[google-appengine] Re: simulating login using webtest

2008-11-13 Thread Sudhir
and put up the code on http://corn.appspot.com/2008/11/Simulating-login-with-webtest in case anyone is interested. On Nov 12, 9:20 am, Sudhir <[EMAIL PROTECTED]> wrote: > Well, I managed to figure it out myself :-/ > > Just stub out users.get_current_user = lambada usr = &#

[google-appengine] Re: Writing to the file system?

2009-03-16 Thread Sudhir
No, I don't believe you can... part of the security restrictions. Ronn Ross wrote: > Can you write to the file system with app engine? My app requires people to > upload text documents. > Thanks --~--~-~--~~~---~--~~ You received this message because you are subscr

[google-appengine] Re: What applications to developed on appengine?

2009-03-16 Thread Sudhir
27;ll have to maintain a counter to keep track of how many contacts you have... you can't just count them if they're over 1000. Things like that can trip you up if you wait too long into development. Sudhir blog.sudhirj.com On Mar 16, 5:51 pm, Ronn Ross wrote: > I'm part of a

[google-appengine] Re: Writing to the file system?

2009-03-16 Thread Sudhir
The simplest thing would be to store the files in the datastore. since they're text files, a text or blob property should do fine you can use the blob for things like word docs and non text / binary formats too. Sudhir blog.sudhirj.com On Mar 16, 6:15 pm, Ronn Ross wrote: > Doe

[google-appengine] Re: How to block Google App Engine?

2011-04-06 Thread Sudhir
Yeah, I think this is trolling. I think the easiest and most efficient way to solve the problems he's facing is to block all IPs that match the 0.0.0.0 mask, and also blacklist all user agents that have length > 0. Should work like a charm. Sudhir On Apr 7, 4:42 am, JH wrote: &g

[google-appengine] Re: Announcement: Deprecating Python 2.4 support (App Engine 1.4.3 SDK final release to support it)

2011-04-06 Thread Sudhir
I'm didn't know that 2.4 was supported in the first place :-/ Hope this heralds the release of 2.7 support... Sudhir On Apr 7, 3:31 am, PK wrote: > Ben, > > even when GAE provides 2.7 support pretty soon the next version of > Ubuntu will ship with the next version of pyth