Jack Cushman
Jack Cushman
We have a number of malformatted cites following common patterns, such as: ``` 130 A.3d 1285-1293 (cite contains a page range) 1999-NMCA-049; 978 P.2d 334 (cite contains two cites) {¶...
Thanks to Anne Lucke at the Native American Rights Fund for input. Any errors in the following writeup are mine. :) So, each tribe has its own independent legal jurisdiction,...
Our Cloudflare cache key currently includes the Origin: header, which is sent by browsers with CORS and POST requests. This means that sites that use the api (like our search...
Ben reports that he had to hit refresh to see an update.
We should have an OAuth-type single signon server so 3rd party API apps can generate authenticated API requests on behalf of clients. Thoughts about exactly how to do this welcome....
Factoryboy documents the creation of circular dependencies [like this](https://factoryboy.readthedocs.io/en/latest/reference.html#circular-imports): ``` class UserFactory(factory.Factory): class Meta: model = User username = 'john' main_group = factory.SubFactory('users.factories.GroupFactory') class GroupFactory(factory.Factory): class Meta: model = Group...
Creating multiple bags in threads doesn't work: ``` import bagit from multiprocessing.pool import ThreadPool ThreadPool().map(bagit.make_bag, ('dirA', 'dirB')) ``` This fails with a `FileNotFoundError` because `make_bag` uses `os.chdir`, which is not...
Some captures from the first few months of Perma failed, and now just show a random javascript library instead of HTML. The actual HTML was never recorded. These should be...
Total perma links graph shows a drop right at the end: 
Apparently wget, which we used for early archives, didn't handle unicode URL rewriting. References to the unicode files in this gist should be rewritten in the associated index.html: https://gist.github.com/anonymous/a0b0b5516c3e357149a3 This...