Brian E. Granger
Brian E. Granger
+1 I love how VSCode has done that On Wed, Aug 16, 2017 at 8:41 PM, Dave Hirschfeld wrote: > If the icons are too small to show the git...
Hi Mehmet, I will work on this - what email should I use in communicating privately with you? On Wed, Sep 15, 2021 at 1:47 PM Mehmet Bektas ***@***.***> wrote:...
I have spent some time studying how we are generating these ids. I have been generating ids using some simple code in python follow our algo along the lines of:...
I have been picking through the details of how we can improve the triplex id generation. There are two main ideas I have been exploring: 1. Replace the `randomPath(lp, hp)`...
Here is a draft version of idea (2) above: ```typescript export function createTriplexIds(n: number, version: number, store: number, lower: string, upper: string): string[] { let ids: string[] = []; whileIds:...
Here is the `generatePaths` function: ```typescript namespace Private { export function generatePaths(n: number, min: number, max: number): number[] { let m = max - min; let delta = m/(n+1); console.log(m,n+1,m/(n+1),delta);...
Also: one thing this work is pointed to is that we likely need a benchmark suite to test the performance different algorithms under different conditions.
I have a version working now with a benchmark notebook that does `N` inserts at random positions in an initially empty text, using a Poisson distribution to model the number...
Here is a rough sketch: * We need a REST API end point to hit that 1) starts the binder, and 2) returns the URL of the running instance with...
Ready to go! https://github.com/jupyterhub/binderhub/blob/master/examples/binder-api.py