Re: [google-appengine] Re: a bug of urlfetch on GAE production server

2017-01-21 Thread Niklas Rosencrantz
I'm getting the hitrate 95 % but I don't think that is real. I'm going to look at it. On Thursday, July 9, 2009 at 11:13:53 AM UTC+2, Nick Johnson (Google) wrote: > > Hi chenbaiping, > > The IPs that App Engine does URL fetches from are not the same ones it > serves requests from. They may be

Re: [google-appengine] How long does it take to be able to send email to more than 100 recipients

2012-03-06 Thread Niklas Rosencrantz
Thanks, I too was wondering about this. On Monday, March 5, 2012 7:44:34 PM UTC, Amy Unruh wrote: Paco, The 100-recipients limit remains in place until the first billing charge is cleared. That can sometimes take about a week. This is documented (not very obviously) here:

[google-appengine] Adding an email address as an authrorized send for my app

2012-02-04 Thread Niklas Rosencrantz
I want to add another email address as the send for my app so I must cativate that email as permitted for my app but I can't accept the invitation since it is not a google account. What is the best way to do this? Do I have to add to domain to google apps? Thanks -- You received this message

[google-appengine] Re: OAuth authentication with GAE apps: side project or ready for prime time?

2012-01-31 Thread Niklas Rosencrantz
I could use OAuth to enable login with Twitter and login with Facebook. The implementation was rather straightforward. I followed the docs about OAuth from Facebook: http://developers.facebook.com/docs/authentication/ -- You received this message because you are subscribed to the Google Groups

[google-appengine] Finding the logs for failed cron jobs and failed tasks

2012-01-25 Thread Niklas Rosencrantz
If a cron job or a task fails, I sometimes can't find the corresponding log file part. Wouldn't it be good if there was a link from the failed job to the relevant log part so that I don't have to scan the logs looking for the error message? I now for instance have a failed task that I want to

[google-appengine] Are the more python than java GAE apps?

2012-01-22 Thread Niklas Rosencrantz
Which is more deployed, Java or Python apps? Is that statistic official? I use python for most of my apps and I could believe that python is the more popular environment choice. Thanks /Nick R -- You received this message because you are subscribed to the Google Groups Google App Engine

[google-appengine] Re: First Tutorial On GAE Python Is Up

2012-01-22 Thread Niklas Rosencrantz
Thanks Brandon! Great video. \niklas On Sunday, January 22, 2012 5:43:54 AM UTC+1, Brandon Wirtz wrote: http://www.youtube.com/watch?v=cJGKKPXsSWg Won’t teach most of you anything, and I didn’t go into the fact that Python 2.7 isn’t supported by this, but this is a much simpler way to

[google-appengine] Re: Starting a Video Series To Introduce Programmers to AppEngine (Python)

2012-01-21 Thread Niklas Rosencrantz
Important for me is to use the interpretor directly and the remote API so that I can use the gae without a script directly from the python interpretor. It requires a correct install to start python and do a from google.appengine.ap import ... and making python find the module without writing a

[google-appengine] Re: ROFLMFAO DynamoDB From Amazon

2012-01-21 Thread Niklas Rosencrantz
Thanks for this thread. I'm curious why you need so many writes. Do you write to the datastore just because there is a request? Isn't that ineffeicient? I have many handlers that don't do writes at all. Best regards, Nick -- You received this message because you are subscribed to the Google

[google-appengine] Re: GAE 1.6 can not import module jinja2

2012-01-16 Thread Niklas Rosencrantz
If you do import jinja2 you must download jinja2 and keep it in the app directory and it will work. The correct way of doing it however is to my knowledge from webapp2_extras import jinja2 then you don't need the local library since you're importing from webapp2. It may depend on whether

[google-appengine] Re: Datastore Admin broken on python27

2012-01-02 Thread Niklas Rosencrantz
On Saturday, December 31, 2011 1:38:24 AM UTC+1, Maximillian Dornseif wrote: On Dec 31, 1:22 am, Maximillian Dornseif m.dor...@hudora.de wrote: On Dec 27, 7:43 pm, Anand Mistry ami...@google.com wrote: The recommended way to use datastore admin with Python 2.7 is by enabling it

[google-appengine] Re: Happy New Year

2012-01-01 Thread Niklas Rosencrantz
Happy new year Brandon and I hope your projects and sucessful, had growth 2010-2011 and I wonder what an estimate for 2012 is like how pageview growth can relate to income growth since it's in practice not completely linear relation where I have a small project and I experience what all

Re: [google-appengine] GAE for web shop

2011-12-30 Thread Niklas Rosencrantz
Now I've gotten credit card processing to work in test mode via authorize.net: $ python Python 2.7.1+ (r271:86832, Apr 11 2011, 18:13:53) [GCC 4.5.2] on linux2 Type help, copyright, credits or license for more information. from zc.authorizedotnet.processing import CcProcessor Traceback (most

Re: [google-appengine] GAE for web shop

2011-12-24 Thread Niklas Rosencrantz
Thank you guys for elaborating on the topic. I did not get so far as to credit card processing and such but I definitely will try it later on. I basically just set up a prototype site displaying the products and I will add business logic now like login / logout with customer IDs and handling

Re: [google-appengine] GAE for web shop

2011-12-23 Thread Niklas Rosencrantz
Thanks a lot for the positive and detailed info! If you don't mind I will get back to this topic when we have proceeded as far as actually getting to work on connecting to an accounting system and paypal and credit card transactions. So far I did the web-based system with CSS, python and HTML

Re: [google-appengine] GAE for web shop

2011-12-20 Thread Niklas Rosencrantz
Thank you for the information! If you want to have a look at the start of the webshop I'm making with python the URL to my project alpha / beta is http://bnano-www.appspot.com/ Regards, Niklas On Tue, Dec 20, 2011 at 1:59 AM, voscausa robert@gmail.com wrote: i created a webshop using Ogone

[google-appengine] GAE for web shop

2011-12-19 Thread Niklas Rosencrantz
I'm proposing that a company uses GAE instead of PHP for their web shop. Is this a reasonable thing to do even though there seem to be no mature web shop system for GAE even though there is this django project http://www.satchmoproject.com/ that has the goal of being ecommerce with django but

Re: [google-appengine] GAE for web shop

2011-12-19 Thread Niklas Rosencrantz
Of Niklas Rosencrantz Sent: Monday, December 19, 2011 1:23 PM To: google-appengine@googlegroups.com Subject: [google-appengine] GAE for web shop I'm proposing that a company uses GAE instead of PHP for their web shop. Is this a reasonable thing to do even though there seem to be no mature web shop

Re: [google-appengine] GAE for web shop

2011-12-19 Thread Niklas Rosencrantz
That's very good to know, thanks a lot for all the detailed info! /Niklas On Mon, Dec 19, 2011 at 10:30 PM, Simon Knott knott.si...@gmail.com wrote: Whilst PayPal works with GAE, I think a lot of people face rate limiting with their APIs as all GAE apps are coming from the same bank of IP

[google-appengine] Re: Translate according to domain

2011-12-15 Thread Niklas Rosencrantz
I do this with python 2.7 + Jinja2 with messages.po files. The same apphttp://classifiedsmarket.appspot.comcan serve a Brazilian domain in Brazilian Portuguese http://www.montao.com.br and an Indian domain in plain English http://www.koolbusiness.com. I don't use namespaces for this however

Re: [google-appengine] What are folks using for Backup?

2011-12-15 Thread Niklas Rosencrantz
I could sync to mysql but not the blobstore using approckethttps://github.com/k7d/approcket(1 entities.) I don't use much old data anyway so I'd be backing up large amounts I'd never need. Sincerely, Niklas -- You received this message because you are subscribed to the Google Groups

Re: [google-appengine] Memory and CPU allocation?

2011-12-11 Thread Niklas Rosencrantz
Thank you Amy for the reply and the links. I would like something to compare my other installations with ie I had a virtual linux server with 256 MB RAM and 1 GHZ CPU or likewise and I concluded that my Java app needed at least 512 MB memory. PHP I could run with only 256 MB. So I wonder if

Re: [google-appengine] Memory and CPU allocation?

2011-12-11 Thread Niklas Rosencrantz
Thank you for the information. It's very positive that we can focus on application development instead of system administration and server tuning. I went from physical (colocation) to virtual (godaddy) to cloud (appspot) and I recoded my app from Java to python since I wanted to make an early

[google-appengine] Memory and CPU allocation?

2011-12-08 Thread Niklas Rosencrantz
Hi I'd like to know how memory and CPU gets assigned to an application instance. Say I deploy an application and there are no users for some hours. Then that instance will shut down, get garba collector or likewise and then turned on if there is access again. Is this correct? So if there is

[google-appengine] Re: Unhappy GAE Developers Petition

2011-12-06 Thread Niklas Rosencrantz
About the cost I completely agree with Simon Knott that bad system design can cause creeping costs you eg. having a cron job every 5 seconds for what can be batched in a daily cron job would significantly increase your costs at no particular gain in efficiency so I too think that some of us who

[google-appengine] Re: Serve blobstore as static file

2011-11-22 Thread Niklas Rosencrantz
Have you considered BlobstoreDownloadHandler? Using it is straighforward: class FileDownloadHandler(blobstore_handlers.BlobstoreDownloadHandler): def get(self, file_id): file_info = FileInfo.get_by_id(long(file_id)) if not file_info or not file_info.blob: self.error(404)

[google-appengine] Re: Django Library

2011-11-18 Thread Niklas Rosencrantz
I recommend switching to python 2.7 that abstracts away selecting the django version. There is a blog post how to do it at blog.notdot.net If you can't or don't want to upgrade to python 2.7 now you can add a line to your appengine_config.py to select which version django imports. I used

Re: [google-appengine] Re: Django Library

2011-11-18 Thread Niklas Rosencrantz
/18 Niklas Rosencrantz nikla...@gmail.com I recommend switching to python 2.7 that abstracts away selecting the django version. There is a blog post how to do it at blog.notdot.net If you can't or don't want to upgrade to python 2.7 now you can add a line to your appengine_config.py to select

[google-appengine] Re: Redirect Dead Apps?

2011-11-18 Thread Niklas Rosencrantz
I'd like to know what the aforementioned multitenancy is. I try to achieve multtenancy with python with limited results since I learn that namespaces can only know one namespace at a time so I can't display eveything from a datastoreeven though it's the same app, I think. I use python and I

[google-appengine] redirect workaround for issue 777

2011-10-08 Thread Niklas Rosencrantz
Hello My domain can do with a redirect but then mydomain.tld/a should redirect to www.mydomain.tld/a and now it seems to redirect to www.mydomain.tld In practice my koolbusiness.com/delhi redirects to www.koolbusiness.com when it should redirect to www.koolbusiness.com/delhi Can you recommend me

Re: [google-appengine] Re: like operator in GQL

2011-09-28 Thread Niklas Rosencrantz
These are among the drawbacks, minuses and reasons why app engine should be cheaper than traditional hosting: - no join, no like, no full text search while sql-based system have these - extremely difficult to migrate from M/S to HRD while sql-based system usually can migrate even large blobs -

Re: [google-appengine] Re: like operator in GQL

2011-09-28 Thread Niklas Rosencrantz
solution (see the video). so I'm extremelly happy with GAE :) I hope you enjoy it too, Bruce. On Sep 28, 10:18 am, Niklas Rosencrantz nikla...@gmail.com wrote: These are among the drawbacks, minuses and reasons why app engine should be cheaper than traditional hosting: - no join, no like

[google-appengine] Re: like operator in GQL

2011-09-26 Thread Niklas Rosencrantz
Depending on your use case you might want to stick with google search i.e. adding the google search box via adsense while waiting for google to offer the full-text search functionality we require. Regards, Nick Rosencrantz -- You received this message because you are subscribed to the Google

Re: [google-appengine] Google Apps Viewer-like Thing for Audio/Video?

2011-09-22 Thread Niklas Rosencrantz
I use 1pixelout.swf but that is flash and audio only so I understand the limitations. Still it worked well for a project where I wanted to display a list of mp3 and a player for each. I think it should be a feature request to add functions like these to app engine in an independent way such

Re: [google-appengine] Re: New Pricing ROCKS! for Small apps

2011-09-19 Thread Niklas Rosencrantz
https://lh5.googleusercontent.com/-mYRU7MvjRQI/TndWaN3NpHI/A9o/1c3ZDl91hkw/estimates.png Thanks for sharing the info about your apps. I think it could be better for apps that are medium-sized. If your app is commercial you can't expect to host it for free anyhow. And I agree that you

Re: [google-appengine] I can't turn on datastore admin from dashboard.

2011-09-16 Thread Niklas Rosencrantz
I have this problem from my app that uses federated login. When I try enable datastore admin it says Error: Not Found The requested URL /_ah/login_required?continue=http://ah-builtin-python-bundle-dot-latest-dot-app-ip.appspot.com/_ah/datastore_admin/was not found on this server. -- You

[google-appengine] Re: Blobstore v.s static file serving

2011-09-09 Thread Niklas Rosencrantz
I think that get_serving_url can be better than something like /static/images... if not for performance then for convenience and consistency to serve blobs from the blobstore. I think get_serving_url and blobstore are very good projects not only for performance but also convenience and that

[google-appengine] Re: Adding 5GB of Blobstore data to App Engine over 3 three days costs $61 by end of year?

2011-09-09 Thread Niklas Rosencrantz
In fact the new pricing makes one of my apps even more cost-efficient: It used to cost 1 cent a day and with the new pricing it won't cost anything since it's less than 5 GB and blobstore. So the new pricing doesn't make everything more expensive while on average it might. Cheers, Niklas

Re: [appengine-java] Re: [google-appengine] Re: CMS for GAE

2011-07-18 Thread Niklas Rosencrantz
Having something like a CMS eg like wordpress, joomla or mediawiki compatible then we won't have to start every project from scratch and project would become more configuration than programming which naturally is an advantage since programming takes more time than just configuring a new CMS

[google-appengine] CMS for GAE

2011-05-19 Thread Niklas Rosencrantz
Hi One of the disadvantages with GAE is that there is no CMS like Drupal och Joomla to easily deploy new large projects. Is there a CMS for GAE in the making? I found myself creating the basic functions of a CMS from scratch ie adding, viewing, editing and deleting articles in a categorized

Re: [google-appengine] CMS for GAE

2011-05-19 Thread Niklas Rosencrantz
version by end of this year. -- Prashant On Thu, May 19, 2011 at 3:44 PM, Niklas Rosencrantz nikla...@gmail.com wrote: Hi One of the disadvantages with GAE is that there is no CMS like Drupal och Joomla to easily deploy new large projects. Is there a CMS for GAE in the making? I found

Re: [google-appengine] Re: Is GAE expected to get faster in the future?

2011-05-06 Thread Niklas Rosencrantz
We can measure with yslow to see what we get. 50 ms I understand is good and 200 to 300 ms approvable. Where I need to optimize is where there are timeouts (where generating zip files) where responses are so slow as taking seconds. I measured with yslow and an idea, for optimization, is that we

Re: [google-appengine] Re: Is GAE expected to get faster in the future?

2011-05-04 Thread Niklas Rosencrantz
On Wed, May 4, 2011 at 5:10 PM, Brandon Donnelson branflake2...@gmail.com wrote: I got 40ms loading this http://demogwtcanvas.appspot.com/test.html Brandon -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email

Re: [google-appengine] Re: Is GAE expected to get faster in the future?

2011-05-04 Thread Niklas Rosencrantz
On Wed, May 4, 2011 at 6:30 PM, Brandon Donnelson branflake2...@gmail.com wrote: Its plain html no rendering. Eclipse uploaded. (mobile at moment) On May 4, 2011 11:04 AM, Niklas Rosencrantz nikla...@gmail.com wrote: On Wed, May 4, 2011 at 5:10 PM, Brandon Donnelson branflake2...@gmail.com

Re: [google-appengine] Re: Is GAE expected to get faster in the future?

2011-05-02 Thread Niklas Rosencrantz
Thanks for the interesting comments giving me some benchmarks to compare with. I've now measured my app with yslow and some of my pages load in about 200 ms while the slow ones take like 2 or 3 seconds. I used to run this application on a dedicated physical server running Linux + MySQL + JBoss

[google-appengine] Is GAE expected to get faster in the future?

2011-05-01 Thread Niklas Rosencrantz
I know we can optimize our code so that it runs faster but still I find absolute response times from app engine are somewhat slow. Will it get faster in the future even though I don't redeploy a new more optimized version? I'm comparing with a physical dedicated rack server running a Linux +

Re: RE: [google-appengine] Advantages of GAE

2011-04-26 Thread Niklas Rosencrantz
On Tue, Apr 26, 2011 at 3:29 PM, Brandon Donnelson branflake2...@gmail.comwrote: I'm curious, do you have experience with this? I've been envolved with a couple larger projects and with electricity, air conditioning/chilling, facility cost, engineers to maintain, security, multi ISP costs, app

Ang.: RE: RE: [google-appengine] Advantages of GAE

2011-04-24 Thread Niklas Rosencrantz
Thank you Robert for putting it very well said: on AppEngine you're not paying for massive amounts of idle capacity This is what a mean with cost-effectiveness. When all you pay for is outgoing bandwidth and storage you can for instance make just an indexing service extremely cheap with almost

[google-appengine] Advantages of GAE

2011-04-23 Thread Niklas Rosencrantz
Hi when reading the web2py manual I found they listed the advantages GAE has. These are mentioned like - Ease of deployment. - Scalability. - BigTable. However I think that one large advantage is missing from this list namely the cost-effectiveness. Since we only pay for what we use

[google-appengine] Can't delete app version from console

2011-04-17 Thread Niklas Rosencrantz
Hi My attempt to delete 11.latest.classifiedsmarket.appspot.com from the datastore console fails. The response is Server Error A server error has occurred. Return to Applications screen » https://appengine.google.com/ Do you have any idea why this is happening? Thanks Niklas -- You

Re: [google-appengine] Redirect from naked domain preserving full path

2011-04-12 Thread Niklas Rosencrantz
I also have this issue. You can reproduce error easily: http://www.koolbusiness.com/ai compared to http://koolbusiness.com/ai These addresses should go to the same page. Regards, Niklas -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post

Re: [google-appengine] Twitter + OAuth Python example

2011-03-21 Thread Niklas Rosencrantz
I followed links to a project called tweetapp https://github.com/tav/tweetapp I hope you can comment it that can login twitter users to my app using it after registering a key with twitter. Regards, Niklas -- You received this message because you are subscribed to the Google Groups Google App

[google-appengine] Re: Localization question

2011-03-13 Thread Niklas Rosencrantz
We got some activity about this yet unsolved problem in the other group: https://groups.google.com/forum/#!topic/google-appengine-python/-uKP8QzIvCE If you can discuss so that we can make it work, please do. Regards /Niklas -- You received this message because you are subscribed to the Google

Re: [google-appengine] Re: GAE / BigTable articles

2010-01-04 Thread Niklas Rosencrantz
2010/1/4 Ice13ill andrei.fifi...@gmail.com: Thanks! I need some articles for a presentation, from a generic point of view, about datstore/bitgatble administration, so not necessarily dependent on prgr language, or GAE. Google's clusters imagining that presentation are linked here

Re: [google-appengine] by default property are not required

2010-01-02 Thread Niklas Rosencrantz
2010/1/2 james_027 cai.hai...@gmail.com: I wonder why by default the model's property required option is False, which contrast to the others. And if I am going to use the djangoforms I have to put required=False on most of my fields. Is there something I need to know or understand? Or is it

Re: [google-appengine] Is this suitable for GAE Application Gallery?

2009-12-30 Thread Niklas Rosencrantz
2009/12/30 Amir Michail amich...@gmail.com: Hello, It's a game demo written using GWT:  http://dropzap.appspot.com Does it make sense to submit an application to this gallery if it doesn't use the GAE in any interesting way? This demo could have been put on Google Sites if that service

Re: [google-appengine] Can somebody help me in getting source code of a CHAT ROOM application based on google app engine

2009-12-30 Thread Niklas Rosencrantz
2009/12/30 saurabh sagarwal1...@gmail.com: Hi, I want to make a chat room that uses google app engine xmpp api , Later I want that chat room to be bot enabled  ie a room having multiple participants and a bot also. Can anybody point to some well tested source code. Thanks SAurabh Here's

Re: [google-appengine] Re: Need Help with Datastore Query

2009-12-29 Thread Niklas Rosencrantz
expensive instruction to redo or question is int(self.request.get('id')) so avoid casting for 1 2009/12/28 Ms. Jen blackpho...@gmail.com: I tried the Meta and DjangoForms and it still did not work. On another attempt, I tried this with the Meta djangoforms:    id =

Re: [google-appengine] A simple search against a datastore. (Newbie to AppEngine, currently PHP/MySQL).

2009-12-29 Thread Niklas Rosencrantz
2009/12/29 Diligent qpwoeir...@comcast.net: In trying to make a transition from a purely PHP/MySQL background to AppEngine's Python/Datastore I find myself not quite getting done what I need. Currently I have a web application in which a user chooses multiple search criteria via an HTML form

Re: [google-appengine] A simple search against a datastore. (Newbie to AppEngine, currently PHP/MySQL).

2009-12-29 Thread Niklas Rosencrantz
2 most helpful for legacy connections and refactoring links djangoform and remote_api http://code.google.com/appengine/articles/djangoforms.html http://code.google.com/appengine/articles/remote_api.html -- You received this message because you are subscribed to the Google Groups Google App

Re: [google-appengine] URL slugs

2009-12-29 Thread Niklas Rosencrantz
2009/12/29 lucrussell russell@googlemail.com: Hi All, Just wrote a little post on implementing pretty URL slugs with the routes package, for my GAE application at www.braineos.com. I'd be interested to know if anyone else has done this? Cheers, Luc Agreed like

Re: [google-appengine] files 1MB? If not.. redirect a POST?

2009-12-05 Thread Niklas Rosencrantz
Here's 4. Will the paid version of Google App Engine allow over 1000 files and/or larger than 1MB files (or entities)? http://groups.google.com/group/google-appengine/browse_thread/thread/3d09a676163b3108/85e5f49d2ae49aee example: upload a 2 MB file through a html form, split it serverside into 2

Re: [google-appengine] Has anyone done a source code control system hosted on App Engine?

2009-12-03 Thread Niklas Rosencrantz
On Wed, Dec 2, 2009 at 11:51 PM, samwyse samw...@gmail.com wrote: I'd like to host Hg or something someplace with better uptime than my home server. There's Rietveld Code Review for Subversion svn which syncs to hg http://code.google.com/p/rietveld/ I too look for good hg handling, somewhat

Re: [google-appengine] Re: Migrating an existing PHP/MySQL web application to GAE

2009-12-02 Thread Niklas Rosencrantz
On Thu, Dec 3, 2009 at 12:24 AM, marksea mark...@gmail.com wrote: I'm certainly not a guru, but I would not start out by attempting to migrate any non-trivial application to GAE.  From what I've seen so far, in addition to requiring major rewrites due to a fundamentally different db

Re: [google-appengine] Reference Properties

2009-11-29 Thread Niklas Rosencrantz
On Sun, Nov 29, 2009 at 5:49 PM, Robert Kluin robert.kl...@gmail.com wrote: I think you can acheive the back reference by defining an instance method that returns a query object defined to search the other model for references to itself.   In fact I think that is all ReferenceProperty does

Re: [google-appengine] Reference Properties

2009-11-29 Thread Niklas Rosencrantz
On Sun, Nov 29, 2009 at 9:00 PM, Rodrigo Moraes rodrigo.mor...@gmail.com wrote: On Sat, Nov 28, 2009 at 10:09 PM, MajorProgamming wrote: I was wondering: isn't using reference properties a waste of space? Wouldn't it make more sense to store the id (assuming not using key_name) of the entity.

Re: [google-appengine] Re: GAE for CPU intensive time important application

2009-11-28 Thread Niklas Rosencrantz
On Sat, Nov 28, 2009 at 5:13 PM, Eric shel...@gmail.com wrote: Another question, you both recommended Python for some of its features, but isn't Python much slower than Java? So wouldn't that necessitate many more instances/CPUs to keep with the query load? Yes, the python VM is slower than

Re: [google-appengine] Reference Properties

2009-11-28 Thread Niklas Rosencrantz
On Sun, Nov 29, 2009 at 12:09 AM, MajorProgamming sefira...@gmail.com wrote: I was wondering: isn't using reference properties a waste of space? Wouldn't it make more sense to store the id (assuming not using key_name) of the entity. After all, if the Kind is known, one can easily generate the

Re: [google-appengine] Re: Can a bank system be transactional and low contentious?

2009-11-27 Thread Niklas Rosencrantz
On Fri, Nov 27, 2009 at 10:22 AM, 风笑雪 kea...@gmail.com wrote: If so, why google's engineers wast so much time for supporting the useless transaction system? No google guys would like tell me the reason? For the future, tech team and investment banking very 2 systems you know, one is more

Re: [google-appengine] GAE for CPU intensive time important application

2009-11-27 Thread Niklas Rosencrantz
1) pricing absolutely seems so. gae apps 1/20 cheaper than previous hostingmethods (servers) 2) latency resulting from slow CPU, JIT compiles, etc. latency oriented group we don't focus on http://groups.google.com/group/make-the-web-faster in the long run, yes. you can compare to dedicated

Re: [google-appengine] Can a bank system be transactional and low contentious?

2009-11-26 Thread Niklas Rosencrantz
outsource banking to spreadsheeters and deploy only inventive models (everyone has user and customer models ) since you need external verification and auctorizāre (octroi) for advanced business. my stuff looks like this, not very flexible (I don't rule exchange rates)

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

2009-11-26 Thread Niklas Rosencrantz
, custom setups may trick us. Experimental can work, at least (re)sample, Nyquist theorem good theoretical background. Some os fork the actual file instead of getting descriptives. In short many ways supporting we can. On Nov 26, 2:37 am, Niklas Rosencrantz teknik...@gmail.com wrote: On Thu, Nov 26

Re: [google-appengine] MP3 Data Retreival

2009-11-25 Thread Niklas Rosencrantz
On Thu, Nov 26, 2009 at 5:14 AM, MajorProgamming sefira...@gmail.com wrote: Is there any way to somehow fetch an external MP3 file (i.e. from another website), and then calculate the length of the MP3 file. I don't need the actual data of the file, I just want the length of it (time it

Re: [google-appengine] Re: When naked domain will be available again

2009-11-17 Thread Niklas Rosencrantz
I suggest default to www and let clients handle it. When blank domain unreachable, set standard so that client moves to www.[domain -- 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] Re: Tragedy of the Commons, and Cold Starts

2009-11-03 Thread Niklas Rosencrantz
Any instance can, then static can. Or please availabilize counterexample. --~--~-~--~~~---~--~~ 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] Re: host info

2008-12-05 Thread Niklas Rosencrantz
What's the best way to get the top domain? We can do url.substring(lastindexof('.')) though a reg ex seems preferrable. 2008/12/5 Jonk [EMAIL PROTECTED] On 5 joulu, 05:22, niklasr [EMAIL PROTECTED] wrote: os.environ may achieve it import os if os.environ.get('HTTP_HOST'): url =

[google-appengine] Re: filter logs with reg exp

2008-12-02 Thread Niklas Rosencrantz
i tried it and couldn't make it. What was needed is everything in the log except that from two or more ip numbers. Maybe something like [^(123\.456)|(345\.456)]? thank you 2008/12/2 djidjadji [EMAIL PROTECTED] ^(123\.456)|(345\.456) 2008/12/2 niklasr [EMAIL PROTECTED]: Hello How do we

[google-appengine] Re: filter logs with reg exp

2008-12-02 Thread Niklas Rosencrantz
/12/2 Niklas Rosencrantz [EMAIL PROTECTED]: i tried it and couldn't make it. What was needed is everything in the log except that from two or more ip numbers. Maybe something like [^(123\.456)|(345\.456)]? thank you 2008/12/2 djidjadji [EMAIL PROTECTED] ^(123\.456)|(345\.456) 2008

[google-appengine] Re: filter logs with reg exp

2008-12-02 Thread Niklas Rosencrantz
with the two named IP adresses 2008/12/2 Niklas Rosencrantz [EMAIL PROTECTED]: Here's one line in the log that I caused, so I want to negatively match it so it won't display: 195.189.142.213 - niklasro [02/12/2008:03:14:01 -0800] GET /gallery/ahFjbGFzc2lmaWVkc21hcmtldHIMCxIFSW1hZ2UYtE0M.jpg

[google-appengine] Re: Hello, World! - Fatal error when loading application configuration

2008-11-29 Thread Niklas Rosencrantz
It happened with Notepad+ here, probably from copypasting yaml from a html page.When copypasting yaml from html, it seems the '\t' appears in our editors. Niklas 2008/11/29 cashby [EMAIL PROTECTED] Wow! That worked perfectly. Thank you very much. Are you using UltraEdit? I am just

[google-appengine] Re: Data Viewer GQL to test if value == null?

2008-11-28 Thread Niklas Rosencrantz
You can have a default value in your model and then filter value = db.IntegerProperty(default=-1) filter(value =, -1) 2008/11/28 Alexander Kojevnikov [EMAIL PROTECTED] The GQL reference doesn't mention a NULL value literal. However, this hack will do the job: SELECT * FROM Bookmark