Demitri Muna
Demitri Muna
I tried to make a table to go through the possible paths, but quickly realized I needed a flowchart: [macOS file access.pdf](https://github.com/leighmcculloch/AppSandboxFileAccess/files/4673010/macOS.file.access.pdf) I agree with the goal of the library;...
@leighmcculloch Would you be interested in creating a new branch to test some of these directions, e.g. at the very least attempt to see if a file is in a...
I'm trying to find the exact case where I encountered this (it was two months ago). I don't think the bucket name contained a space; I believe it was the...
I completely agree; the whole thing is hacky. While the column is declared as a 64-bit long signed integer (TFORM "K"), the FITS spec says that IF the declared type...
Another quick note - while cfitsio does allow you to specify the data type to read a column into, it will crash with a numeric overflow error reading such a...
For anyone else stumbling across this and using Anaconda, this works: ``` conda install -c conda-forge fitsio ``` Ref:
I haven't looked at the internals lately, but I think the Astropy implementation of the FITS header object is a subclass of `dict` (or similar), which is incorrect. It's perfectly...
Just wanted to add a "+1" to this. My blueprint contains very long JSON Schema that describe my responses. In one instance it's a single object, in another it's an...
Posting my slightly different version of @zacharypodbela’s solution. I installed the Apple Silicon [miniconda3](https://github.com/conda-forge/miniforge/releases/) with a prefix of `/usr/local/anaconda`. Trying to install with: ``` sudo /usr/local/anaconda/bin/pip install uwsgi ``` gave...
I've been curious about this as well. A quick Google search turned this up: In the file `DTRunManager.m` is this method: ```objc + (NSArray*)argumentsToRunCommand:(NSString*)command { NSString* shell = [[DTRunManager shellPath]...