Re: [google-appengine] Cannot activate the Google App Engine

2012-08-10 Thread Joshua Woodward
Do you have an alternative number?

I was able to activate on another account using my Google voice number, but
you could also use a friends number, you just need the verification code.

I agree though, the registration part of App Engine needs to be revisited.

On Thu, Aug 9, 2012 at 1:42 PM, Jean-Marc Lagace  wrote:

>
> I had activated the app engine a long time ago on my personal account to
> start development and have since moved to a Google Apps for Business
> account with my company name (m2i3.com).
>
> I'm looking at restarting development on the App engine but cannot
> activate the account anywhere. Considering you got my credit card, address
> it feels a bit strange that you need to activate the App Engine again using
> a cell number.
>
> In any case can my number mobile number be unassociated from my old
> account and made available to activate the App Engine onto this account.
>
> Regards,
>
> --
> Jean-Marc Lagacé
> owner, M2i3.com
>
> --
> 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/-/fVKBAIKDsFwJ.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>



-- 



Google+ - http://joshuawoodward.com/+
Twitter - @howtohtml5 

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Hello World!

2012-08-10 Thread Joshua Woodward
>From GAE launcher start a new project

Click + in lower left, name it helloworld, save it wherever

It will create/populate all the files/syntax you need for the hello world
demo
compare those files/directories to see what is missing or different


On Thu, Aug 9, 2012 at 10:46 PM, anand gautam  wrote:

> Hi Everyone,
>
> I am a newbie and trying to get a hang of GAE. I am trying to do a simple
> 'Hello World' example using GAE but keep getting an error. I have two files
> in the helloworld folder, helloworld.py and app.yaml with the following
> code:
>
> import webapp2
>
> class MainPage(webapp2.RequestHandler):
>   def get(self):
>   self.response.headers['Content-Type'] = 'text/plain'
>   self.response.out.write('Hello, webapp World!')
>
> app = webapp2.WSGIApplication([('/', MainPage)],
>   debug=True)
>
> application: helloworld
> version: 1
> runtime: python27
> api_version: 1
> threadsafe: true
>
> handlers:
> - url: /.*
>   script: helloworld.app
>
> But when I launch the app from GAE launcher, http://localhost:8080/ does
> not load. I get the following message in the log:
>
> SyntaxError: invalid syntax
> INFO 2012-08-10 05:41:31,773 dev_appserver.py:2952] "GET / HTTP/1.1"
> 500 -
> ERROR2012-08-10 05:41:31,996 wsgi.py:189]
> Traceback (most recent call last):
>   File "C:\Program Files
> (x86)\Google\google_appengine\google\appengine\runtime\wsgi.py", line 187,
> in Handle
> handler = _config_handle.add_wsgi_middleware(self._LoadHandler())
>   File "C:\Program Files
> (x86)\Google\google_appengine\google\appengine\runtime\wsgi.py", line 225,
> in _LoadHandler
> handler = __import__(path[0])
>   File "C:\Program Files
> (x86)\Google\google_appengine\google\appengine\tools\dev_appserver_import_hook.py",
> line 676, in Decorate
> return func(self, *args, **kwargs)
>   File "C:\Program Files
> (x86)\Google\google_appengine\google\appengine\tools\dev_appserver_import_hook.py",
> line 1858, in load_module
> return self.FindAndLoadModule(submodule, fullname, search_path)
>   File "C:\Program Files
> (x86)\Google\google_appengine\google\appengine\tools\dev_appserver_import_hook.py",
> line 676, in Decorate
> return func(self, *args, **kwargs)
>   File "C:\Program Files
> (x86)\Google\google_appengine\google\appengine\tools\dev_appserver_import_hook.py",
> line 1722, in FindAndLoadModule
> description)
>   File "C:\Program Files
> (x86)\Google\google_appengine\google\appengine\tools\dev_appserver_import_hook.py",
> line 676, in Decorate
> return func(self, *args, **kwargs)
>   File "C:\Program Files
> (x86)\Google\google_appengine\google\appengine\tools\dev_appserver_import_hook.py",
> line 1665, in LoadModuleRestricted
> description)
>   File "C:\Users\anandg112\Desktop\helloworld\helloworld\helloworld.py",
> line 1
> Python 2.7.3 (default, Apr 10 2012, 23:24:47) [MSC v.1500 64 bit
> (AMD64)] on win32
>  ^
> SyntaxError: invalid syntax
> INFO 2012-08-10 05:41:32,017 dev_appserver.py:2952] "GET /favicon.ico
> HTTP/1.1" 500 -
>
>
> Can someone please help and let me know what I am doing wrong?
>
>
>
>
> --
> 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/-/yhL2eN_JBkIJ.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>


-- 



Google+ - http://joshuawoodward.com/+
Twitter - @howtohtml5 

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] HTML Frameset not working in GAE project?

2012-08-13 Thread Joshua Woodward
Can you share some code to help debug this?


On Mon, Aug 13, 2012 at 1:05 PM, Barry Hunter wrote:

> I'm curious how can GAE not support it?
>
> A Frameset is something rendered by the browser. So its upto the browser
> in use if the frameset is honoured.
>
> A webserver neither supports nor doesnt support. To the server, its just a
> block of text (which usually happens to be HTML). Its upto the browser to
> make sense of it.
>
>
>
> What exactly leads you to think its something on GAE that doesnt support a
> frameset. Need to do some more in-depth diagnostics.
>
>
>
> On Mon, Aug 13, 2012 at 6:11 AM, vikash chaurasia <
> vikash.chaura...@gmail.com> wrote:
>
>> Hi,
>>
>> We are using HTML frameset in our GAE project. When we are deploying it
>> on local GAE server, or on online GAE server, frameset doesn't work?
>>
>> Is it an issue with GAE server? Does GAE server support HTML
>> frameset/frames?
>>
>> Please reply.
>>
>> Thanks,
>> Vikash
>>
>> --
>> 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/-/2lUMprKqHCkJ.
>> To post to this group, send email to google-appengine@googlegroups.com.
>> To unsubscribe from this group, send email to
>> google-appengine+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>
>  --
> 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, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>



-- 



Google+ - http://joshuawoodward.com/+
Twitter - @howtohtml5 

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Adding a Sign Up feature

2012-08-13 Thread Joshua Woodward
I would assume you might be sending the incorrect Content-type header, but
without samples I can't be for sure.

On Mon, Aug 13, 2012 at 12:05 PM, mmertes wrote:

> I am trying to add a "Sign Up" now feature to our Coalition website,
> but everytime I post the "code" that is provided it just shows all the
> writing and not the actual gadget itself.  I have tried posting it
> directly to the page and adding a HTML, but no success.  Does anyone
> know what I am doing wrong or how to do this?
>
> Thanks,
>
> mmertes
>
> --
> 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, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>


-- 



Google+ - http://joshuawoodward.com/+
Twitter - @howtohtml5 

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Hosting static files on GAE and using own domain.

2012-08-15 Thread Joshua Woodward
There is no getting rid of the appspot domain. If you want your own domain
to point to your app engine project, you need to setup Google apps for that
domain.

And when you say for eclipse, you mean java right?

Joshua Woodward

http://joshuawoodward.com/ +
http://twitter.com/howtohtml5
On Aug 15, 2012 7:08 AM, "Omne"  wrote:

> Hi, I'm trying to host my website on GAE, it's just a few  HTML page and
> images. I downloaded the Eclipse and all its required plugins and GAE SDK,
> I think I were able to upload (deploy) a project successfully, now I can
> see an index page on myapp.appspot.com wiich says "Hello App Engine!".
>
> Now I have a few questions:
> Do you I have to do anything special for hosting static HTML pages?
> I read on the internet that with Python we should configure a file for
> static files, what about Eclipse?
> I'm going to remove all unwanted files from project folders and add my
> website files and folders to the project and then deploy it. is this what
> should do?
> If I want to point my own domain to my project, should I do it before
> uploading the project or after it? because I noticed GAE has its own domain
> (appspot.com) what if I don't want that my website be available at this
> address too?
>
> Thank you for your help.
>
> --
> 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/-/KnVU92RFIeAJ.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: Adding a Sign Up feature

2012-08-15 Thread Joshua Woodward
On Wed, Aug 15, 2012 at 7:03 AM, mmertes  wrote:

> I have no idea what the header would even be


Well that could be an issue ;)

Can you send some code?

-- 



Google+ - http://joshuawoodward.com/+
Twitter - @howtohtml5 

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Hosting static files on GAE and using own domain.

2012-08-15 Thread Joshua Woodward
there will always be* your-app-id*.appspot.com though

On Wed, Aug 15, 2012 at 12:45 PM, Jeff Schnitzer wrote:

> On Wed, Aug 15, 2012 at 8:46 AM, Joshua Woodward 
> wrote:
> > There is no getting rid of the appspot domain.
>
> One minor nit - this is not quite correct.
>
> If you set up a servlet filter, you can easily block or redirect all
> traffic to the appspot.com virtual host.  You don't need to serve
> traffic on *.appspot.com.
>
> Jeff
>
> --
> 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, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>


-- 



Google+ - http://joshuawoodward.com/+
Twitter - @howtohtml5 <http://twitter.com/howtohtml5>

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Hosting static files on GAE and using own domain.

2012-08-17 Thread Joshua Woodward
This book is very helpful
http://www.amazon.com/gp/product/059680069X/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=059680069X&linkCode=as2&tag=woodmedi-20

And you wouldn't really host static files using python per say, your static
files would be html, images, js, css types.
That book does a good job, and is the reason for some bad reviews, of
describing basic http, html, css stuff


On Fri, Aug 17, 2012 at 8:46 AM, Omne  wrote:

> @Joshua Woodward: Oh! I thought Eclipse is only Java, I just Google'd and
> learned I can do Python too.
> I think there are some tutorials on the internet about hosting an static
> website on GAE using Python. but which one is preferred and which one is
> easier?
> I also downloaded the Python plugin for Eclipse, but since I uploaded my
> empty app to GAE without Python can I still do it for a full website with
> pages and images?
> Could you please point me to a good tutorial about hosting a static
> website, I know there are many tutorials on the internet but I'm not sure
> which on is correct...
>



-- 



Google+ - http://joshuawoodward.com/+
Twitter - @howtohtml5 <http://twitter.com/howtohtml5>

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: Adding a Sign Up feature

2012-08-17 Thread Joshua Woodward
are using google sites, or google app engine? I'm confused.

On Fri, Aug 17, 2012 at 9:50 AM, mmertes  wrote:

> http://hosting.gmodules.com/</a>
> ig/gadgets/file/106256332773754589757/groups-subscribe-
> box.xml&amp;up_groupname=Worksite
> %20Committee&amp;synd=open&amp;w=330&amp;h=100&amp;title=Sign+up+for
> +NPA+Coalition+-+Worksite+Committee&amp;border=%23ff%7C3px%2C1px
> +solid+%2399&amp;output=js">
>
> Here is the "code" that shows up on my page when I try to copy it and
> paste it to my webpage the link is
> https://sites.google.com/site/polknpacoalition/committees/worksite
> to the webpage.
>
> I am trying to do the feature by Sergii Kauk called google groups
> subscribe box and I am just putting in my organization's name as NPA
> Coalition - Worksite Committee.
>
> Mel
>
>
> On Aug 15, 10:54 am, Joshua Woodward  wrote:
> > On Wed, Aug 15, 2012 at 7:03 AM, mmertes 
> wrote:
> > > I have no idea what the header would even be
> >
> > Well that could be an issue ;)
> >
> > Can you send some code?
> >
> > --
> >
> > Google+ -http://joshuawoodward.com/+
> > Twitter - @howtohtml5 <http://twitter.com/howtohtml5>
>
> --
> 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, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>


-- 



Google+ - http://joshuawoodward.com/+
Twitter - @howtohtml5 <http://twitter.com/howtohtml5>

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: Adding a Sign Up feature

2012-08-17 Thread Joshua Woodward
yeah, your in the wrong forum then ;)



On Fri, Aug 17, 2012 at 11:11 AM, mmertes wrote:

> Maybe this is my issue :)  I am trying to post a google gadget onto a
> google a website we created through site.google
>
> On Aug 17, 11:57 am, Joshua Woodward  wrote:
> > are using google sites, or google app engine? I'm confused.
> >
> >
> >
> >
> >
> > On Fri, Aug 17, 2012 at 9:50 AM, mmertes 
> wrote:
> > > http://hosting.gmodules.com/</a>
> > > ig/gadgets/file/106256332773754589757/groups-subscribe-
> > > box.xml&amp;up_groupname=Worksite
> > > %20Committee&amp;synd=open&amp;w=330&amp;h=100&amp;title=Sign+up+for
> > > +NPA+Coalition+-+Worksite+Committee&amp;border=%23ff%7C3px%2C1px
> > > +solid+%2399&amp;output=js">
> >
> > > Here is the "code" that shows up on my page when I try to copy it and
> > > paste it to my webpage the link is
> > >https://sites.google.com/site/polknpacoalition/committees/worksite
> > > to the webpage.
> >
> > > I am trying to do the feature by Sergii Kauk called google groups
> > > subscribe box and I am just putting in my organization's name as NPA
> > > Coalition - Worksite Committee.
> >
> > > Mel
> >
> > > On Aug 15, 10:54 am, Joshua Woodward  wrote:
> > > > On Wed, Aug 15, 2012 at 7:03 AM, mmertes  >
> > > wrote:
> > > > > I have no idea what the header would even be
> >
> > > > Well that could be an issue ;)
> >
> > > > Can you send some code?
> >
> > > > --
> >
> > > > Google+ -http://joshuawoodward.com/+
> > > > Twitter - @howtohtml5 <http://twitter.com/howtohtml5>
> >
> > > --
> > > 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, send email to
> > > google-appengine+unsubscr...@googlegroups.com.
> > > For more options, visit this group at
> > >http://groups.google.com/group/google-appengine?hl=en.
> >
> > --
> >
> > Google+ -http://joshuawoodward.com/+
> > Twitter - @howtohtml5 <http://twitter.com/howtohtml5>- Hide quoted text
> -
> >
> > - Show quoted text -
>
> --
> 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, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>


-- 



Google+ - http://joshuawoodward.com/+
Twitter - @howtohtml5 <http://twitter.com/howtohtml5>

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Google App engine read quota exceeded suddenly

2012-08-22 Thread Joshua Woodward
On Wed, Aug 22, 2012 at 10:14 AM, Rerngvit Yanggratoke
wrote:

> From what I understand, the memcache service is not reliable. In
> particular, it is not guaranteed that the data you store will be persistent
> forever.


What do you mean by "not reliable"?

I hope you mean the memcache service itself is reliable, however don't rely
on your data being available to you when you go back to fetch it.
I don't know of anything that stores permanently in memory, on any system.




> Your code have to handle that case. This is a typical usage of "cache"
> anyway. :)
>
> Regarding the limit, it is 1MB per entry as can be seen from here (
> http://stackoverflow.com/questions/5081502/memcache-1-mb-limit-in-google-app-engine
> ).
>
> On Wed, Aug 22, 2012 at 12:18 AM, Piyush Grover  > wrote:
>
>> I have a google app engine connected with an android app. People add and
>> read updates to it which gets stored in the app engine datastore. I am
>> using memcache in a proper way and on an average my last month read
>> operations were not more than 25%. One day within a span of 6 hours the
>> quota reached to 100% and when I looked at the statistics of data read, it
>> was almost the same as in previous days. When I looked at it, I found that
>> my memcache had nothing in it.
>> How the memcache suddenly lost its data?
>> Is there any limit on the memcache size?
>>
>> --
>> 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/-/Bzl2Qu4-Vr8J.
>> To post to this group, send email to google-appengine@googlegroups.com.
>> To unsubscribe from this group, send email to
>> google-appengine+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>>
>
>
> --
> Best Regards,
> Rerngvit Yanggratoke
>
> --
> 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, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>



-- 



Google+ - http://joshuawoodward.com/+
Twitter - @howtohtml5 

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Google+ events

2012-09-18 Thread Joshua Woodward
Idk

You might try asking Google+ discussion group or looking at the Google+
documentation.

Joshua Woodward

http://joshuawoodward.com/+
http://twitter.com/howtohtml5
On Sep 18, 2012 6:27 PM, "Mark Gibson" 
wrote:

>
> Hi all,
>
> Just wondering whether it is possible yet to integrate google+ events into
> an application built for the iPad or for any device for that matter?
>
> --
> 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/-/oKMtZ-qQCpwJ.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Where do I protest the new Google Groups?

2012-10-04 Thread Joshua Woodward
Maybe on the Google Groups forum, not here in App Engine forums

Joshua Woodward

http://joshuawoodward.com/+
http://twitter.com/howtohtml5
On Oct 4, 2012 7:37 AM, "pdknsk"  wrote:

> I wasn't bothered by the G+ inspired changes to most Google services,
> but Google Groups is different. The new Google Groups was clearly
> designed by someone who likes their XHR and CSS a bit too much. The
> old Groups is plain and fast and works very well. Why change it? I've
> repeatedly reverted to the old format, but Google will probably take
> this option away, like it did with Google Mail.
>
> --
> 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, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] appengine.google.com does not resolve and all appengine sites are returning a 502

2012-10-26 Thread Joshua Woodward
my appengine app works http://mathstreak.appspot.com/

On Fri, Oct 26, 2012 at 8:38 AM, Jared Hall  wrote:

> Anybody have any idea what's going on?
>
> --
> 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/-/nwO0KI1pYYYJ.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>



-- 



Google+ - http://joshuawoodward.com/+
Twitter - @howtohtml5 

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Appengine down...

2012-10-26 Thread Joshua Woodward
my app works, http://mathstreak.appspot.com/

and I can access the dashboard

here in California USA

On Fri, Oct 26, 2012 at 8:20 AM, Srinivasu Kota wrote:

> all our sites are down...including appengine dashboard and system status
> page is not accessible...
>
>
>  --
> 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/-/tc2wcKFMB8IJ.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>



-- 



Google+ - http://joshuawoodward.com/+
Twitter - @howtohtml5 

-- 
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, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.