Wolf Vollprecht

Results 506 comments of Wolf Vollprecht

You might have to reorder your `-l` linker flags?

the symbols that are undefined are part of BLAS. So if you link to a correct blas implementation, these symbols should be defined. Maybe change the order of lapack and...

Hi @potpath indeed. We currently don't have support for dynamic layout in xtensor-blas. Also, it would be quite hard (potentially)... We could check if the dynamic layout is in fact...

Here is the dirty example that I used. Works in the classic notebook (not jlab, because of the javascript magic): ``` %%javascript require.undef('latlon_widget'); define('latlon_widget', ["@jupyter-widgets/base"], function(widgets) { var LatLonView =...

we're working on this kind of functionality in mamba. We currently have a repoquery feature that allows to query for forward and reverse dependencies and displays them in a tree...

@jezdez yes, this is still an issue, I just checked. Also, there is another issue I've been hitting before in micromamba. When requesting a spec from the command line like...

I think the PeerConnection might be more directly relevant: https://webrtc.github.io/samples/src/content/peerconnection/audio/

I am no expert but it seems like Google provides a native (C++) protocol implementation with examples on the WebRTC website: https://webrtc.org/native-code/native-apis/ Could be interesting to test that out.

To be honest I don't know how the internals of xeus/xeus-cling work but if you can get the contents of the cell somewhere, and put them through `clang-format` and then...

I can confirm that a `static_cast` works. I guess we loose the type check.