Bryan Hilbert

Results 127 comments of Bryan Hilbert

I don't know if it is relevant or useful here or not, but here's an example of using the CRDS API: https://github.com/spacetelescope/mirage/blob/master/mirage/reference_files/crds_tools.py#L141

Notes from profiling the loading of the MIRI archive page using Chrome's developer tools. 1. There seems to be a long initial delay (~5 seconds) before the first paint where...

jquery and jwql.js are render blocking scripts. jquery takes half a second to download, during which time everything else is on hold. Chrome recommends adding the `async` or `defer` properties...

An idea for speeding up the archive page for a given instrument: What if we move most of the MAST querying and filename manipulations done in archived_proposals_ajax() within views.py into...

To fix this: - [x] Delete thumbnails for *original files (these are not used and make navigation within the directories more difficult - [x] Delete the bad program thumbnails (e.g....

This is over my head at the moment, but looks like it could be helpful? https://django-autocomplete-light.readthedocs.io/en/master/tutorial.html

Showing observation, visit, and exposure, you can still have redundant entires. Is there room to add visit group and activity number as well? Maybe as a combined entry if there...

[django-autocomplete-lite tutorial](https://django-autocomplete-light.readthedocs.io/en/master/tutorial.html) - note that at the very bottom there is some information on performing autocomplete on a list of strings, which is what I think we want to do....

This is now functional and appears to be working correctly. This PR also makes a small tweak to the sorting of thumbnails for an individual observation. The definition of the...