Reuben Cummings

Results 172 comments of Reuben Cummings

```python ... model_route = '{0}api0.{0}api'.format(manager.collection_name(model)) ... ```

The issue is with Flask, see my [SO answer](https://stackoverflow.com/a/16368401/408556).

+1 for HATEOAS support. Here's some more info on it from the [Eve package](http://python-eve.org/features.html#hateoas) HATEOAS Hypermedia as the Engine of Application State (HATEOAS) is enabled by default. Each GET response...

Another example `https://someapi.com/people/50acfba938345b0978fccad7` ``` json { "firstname": "John", "lastname": "Doe", "born": "Thu, 27 Aug 1970 14:37:13 GMT", "role": ["author"], "location": {"city": "Auburn", "address": "422 South Gay Street"}, "_id": "50acfba938345b0978fccad7" "_updated":...

Cool, thanks! I don't have any go experience (aside from `go install`) so I'm unlikely to work on this either.

It appears the default behavior is to change the `CLIENTUID` for each invocation of the username/password prompt, even within the same ofxclient session. The solution is to set the `CLIENTUID`...

@paulmedynski I think you miss-understood what @paulmillr is saying. Anyone can create a [pull request](https://help.github.com/articles/about-pull-requests/) (PR), you don't have to be a maintainer. Once you successful create a PR, he...

Here's how I handled it for [`@observablehq/plot`](https://github.com/observablehq/plot). Ugly, but works... `package.json` ```json { ... "dependencies": { "@babel/runtime": "^7.7.4", "@observablehq/plot": "^0.4.2", "@popperjs/core": "^2.10.1", "bootstrap": "^5.1.0", "brunch": "^4.0.0", "coffeescript": "^2.5.1", "lodash": "^4.17.21",...

BTW @paulmillr, really hope you get more time for brunch. Don't know what I'd do if I was forced to go back to rollup or Webpack.

Cool! I'm sure they'd appreciate a PR over here too.