Dan Bonachea
Dan Bonachea
I want to apply tab renames to Google Docs matching a certain document title regex. All URLs in Google docs look like: `https://docs.google.com/document/d/` I write a rule for `URL fragment...
_In case of bug report, please fill this template and remove italic lines_ _Otherwise, clear all and type :)_ ### Tab Modifier version **Browser:** `Chrome` **Extension version:** `0.22.0` _Can be...
./install.sh currently defaults to installing software as follows: Build/install dependencies (those needed only to build/install Caffeine): * GCC, Make, fpm, pkg-config, realpath * installed using HomeBrew to the default system...
The install.sh script currently defaults to requiring interactive input to install dependencies, which is unfriendly in automated/scripted contexts. The `--help` output advises: ``` For a non-interactive build with the 'yes'...
Currently install.sh configures GASNet-EX with only three hard-coded "customization points": 1. C Compiler 2. C++ compiler 3. Install prefix ie: ``` FC="$FC" CC="$CC" CXX="$CXX" ./configure --prefix "$PREFIX" ``` I'd consider...
In the near term, Caffeine will likely treat _most_ errors as immediately fatal (ideally with a high-quality message as part of the error crash). However one particularly important error that...
Most of the PRIF calls accept an optional `stat` argument, and many/most are currently completely ignoring it which is non-compliant. We should audit all PRIF entry points to ensure they...
flang currently lacks support for assumed-rank dummy arguments like `array(..)`. These are currently required by the following PRIF procedures, and their corresponding Caffeine implementation: 1. `prif_put` (non-`_raw` version only) 2....
Currently PRs only test CI against gfortran-13/gcc-13. This runs the significant risk that gfortran-13 might silently accept non-compliant Fortran code that would be rejected by other, less-permissive compilers. The same...
Many PRIF interfaces mimic language intrinsic functions that IIUC are specified by 16.1 as `simple`. We should discuss the pros and cons of adding `simple`/`pure` decorations to the PRIF interface