Brandon Ros

Results 284 comments of Brandon Ros

What’s your opinion on if this use case is worthwhile: Flysky FS-i6X 6-10(Default 6)CH 2.4GHz AFHDS RC Transmitter w/ FS-iA6B Receiver https://a.co/d/5bsRb5J I think I was just reading the joystick...

Check out https://github.com/alvr/alpine-android which has Android 31, 32, 33 if needed

On Mac, I accidentally was overriding `clang` from my `.bash_profile` with Android development related things: ```shell #export ANDROID_HOME="/Users/brandon/Library/Android/sdk" #export PATH="/Users/brandon/Library/Android/sdk/emulator:$PATH" #export PATH="/Users/brandon/Library/Android/sdk/platform-tools:$PATH" #export PATH="/Users/brandon/Library/Android/sdk/cmdline-tools/latest/bin:$PATH" #export PATH="/Users/brandon/Library/Android/sdk/build-tools/34.0.0:$PATH" #export PATH="/Users/brandon/Library/Android/sdk/ndk/25.2.9519653:$PATH" #export PATH="/Users/brandon/Library/Android/sdk/cmake/3.22.1/bin:$PATH"...

Any way to support this in the 'self-hostable but not Docker' setup?

What would it take to add cross-compilation support to this as per https://nix.dev/tutorials/cross-compilation?

maybe we can combine and write Bazel for it? i agree though, i thought bundling cmakelist was pretty standard for most c/c++ projects

``` https://query1.finance.yahoo.com/v8/finance/chart/SPY?symbol=SPY&period1=1673409759&period2=1673582559&useYfid=true&interval=1m&includePrePost=true&events=div%7Csplit%7Cearn&lang=en-US&region=US&crumb=dOh3M4TA.5w&corsDomain=finance.yahoo.com ``` If you change `period1` from `1673409759` (Tuesday, January 10, 2023 11:02:39 PM GMT-05:00) to `1673533800` (Thursday, January 12, 2023 9:30:00 AM GMT-05:00), the API doesn't properly return...

To clarify, you can't "disable" the cuda feature and enable the opencl feature and expect it to build, right? ``` Brandons-MacBook-Air:juice-examples brandonros 2023-02-06 15:07:59 $ cargo build --release --features opencl...

In case anybody wants a full snippet: ``` (async function() { var pool = new pg.Pool({ user: 'brandon', host: '192.168.0.2', database: 'db', password: '', port: 5432, }); var client =...