Chris Basham

Results 11 issues of Chris Basham

When manually setting the `steps` query parameter: ``` http://gka.github.io/palettes/#colors=lightyellow,orange,deeppink,darkred|steps=11|bez=1|coL=1 ``` The `steps` query parameter automatically updates to `7`: ``` http://gka.github.io/palettes/#colors=lightyellow,orange,deeppink,darkred|steps=7|bez=1|coL=1 ``` The provided `step` query parameter should be retained and...

I'd like to attach some sort of markup that would inform the user when there are no results from the server (determined by an empty array server output). Currently, the...

I'm reviewing the [Accessible Dialog Tutorial](https://allyjs.io/tutorials/accessible-dialog.html), and I've started to explore the [associated JSBin](https://jsbin.com/qawasag/13/edit?html,css,js,output). Because tabbing works differently for radio groups, I wanted to see how robust Ally.js is. Expected...

# I am submitting a new Community Plugin ## Repo URL Link to my plugin: https://github.com/basham/obsidian-alias-from-heading ## Release Checklist - [x] I have tested the plugin on - [ ]...

Changes requested

Thanks for adding `hyper-sdk-bundle.js` to the repo, in v3.0.10. However, can you also add it to the npm package? It would make it much easier to import it to projects...

enhancement
help wanted
building

I have a script that imports documents into a replica (Earthstar v9.3.2), as a way to migrate data away from an old system. This is nearly 9,000 records (5.4 MB),...

I'm profiling my browser app with the latest Earthstar 9.3.2. I have over 8,000 docs in a replica, and I'm noticing lots of performance issues with [ReplicaDriverMemory.queryDocs()](https://github.com/earthstar-project/earthstar/blob/v9.3.2/src/replica/replica-driver-memory.ts#L153). On a single...

I'm profiling my browser app with the latest Earthstar 9.3.2. The replica's [`eraseExpiredDocs()` method is being called continuously](https://github.com/earthstar-project/earthstar/blob/v9.3.2/src/replica/replica.ts#L95). This happens because there's a `setInterval()` with no delay argument. This means...

The [`WebsocketPeerScenario`](https://github.com/earthstar-project/earthstar/blob/v8.2.4/src/test/peer-sync-scenarios/peer-sync-scenarios.ts#L109) includes a test that syncs two `TransportWebsocketServer` instances. Please also add a scenario in which a `TransportWebsocketClient` syncs with a `TransportWebsocketServer`. ## Background I'm trying to get a...

Earthstar suggests importing the browser bundle from a CDN. ```html import * as Earthstar from "https://cdn.earthstar-project.org/js/earthstar.bundle.v7.1.0.js"; ``` However, I would like to install the bundle locally, so my build environment...