[google-appengine] PCI DSS for AppEngine

2010-11-01 Thread Koen Bok
Did anyone get their AppEngine app PCI DSS compliant? Is there a company that can help out with this? Koen -- 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-appeng...@googlegroups.com. To unsubscri

[google-appengine] Article About Our AppEngine Setup (with SVN commit-hook script)

2008-10-03 Thread Koen Bok
Hey all, I wrote a little article about our experiences with AppEngine hosting. We have a pretty nice setup where a commit automatically uploads the newest version of your site to AppEngine with the revision number as the version. I included the scripts for anyone who might be interested. http:/

[google-appengine] Re: 1.3.1 SDK Prerelease - help us verify

2010-02-04 Thread Koen Bok
Seems like an exciting update! - New Grab Tail added to Memcache API What does this mean? On Feb 4, 3:07 am, Jason C wrote: > I think it's mean to refer to 304 as an "error code" - it's the best > HTTP response code of all, and think of what a wonderful place the > Internet would be if everyone

[google-appengine] Re: App Engine SDK 1.3.1 is out!

2010-02-10 Thread Koen Bok
Great update! Where can we find more info about: - Custom Admin Console pages - Support for wildcard domain mappings On Feb 11, 12:15 am, "Ikai L (Google)" wrote: > Check it out! > > http://googleappengine.blogspot.com/2010/02/app-engine-sdk-131-includ... > >

[google-appengine] Re: cannot import name signals

2010-02-22 Thread Koen Bok
here: I use Django 1.0 and randomly get 500 errors > > mentioning "cannotimportnamesignals" in the logs. > > > On Dec 2, 11:46 pm, Koen Bok wrote: > > > > I'm getting lots of these suddenly. I had them a few months ago too, > > > but didn't see t

[google-appengine] Re: Can't read admin log, can't deploy

2010-03-18 Thread Koen Bok
+1 On Mar 19, 12:10 am, Anekdotz wrote: > +1 > > On Mar 18, 7:00 pm, Николай Тенев wrote: > > > > > +1 > > > 2010/3/19 Pavel Kaplin > > > > +1 > > > > On 19 мар, 00:55, skk wrote: > > > > When I tried to deploy version  of my app mybharatbyrail, I get an > > > > error > > > > > Unable to updat

[google-appengine] Google IO Tickets

2010-03-30 Thread Koen Bok
Sorry to ask for this here, but we decided we wanted to go to Google IO last week and are looking for two tickets. Anyone knows a way to still get them? We have a pretty big AppEngine project (enstore.com) and we would hate to miss out on this :-/ -- You received this message because you are sub

[google-appengine] Uploading New Version Really Slow

2009-07-04 Thread Koen Bok
Since the outage of 2 July, updating for all our instance has become really slow. It used to take about 15 seconds, and now more then 3 minutes. Anyone else noticed this too or is it just us? --~--~-~--~~~---~--~~ You received this message because you are subscribed

[google-appengine] Re: Deploying to Google is very slow

2009-07-06 Thread Koen Bok
Hey Neil, I'm sort of glad you do. I posted the exact same thing yesterday, but nobody replied so I thought is was just us. Could some friendly Google person maybe shine some light on this? I mean, it's doable bu annoying so I'd love to know if it's temporary. - Koen On Jul 6, 12:54 pm, Neil

[google-appengine] Re: Deploying to Google is very slow

2009-07-08 Thread Koen Bok
at would cause > an update to take longer than you may be used to, I'll investigate to see if > there is anything on our end. > > Thank you, > > Jeff > > > > On Mon, Jul 6, 2009 at 11:58 AM, Koen Bok wrote: > > > Hey Neil, > > > I'm sort of glad

[google-appengine] Re: How to insert a json object in a datastore?

2009-07-11 Thread Koen Bok
Hey Jyoti, The purpose of JSON is to serialize a data structure. And serialization basically means storing it as a string (which is represented by bytes). Other methods of serialization are yaml or xml. For more advanced data structures like custom objects you can use the pickle module. The data

[google-appengine] Tokyo Cabinet Stub

2009-07-13 Thread Koen Bok
I was wondering if anyone already wrote a datastore stub on top of Tokyo Cabinet? There is a very nice one for MongoDB, so it shouldn't be too hard to write one for TC. If there isn't I might be writing one myself, if anyone wants to help out let me know. - Koen 1) http://www.10gen.com/blog/200

[google-appengine] Re: Tokyo Cabinet Stub

2009-07-14 Thread Koen Bok
rote: > Hi Koen, > > I'm not aware of one - but do let us know how you get on! Is there a > particular reason you want to use Tokyo Cabinet? > > -Nick Johnson > > On Mon, Jul 13, 2009 at 11:38 PM, Koen Bok wrote: > > > I was wondering if anyone already wrote a data

[google-appengine] Re: Tokyo Cabinet Stub

2009-07-14 Thread Koen Bok
en On Jul 14, 12:08 pm, "Nick Johnson (Google)" wrote: > On Tue, Jul 14, 2009 at 11:05 AM, Koen Bok wrote: > > > Hey Nick, > > > Well, for fun and to have options :-) > > Fair enough. I wrote BDBDatastore > (http://arachnid.github.com/bdbdatastore/) for muc

[google-appengine] Predict and Limit Index Size

2009-08-04 Thread Koen Bok
Is there any way to reliably calculate how large an index for an item will be? That way I could make sure my fulltext wordlists will never get the exploding inde problem. My current index is - kind: SearchableIndex properties: - name: parentKind - name: userKey - name: words - name: wo

[google-appengine] Re: Predict and Limit Index Size

2009-08-04 Thread Koen Bok
Maybe a better question to as is: how big can my wordlist be at maximum? And why? - Koen On Aug 4, 11:11 am, Koen Bok wrote: > Is there any way to reliably calculate how large an index for an item > will be? That way I could make sure my fulltext wordlists will never > get the explo

[google-appengine] Re: All Read Please: Geographical Request Latency

2009-08-13 Thread Koen Bok
Amsterdam: ~150ms low: 130ms, high 240ms On Aug 13, 3:53 pm, Joshua Smith wrote: > Near Boston: low 84ms, high 400ms, median around 95ms. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

[google-appengine] PNG Resizing and Transparency

2009-08-20 Thread Koen Bok
When I resize/crop a transparent PNG on appengine, it seems to replace transparency with black. Is there a way around this? - Koen --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to

[google-appengine] Re: Snow Leopard Compatibility

2009-08-29 Thread Koen Bok
I'm quite curious for this too. Anyone else? On Aug 29, 2:21 pm, Paul Kinlan wrote: > I have not seen any problems but I have only just updated. > Paul > > 2009/8/29 bentford > > > > > > > Does anyone have any news about running the Google App Engine Launcher > > on snow leopard?  Any issues? >

[google-appengine] Re: app instance is completely broken, DeadlineExceededError

2009-09-02 Thread Koen Bok
I'm seeing the same with our app. On Sep 2, 7:46 pm, Kenneth wrote: > Hi, > > I appear to have completely broken my application instance. If I > upload the application into another instance it runs correctly, but > I'm only seeing deadline exceeded errors in the instance that has my > data.  On

[google-appengine] DeadlineExceededError Errors for 5% of all Requests Since 9-2 4AM

2009-09-05 Thread Koen Bok
Since 2 September around 4PM I get random DeadlineExceededErrors for around 5% of all my requests. The tracebacks are pretty random, but almost always have to do something with I/O (read django template, stat file, import module). I can hardly imagine I'm the only one seeing this, and while annoyi

[google-appengine] Re: DeadlineExceededError Errors for 5% of all Requests Since 9-2 4AM

2009-09-06 Thread Koen Bok
I'm glad you guys can back me up on this :-) > I know that google is looking into this, but at what level I don't > know. How do you know? I mean, I would assume it but they're mostly pretty open about errors and I haven't read anything official on this. --~--~-~--~~~

[google-appengine] Re: Unable to Mail.send() - Timeout errors

2009-09-07 Thread Koen Bok
Just for the record, I saw the exact same all day today. On Sep 5, 12:35 am, danb wrote: > Hi, > > At the moment I am experiencing Mail.send() Timeouts (after 5 second > delay while sending e-mail) on Python API. It never took so long for > my app and I never seen this before today. Perhaps it i

[google-appengine] Re: Poor app performance: periods of very high latency

2009-09-18 Thread Koen Bok
FWIW, I think I've seen this behavior too. But when I switched to another app instance everything was smooth again. I have pingdom numbers to back this up if you are interested. - Koen On Sep 18, 11:43 am, Brandon Thomson wrote: > Nick, the app id is conquer-on-contact. > > Now that I think I k

[google-appengine] Announcing EnStore

2009-09-24 Thread Koen Bok
Hi everyone. I'm pleased to announce our ecommerce platform built on appengine: http://www.enstore.com Apart from some DeadlineExceeded errors, the launch went pretty smooth. Currently, a ton of Checkout users are syncing their products to build a webstore. Thanks appengine team! Koen --~--~

[google-appengine] cannot import name signals

2009-12-02 Thread Koen Bok
I'm getting lots of these suddenly. I had them a few months ago too, but didn't see them in a while. I use the appengine django 1.0. Anyone else having this too? Koen -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group,

[google-appengine] Seemingly undoable to build a simple app

2008-12-07 Thread Koen Bok
ove this thing to work for us! We want to use it and pay for it! Seriously, please fix the searching... you're Google for god sake :-) Kindest regards, Koen Bok - madebysofa.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

[google-appengine] Re: Seemingly undoable to build a simple app

2008-12-07 Thread Koen Bok
t the second slice of results (50-100) from a query with three words, sorted by name. I would have to do 3 queries, which will return more results than I'm looking for, see if they are in the other two results (intersect), and sort them. Please correct me if I'm wrong... Kindest reg

[google-appengine] Small & Dirty Fix for NoseGAE and SDK 1.1.9

2009-02-10 Thread Koen Bok
Change line nosegae.py:125 to: dev_appserver.FakeFile.SetAllowedPaths('', paths) --~--~-~--~~~---~--~~ 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@google

[google-appengine] Order/Stock Entity Groups Puzzle

2009-02-15 Thread Koen Bok
I'm trying to design a small webstore and running into some issues. I have an order that has multiple lines. If any of those lines change in quantity my stock entity should reflect that, so they should be wrapped in a transaction. But as an order can have multiple lines (referring to multiple sto

[google-appengine] Scalable Sequential Invoice Numbers

2009-02-21 Thread Koen Bok
Hey all. By tax law, invoice numbers need to always be unique and sequential. Anyone has an idea to approach this on AppEngine in a sensible way? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" gro

[google-appengine] Really weird performance issues

2009-03-24 Thread Koen Bok
Hey all, I have two really weird performance issues that I can't seem to fix. - With our rest api the first request is always slow (~1500ms) and all subsequent requests are way faster (~200ms). They are the exact same requests just with different data. When I stop making requests for like 10 sec

[google-appengine] Re: We are sorry.

2009-04-08 Thread Koen Bok
Same here, but our servers are actually live :-( On Apr 8, 11:38 am, gops wrote: > Google is showing this message repeatedly on my site( i am the > lone user of that website... just testing my application.. and so > repeatedly querying same url or so... ) this is very irritating > while

[google-appengine] Re: Is it safe to redirect sys.stdout to a StringIO?

2009-06-02 Thread Koen Bok
Hey Issac, While I can't really provide a definite answer, I used this quite often to profile specific functions (print_stats) and it always worked quite well. Koen On Jun 2, 10:14 am, Issac Trotts wrote: > Can my Python code on App Engine do something like this > > sio = StringIO.StringIO() >

[google-appengine] DataStore Item Keys and Indexing with a Constant Prefix

2009-06-23 Thread Koen Bok
I want my datastore keys to be uuid's (hex presentation), but they can start with a digit which is not allowed. So I figured I'd add a constant prefix. Could that have a negative impact on the index the datastore builds? It shouldn't right? Just double checking :-) --~--~-~--~~---

[google-appengine] Re: DataStore Item Keys and Indexing with a Constant Prefix

2009-06-23 Thread Koen Bok
? - Koen On Jun 23, 12:57 pm, Koen Bok wrote: > Great, thanks Nick. > > "No, having all your keys have the same prefix will not impact > performance. > Bigtable is smart enough to handle this. :) " > > Now I didn't know this, and I can't find anything

[google-appengine] Re: DataStore Item Keys and Indexing with a Constant Prefix

2009-06-23 Thread Koen Bok
quot;Nick Johnson (Google)" wrote: > Hi Koen, > > No, having all your keys have the same prefix will not impact performance. > Bigtable is smart enough to handle this. :) > > -Nick Johnson > > On Tue, Jun 23, 2009 at 11:14 AM, Koen Bok wrote: > > > I want

[google-appengine] Re: I can't access my app from my computer. Google "unusual traffic" error message.

2011-01-27 Thread Koen Bok
And same here. .appspot domain works, custom domain is borked. No Captcha's too. Incredibly annoying. -- 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 fr