Robert Sinclair

Results 99 issues of Robert Sinclair

In a browser: ``` peerConnection.onicecandidate = (event) => { if (event.candidate) { // nothing.. just testing } else { appendMessage('ICE gathering complete'); console.log(peerConnection.localDescription.sdp) } }; ``` The above code, works...

``` pc1.addEventListener('iceGatheringStateChange', () => { if (pc1.iceGatheringState === 'complete') { console.log('ICE gathering complete for pc1'); console.log('SDP:', pc1.localDescription.sdp); } }); pc1.onicegatheringstatechange = () => { console.log('changed',pc1.localDescription.sdp); if (pc1.iceGatheringState === 'complete') {...

``` $ node Welcome to Node.js v22.7.0. Type ".help" for more information. > wrtc=require('wrtc') Uncaught Error: A dynamic link library (DLL) initialization routine failed. \\?\C:\msys64\home\User\node_modules\wrtc\build\Release\wrtc.node at Module._extensions..node (node:internal/modules/cjs/loader:1717:18) at Module.load...

``` go install github.com/shurcooL/goexec@latest go: downloading github.com/shurcooL/goexec v0.0.0-20230709021537-96bada04ea2b go: finding module for package golang.org/x/tools/imports go: finding module for package github.com/shurcooL/go-goon go: downloading golang.org/x/tools v0.26.0 go: downloading github.com/shurcooL/go-goon v1.0.0 go: found...

It would be great to have a simple example on how to load and apply a SLANG shader (for example a CRT emulation) to a DIV/CANVAS in HTML5.

I tried both from windows and linux and I get nothing. The port opens and I read `Telnet connection from: ('192.168.1.100', 5975)` in the console But no data comes in...

to reproduce: ``` latest=`curl -qsI "https://github.com/ggml-org/llama.cpp/releases/latest"|grep location|cut -d " " -f 2` latest=`basename $latest|tr -d "\r"` #latest='b4000' # /dev/null "https://github.com/ggml-org/llama.cpp/releases/download/$latest/llama-$latest-bin-ubuntu-x64.zip" -O llama.zip echo Unzipping llama.cpp binaries unzip &>/dev/null llama.zip ```...

This one looks promising.. https://huggingface.co/omkarthawakar/LlamaV-o1

stale

I have a colab notebook here to quantize and the test models: https://colab.research.google.com/drive/1TcyGL60GQzsxEHu-Xlos5u8bb_6SxMa3 The simple test has always been this line: ``` prompt=""" Tell me the difference between thinking in...

Whatever I set in "FRAME SIZE", both the web streaming (fast) and RTSP stream seems not to be affected and just output 640x480. Also, why the web streaming (jpg) is...