Sean Linsley

Results 75 comments of Sean Linsley

Indeed I was missing a `recovery.conf` file. This is what I tried using: ``` sh restore_command = 'pyenv init -; envdir ~/.env wal-e wal-fetch "%f" "%p"' recovery_target_time = '2016-07-01 3:30'...

By manually specifying the path to `envdir` it seems to work: ``` sh restore_command = '/usr/local/bin/envdir /Users/username/.env wal-e wal-fetch "%f" "%p"' recovery_target_time = '2016-06-30 10:30' ``` But then I get...

This is especially needed now that it's no longer possible to install an extension sourced from a local path (it has to be bundled into an XPI first). That means...

@dyeray thanks for that link. Coming here from https://stackoverflow.com/questions/46338823, I couldn't figure out why I was only getting the first chunk of data, and if I removed the `disconnect()`, the...

:heavy_check_mark: added a note to StackOverflow and the [top-level MDN docs](https://wiki.developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/webRequest/filterResponseData)

``` session # must respond to store and []= Rails.root: /Users/seanlinsley/codez/_/gems/arbre/spec/rails/stub_app rack (1.5.2) lib/rack/lint.rb:20:in `assert' rack (1.5.2) lib/rack/lint.rb:141:in `check_env' rack (1.5.2) lib/rack/lint.rb:43:in `_call' rack (1.5.2) lib/rack/lint.rb:37:in `call' rack (1.5.2) lib/rack/etag.rb:23:in...

This works for me: ``` ruby include ActionView::Helpers::UrlHelper Arbre::Context.new{ h3 link_to('foo', 'bar') + ', something, else' } => foo, something, else ```

That's a good idea > On Dec 28, 2014, at 12:37, Timo Schilling [email protected] wrote: > > To prevent spam on the demo side, we could use Github OAuth as...

Constantly limiting the frame rate like @tqwewe suggested was causing animations to be choppy. I worked around that by adding this code to my render function: ```rs use std::sync::atomic::{AtomicU64, Ordering};...

@krainboltgreene (hi!) what timeout would you expect to be applied to code executed outside of the `with_timeout` block? I guess it'd all be in the same transaction & would run...