George Lesica
George Lesica
See https://mermaid-js.github.io/mermaid/#/./classDiagram There are still some issues: 1. There is no name spacing, which doesn't seem to be supported by Mermaid 2. Only limited testing so far (just using DCDG...
It would be cool to be able to output diagrams to Mermaid format since that tool is quite popular / useful. See:
It would be nice to be able to optionally include `dart:core` for both has-a and is-a relationships. Right now it is excluded for has-a but included for is-a. We should...
Apparently (thanks @greglittlefield-wf) we can build a snapshot like this: ``` dart --snapshot=dcdg.snapshot bin/dcdg.dart ``` Then we can run the snapshot with the `dart` executable: `dart dcdg.snapshot`. This avoids recompilation...
DOT output is missing the separator between the Dart file name and the class name. This may have been a regression when Mermaid support was added. See #59 for an...
Looking at https://github.com/glesica/Neo4j.jl/issues/16 it looks like mapping over sets no longer works in the latest versions of Julia. We can switch to using generators and make the code just a...
A user has observed the following: ```julia tx = Neo4j.transaction(con); for (counter, row) in zip(1:nrow(dataframe), eachrow(dataframe)) tx("MERGE (g:Type1 {name: '$(row[:text1])'}) MERGE (s:Type2 {name: '$(row[:text2])'}) ON CREATE SET s :MyLabel MERGE...
Right now the unit tests require a running server. Worse, they mutate the server, meaning we could accidentally screw with someone's local DB (which shouldn't matter, but might). We should...
Originally, we didn't parallelize stage 4 because it runs very, very quickly, so it seemed likely that the parallel overhead would actually dominate the run time. This is still true....
The newest version of fpadmet doesn't require that input files end in .smi so we can go back to using the original file extension in the Nextflow workflow (.admet). Basically,...