alan blount

Results 54 comments of alan blount

I have created an [issue on simple rest](https://github.com/stubailo/meteor-rest/issues/119) and a [test repo](https://github.com/zeroasterisk/meteor-rest-and-collection-hooks) demonstrating this problem, I too am having. The issue is the simple-rest faking the invocation context, find for...

@kjrocker do you have a sample project which can replicate this for me? Basic connection info: https://cloud.google.com/sql/docs/postgres/external-connection-methods And specific to Google App Engine: https://cloud.google.com/sql/docs/postgres/connect-app-engine That page has a callout which...

Yes - you should do this in your `Dockerfile` and build up a custom image. You can do that for GAE by setting up your own build: http://go/gh/GoogleCloudPlatform/elixir-runtime/blob/master/runtime-build.sh Or you...

Yes - I was just about to dust off my favorite `react-cdk`, for a new component... but without storybook3 it makes me wonder if I should... It is supposed to...

see pull request: https://github.com/danlec/Trello-Bookmarklet/pull/8

My problem here was that the jsx was parsed as `xmlTagN` I hacked that into the colorscheme, but I didn't like the solution... So i sent hunting for other plugins...

``` js // If we are using the API we may have created several resume login tokens // This is a house-cleaning tool for removing all "other" ones // (which...

workaround, just specify the handler for specific path prefixes: ``` js JsonRoutes.ErrorMiddleware.use('/methods/', RestMiddleware.handleErrorAsJson); JsonRoutes.ErrorMiddleware.use('/users/', RestMiddleware.handleErrorAsJson); ```

Here's a fully demonstrating test repo: https://github.com/zeroasterisk/meteor-rest-and-collection-hooks Just clone and start meteor, it creates a user, a doc, and uses HTTP to login, and then attempt the method... It shows...