Gregory Jefferis
Gregory Jefferis
Just a thought w.r.t. anatomical coordinate systems. It would be nice if we could tag data as belonging to a particular template (e.g. from nat.flybrains).
A few alternatives: - `lapply_progress` - `plapply` - `progressive_lapply` - `lapply_bar`
``` progress %% for (i in 1:10) { print(i) } progress %% lapply(1:10, print) ``` These look good to me. I haven't looked at the details at all, but would...
Can you make a unary operator `%progress%` or `%P%` ? ``` %progress% for (i in 1:10) { print(i) } ```
That sounds like a really interesting option. A couple of thoughts. 1. That key combination seems reasonable but it activates search back through previous commands in Rstudio on my system....
My `neuron` base class is simpler than `catmaidneuron`. I have previously regretted not having a vertex3d type class representing anything that has 3D points.
https://martinfowler.com/bliki/TwoHardThings.html But more positively, my own use case for a cache was very specific - to act as a snapshot of catmaid state at a given time associated with a...
So I'm not quite sure yet, but I think it was one of two things – cacheing the login object or annotation requests where somehow different POST requested were being...