Anders Rune Jensen

Results 20 issues of Anders Rune Jensen

Doing uri.withinString(msg.value.content.text, (link) => { gives me: ` dat://blog.tableflip.io/](dat://blog.tableflip.io/ ` for ` [dat://blog.tableflip.io/](dat://blog.tableflip.io/) is a thing ` But ] should not be a valid character in a URL according to...

Bug

Trying to add this as a module to ssb-browser I see that a lot of stuff is pulled in (like ssb-master). I was wondering if it would make sense to...

See [this](https://github.com/ssbc/epidemic-broadcast-trees/blob/master/events.js#L317)

Hi Not sure if this belongs in here or in patchbay, so feel free to direct me elsewhere. Love this little feature in patchbay, but the ordering seems to be...

Easy way to test: let s = Set() s.add(JSON.parse(JSON.stringify({a:1, b:2}))) s.add(JSON.parse(JSON.stringify({a:1, b:2}))) Set now contains two of the same :boom:

It seems that let a = Array() console.log(a.length) = 1, but: let a2 = [] console.log(a2.length) = 0 This is a bit of a gotcha :)

I was looking at some numbers today and noticed that there was a significant overhead of using toPullStream in some cases. The following query takes 2.4 seconds: ``` pull( ssb.db.query(...

``` const multicb = require('multicb') const done = multicb({ pluck: 1 }) function callAsync(cb) { setTimeout(() => { console.log("inside async") cb() }, 100) } callAsync(done()) done((err, res) => { console.log('yo')...

# Background @mixmix was working on adding [an option](https://gitlab.com/ahau/lib/ssb-crut/-/merge_requests/28) to crut list where you would get results ordered by updateTime. We would like to avoid running through all the results...

Would be really useful in crut for getting the latest X of something sorted by update time.