Danny Byus

Results 14 comments of Danny Byus

Maybe include a way to dynamically update the pixel to meter ratio for screen resizes, like mobile devices.

We should have a note encouraging to check Rapiers common mistakes article, or a friendlier way to hint to what's wrong. [this](https://rapier.rs/docs/user_guides/rust/common_mistakes/#the-simulation-panics) had the answer to start with. A 3d...

This can be done with a tmux config. ``` bind V run-shell "termux-clipboard-get >~/.tmux-buffer-tmp" \; load-buffer -b tmp-copy-buffer ~/.tmux-buffer-tmp \; paste-buffer -b tmp-copy-buffer -d \; run-shell -b "rm ~/.tmux-buffer-tmp" bind...

Try deleting all of that type from the hive, then when there's none left of it, you can use the id for something else. Or read from one hive box...

With sc, db, and ns in the json object ``` curl --request POST --header "Content-Type: application/json" --data "{'SC':'account', 'DB':'test', 'NS':'test', 'email': 'test', 'pass': 'apple'}" http://10.0.0.24:8000/signup ``` ``` {"code":403,"details":"Authentication failed","description":"Your authentication...

> This works for me > > ``` > curl http://localhost:8000/signup -H 'content-type: application/json' -d '{"NS":"test","DB":"test","SC":"account","email":"ed","pass":"pass"}' > ``` Minus doing localhost to the ip address, I still get 403. ```...

> Only thing I can think of is namespace and database don't match up, what's the result if you run the following? > > ``` > curl http://10.0.0.24:8000/sql -H 'content-type:...

Well almost. I get 403 when trying to sign in. ``` curl http://10.0.0.24:8000/signin -H 'content-type: application/json' -d '{"NS":"test","DB":"test","SC":"account", "email":"ed","pass":"pass"}' ```

Looks like following the setup listed in https://gist.github.com/koakh/fbbc37cde630bedcf57acfd4d6a6956b works. Something may be up with the examples on the site...

If I'm manually compiling, how could I specify the gles version? I'm hitting this issue on Nexus 6, Android 7.1 with py3 with Crystax NDK.