John "codefu" McDole

Results 148 comments of John "codefu" McDole

Downgrading to 5.2.0 worked for me when forwarding a Heltec Wireless Tacker v1.2 to WSL. ``` usbipd attach --wsl -i 303a:1001 ─╯ usbipd: info: Device with hardware-id '303a:1001' found at...

> If I remember correctly the original implementation combined the layers into a single image, which was a performance optimization. So, I assume this CL gets rid of that optimization?...

One thing I had to do was update `overlay/etc/cont-init.d/30-configure_udev.sh` to do a permissions check: ```bash if [[ -e /dev/uinput ]]; then permissions=$(stat -c "%a" /dev/uinput) if [[ "$permissions" != "666"...

Didn't we just update the mdns package? I'm not on 18 beta yet, but if we have repos I could look into it.

Do we ever set just one element of a uniform vector (e.g. `y`)? If I look at threejs as an example, I think you're always setting the entire vector (`shaderMaterial.uniforms.myColor.value.set(0.0,...

# Monorepo Migration Completed > **TL;DR: Please migrate your PR to flutter/flutter** The `flutter/engine` repository has been migrated to the `flutter/flutter` repository. This PR will no longer be landed here...

Previous code to download the hash is found in `update_dart_sdk.ps1`; but that code is called by `shared.bat` only if: ```BAT IF NOT EXIST "%engine_stamp%" GOTO do_sdk_update_and_snapshot SET /P dart_required_version=

This appears to work at first glance; but then it fails because it runs the download at each invocation. We could probably break out a new ps1 / sh file...

This is not that; its just higher in the stack (setup.bat vs update_dart_sdk.ps1)- We were originally going to delete the engine.version file completely and update the tool to use the...