jehturner

Results 48 comments of jehturner

Not forgetting [The Python Tutorial](https://docs.python.org/3/tutorial/), which I found useful back in the day.

If I have understood you both correctly, it's not that localhost was defined incorrectly on @KathleenLabrie's machine, it's that she had to add something like `hostname` (eg. "kathleen-laptop") to the...

I kept running into this error unpredictably at the `TEST` stage of `conda-build` on `osx-64`, in between other build problems, but seem to have found the answer, pending an upstream...

See a possible workaround in https://github.com/conda/conda/issues/11442#issuecomment-1416186371.

> I was able to fix it by forcing higher numpy version (>=1.17) in my `meta.yaml` file. boa actually highlighted the issue to me more clearly but after increasing numpy...

As a quick performance check, `timeit` shows that median filtering a 4176x512 pixel image 100 times takes ~12s on my 6-core workstation with both the old and new versions of...

Here's a version that reimplements the 5x5 median filter using an NxN median filter. From a quick check, it seems to be about 8% slower, presumably because the compiler can't...

This last update made similar changes to `clean_medmask` as for median filtering, so the edges aren't ignored there either. Since cleaning is part of the iterative process, this also slightly...

I have also run into this. It's the only thing that doesn't seem to work as well as the original lacos_spec (even after setting `sepmed=False` and `cleantype=medmask`). Since I have...

There is some evidence that the CR residuals I still see after changing `sepmed` & `cleantype` are due to differences between the background fitting I do before running astroscrappy and...