Re: [google-appengine] HTTPS as a ranking signal

2014-08-09 Thread Vinny P
On Fri, Aug 8, 2014 at 3:00 PM, Jason Collins 
 wrote:

> Re:
> http://googlewebmastercentral.blogspot.ca/2014/08/https-as-ranking-signal.html
>
> Ok Google, now we most definitely need an API to manage custom domains,
> mount certificates, and configure HTTPS hosting using an API without a
> Google account requirement.
>


I wouldn't be surprised if they're working on it right now. Google Domains
is in beta (a domain management/registrar service):
http://domains.google.com/about/ and it's easy to see how Google might
reuse the backend for that to plug into Cloud Platform services. Click on
the link there, you can get on the waitlist for a beta invite code (I'm
also on the waitlist).

+1 to what Jason said.

-
-Vinny P
Technology & Media Consultant
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Find the max value in a column of app engine datastore

2014-08-09 Thread Vinny P
On Sat, Aug 9, 2014 at 8:05 AM, Bishan Buddhika  wrote:

> I have a table in google app engine datastore as ItemDatwith columns as
> below.
>
> item_no, letter, f_no, s_no, t_no
>
> I need to get the max value in item_no column. How can i achieve this ?
>



You would query for *ItemDat* entities and sort by the *item_no* property:
https://developers.google.com/appengine/docs/java/datastore/queries#Java_Sort_orders


-
-Vinny P
Technology & Media Consultant
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] jinja2 template file not accessible

2014-08-09 Thread Vinny P
On Fri, Aug 8, 2014 at 12:09 PM, saintthor  wrote:
>
> IOError: [Errno 13] file not accessible:
> '/home/thor/google_appengine/guideep/templates/t.html'
>
>
> running in dev-server. the template file path is right. how to fix this?
>


If you upload your application to production App Engine, does it work? What
error do you see in App Engine production logging?


-
-Vinny P
Technology & Media Consultant
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Fastest way to store and retrieve dynamic data?

2014-08-09 Thread Nooby
If I have say two people on a website and they are both editing something, 
say for example a spreadsheet.

What is the best way to quickly store changed data so that both users get 
the latest data.

Is it the datastore? Is it the cloud SQL? Is it saving XML files? Which one 
is the quickest and most accurate?

(What would Google use for this, say for their online spreadsheet app? 
Also, is the browser continually requesting data from the server or is the 
server automatically sending updated information to the browser? BTW. I'm 
not making an online spreadsheet!)

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: HTTPS as a ranking signal

2014-08-09 Thread Kaan Soral
I will also jump in and request simple and automatic SSL integration and 
improved DNS capabilities to easily redirect naked domains or implement 
simple rules (cloudflare is great, however appengine should do these things 
on it's own, using another service to handle these things makes me 
paranoid, they are extremely crucial)

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Find the max value in a column of app engine datastore

2014-08-09 Thread Kaan Soral
sort by -item_no and .get the item
-- or -- implement a system to cache and update this value in memcached 
(also requires the first method to generate the value when memcached is 
flushed)

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Find the max value in a column of app engine datastore

2014-08-09 Thread Bishan Buddhika


I have a table in google app engine datastore as ItemDatwith columns as 
below.

item_no, letter, f_no, s_no, t_no

I need to get the max value in item_no column.

How can i achieve this ?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.