Ronnie Smith

Results 20 comments of Ronnie Smith

Keep the css as is but use this js instead and the material-icons will render properly. /* Leaflet.AwesomeMarkers, a plugin that adds colorful iconic markers for Leaflet, based on the...

> [Google Cloud Datastore](https://cloud.google.com/datastore/pricing) offers free quota that allows you to get started at no cost. The resources and free quota amounts are listed below. If you need more quota,...

There is value in validating that the `sub` is configured as a server admin. The particular server admin password can exist even if not used/read for JWT authentication. As an...

Server admin usernames are only available to server admins. Upon HTTP request, 1. read/validate JWT 2. if `sub` `role` exists, splice/remove `_admin` from roles 3. for each configured server admin...

The JWT signature acts as the password. Couch verifying that the `sub` is configured as an `_admin` does not make a username a secret or a password but adds additional...

The client sending the request knows the length of each file, so you will have that info. ...That's not to say you're going to get `multipart/related` to work, but you...

In what case / scenario are file sizes not known by the source/client machine? Do you have this working in JavaScript? If so, any chance you could share your code...

If you're reading an HTTP POST/PUT you're acting as a proxy in front of CouchDB. The machine that sent that HTTP request knows the file length / type and that's...

Multipart transfer (like `multipart/related`) lets you upload metadata and data in the same request and is used when the total payload is small enough to upload again, in its entirety,...

I'm building out a Node.js proxy for CouchDB to add Authentication, Authorization, and Accounting (AAA) / role-based controls for browser-based applications (via JWTs). It's basically done but I got to...