Jakob

Results 10 comments of Jakob

> You can probably hack your way around it with something like I also just encountered this issue and tried out the hack, but it seems it doesn't actualy use...

Ah just saw the other issue, sorry for the noise. Feel free to ignore!

Thanks! Should we leave this open for now for documentation purposes? I couldn't find anything on this in the docs but maybe I'm just blind.

Can confirm, I’m also having the same issue. Is there any known workaround?

Yeah, for now I've basically been using this: ```julia function partition!(f, x) sort!(x; by=!f) findfirst(!f, x) end ``` I guess it would make sense to bikeshed the name with `Iterators.partition`...

Relatedly, I tried the following which also worked in principle but because `cards` is an Observable of a vector of cards it doesn't get rendered as individual DOM elements. I...

Hey Simon, thanks for the pointer - I tried wrapping the cards into a minimal DOM element as you suggested but apparently the `carousel` div expects the `carousel-cell` divs as...

That sounds sensible. Would you then chain a directory loader and a specific file loader? Or would you just pass the directory to a loading function which is then free...

I'll check again, maybe I got something mixed up. When and how to load and add packages felt a little bit confusing sometimes, if I remember correctly.

These look great, I think this can be closed now! 🎉 The only thing I was thinking is maybe you could add a link to one of the easier implementations...