Blake Gentry

Results 189 comments of Blake Gentry

We'd love to see this! At the moment, our logs get a `hostname` of a random uuid. Not certain if this is the dyno's UUID or not. But what we'd...

If I manually specify all 31 icons I'm using, then my `vendor.js` bundle shrinks down to 562 KB, which makes this upgrade smaller overall.

@mlwilkerson ok, got it, so this issue is really more like: "addon bundles all icons unless an exact subset is specified" Feel free to repurpose/rename this issue if you'd like...

I guess I misunderstood the readme earlier. It probably does make sense as you've written it. > So, specifying the 31 icons in ember-cli-build.js brought your vendor.js down to about...

That sounds great! One concern that came to mind was helping devs make sure they haven’t forgotten dynamic icons in their build config. If a user tries to invoke a...

I think it's reasonable to expect folks to whitelist the dynamic icons they want to include. The "all" option makes it easy for people who really don't care about payload...

@tarcieri so if I make a PR, should it target a non-`master` branch, or would you want to pull that in manually?

That was my first thought as well. There are some really ugly ways that Windows devs accomplish this: http://www.catch22.net/tuts/self-deleting-executables One other possibility might be to move the old executable to...

Still works great @nirev, thank you! :tada: The main caveat is that it has to be placed towards the end of the middleware list, or else some expected `pipeline.assigns` are...

I also expanded on the Exq middleware by @nirev to add more detailed job metadata: ```elixir def before_work(pipeline) do # Start an AppSignal transaction transaction = Appsignal.Transaction.start( Appsignal.Transaction.generate_id(), :background_job )...