Joey Aghion

Results 29 comments of Joey Aghion

Sounds like: https://github.com/artsy/force/issues/1351 https://github.com/artsy/force/issues/1923 I don't know if this particular case is caused by auction count-downs or some other use of `setTimeout` with a too-large value.

Note that this is true on mobile, but not desktop. The initial state of the results don't match the selected (default) sort.

Maybe because it's cached? You can see what I'm talking about in the final search here: ![2017-05-01_fast_artsy_search2](https://cloud.githubusercontent.com/assets/28120/25583210/d2533dae-2e5e-11e7-9405-f403f435b1c5.gif)

Yes, the email body can include something like ``. The `images` field might then look like: ``` {"foobar"=> {"name"=>"foobar", "type"=>"image/jpeg", "content"=> "/9j/4AAQSkZJRgA...eiojyQf/9k="}} ``` Because the content-ID also appears as the...

Hey @wingrunr21 I was but am still experimenting. It turned out that this wasn't _quite_ enough to support our use case. All the data would be available in the revised...

This bit us suddenly, and very strangely. We also were mistakenly calling `present nil, ...` in one endpoint. A later request to the same process would fail with surprising errors....

Out of curiosity, why do you want to combine the built-in environment support with this cookbook? If the built-in support works for your needs, maybe you don't need this? I...

Hi @swrobel. Yes--the `write_config` recipe is unfortunately pretty coupled to the rails-app layer. Note [the comment](https://github.com/joeyAghion/opsworks_custom_env/blob/master/definitions/custom_env_template.rb#L6) mentioning the dependency. That said, I achieve this for our worker layer by instead...

The `notifies` ensures the app gets restarted if there are changes in the template's output, but doesn't if there are none. I think I have an idea about how to...