Nico Rikken
Nico Rikken
I'm also looking into automating the updates to this configmap from cloudformation. Doing so via lambda seems doable. My main concern with automation are race-conditions on the contents of the...
I found quite a simple workaround: simply creating the database directory: ``` mkdir -p /data/databases/graph.db ``` So perhaps Neo4j should just create this directory, if this is all it takes.
[Woke](https://github.com/get-woke/woke) is a tool that already exists to help with checking inclusive language. Also relevant the [Inclusive Naming Initiative](https://inclusivenaming.org/) that facilitates discussion on inclusive language to hopefully come to a...
At least it is possible via `git bisect`, which is a use-case that is discussed here: https://github.com/get-woke/woke/issues/85#issuecomment-864507254
When it comes to generating an SBOM we could also use Tern https://github.com/tern-tools/tern Recent versions should be able to also detect licenses of typical distribution packages. The SBOM could be...
Generating an SBOM using Tern for the current ORT container takes about 35 minutes on GitHub Actions. In the meantime I also found [Syft](https://github.com/anchore/syft) which is another tool for creating...
Containers are now available at https://github.com/orgs/alliander-opensource/packages?repo_name=ort-container including a dedicated build for the PR #4746
Discussed at community at 25th of August:: License compliance as requirements including providing source code. From there we can improve it, like the desire to scan ORT with ORT, for...
**Some work on getting sources:** Android copyright information is present in the following files in the resulting container: ``` /opt/android-sdk/cmdline-tools/NOTICE.txt /opt/android-sdk/platform-tools/NOTICE.txt ``` The related sources are probably available on https://android.googlesource.com/...
I ran into this issue with the analyzer which was running python 3.6, but the project was developed for a newer python version. It had requirements like `numpy~=1.20.3` which at...