Ed Summers
Ed Summers
I don't know if something has changed in the last couple of years but it looks like on Colab you just need to perform an extra step to display the...
When I look at this the title is pushed to the left and the prev/next links are unstyled. Is it possible you forgot to commit changes to `pywb/static/default_banner.css`?
I'm working on a small change to see if I can fix it, and also move CSS out of `default_banner.js` and into `default_banner.css`. I also am trying to address timing...
In looking closer at this change and how the banner works, my personal opinion is that the banner itself needs a refactor to use Vue which is introduced in the...
Feedback on this PR would be appreciated, even if the answer is to close it because sharing profiles is not something that is desirable.
Thanks for reporting this. I've noticed that the 401 gets returned if the query is anything but a simple word. For example changing query to `obama biden` causes it too.
I've also noticed that it will work if you don't configure your client with `access_token_key` and `access_token_secret`? This is what the twitter-v2 unit test [is doing](https://github.com/HunterLarco/twitter-v2/blob/master/test/e2e/search.js#L40-L43) which passes with the...
[Testing the equivalent query](https://gist.github.com/edsu/97712b965b3c1e1a8413bd83922b4ac4) in Python leads me to the conclusion that the problem resides here in twitter-v2 and not on the Twitter side. This is good news because that...
I've added a unit test that demonstrates the problem, which is currently failing: https://github.com/edsu/twitter-v2/blob/master/test/e2e/search.js#L72-L105
I might be wrong, but it appears that the space in the `query` parameter gets converted to a `+` when calling `URL.toString()` which is correct. But somewhere in the underlying...