eric1234
eric1234
This pull request appends my previous pull request with the new :layout option. Same as before I just put the documentation on a separate pull request so you can pick...
The yielding was not completely obvious to me until I looked at the test since I was used to the way Rails did it (it just magically used the layout)....
Useful if we are embedding Brochure in another application has has it's own idea of directory structure. For example in a Rails application the following: ``` mount Brochure.app(Rails.root, :templates_root =>...
The HTML in my app is the same regardless of window since I am using React components. To avoid a lot of dummy HTML files that are pretty much the...
It appears that readAsBinaryString is no longer supported by the HTML5 spec. Although implemented in some browsers (Chrome, Firefox) it will [likely be removed](http://lists.w3.org/Archives/Public/public-webapps/2011OctDec/1543.html) in future releases. In addition IE10...
If a file requires pre-processing (example CoffeeScript) I can't put processing directives in the file. This occurs because the file is first run through the filters, then checks for processing...
When generating the `id` for the encrypted record it looks like you are hashing all the data in the record: https://github.com/garbados/comdb/blob/master/index.js#L101-L103 I understand the reason for needing the ID to...
I am working on an application where a dependency is explicitly using [the `inherits` polyfill](https://www.npmjs.com/package/inherits). The specific code is [this file](https://github.com/Level/deferred-leveldown/blob/master/deferred-iterator.js) which is in CJS format. But even though that...
Fossil uses the file `_FOSSIL_` on Windows but on all other operating systems it prefers `.fslckout` (either will work but those are the names used by the software when you...
I'm testing out deploying and running an app on an ipv6 only server with that deployment happening via Kamal. I see on https://github.com/basecamp/kamal/issues/87 that ipv6 should work but I've encountered...