krackers

Results 88 comments of krackers

If it's not currently mounted, you need to mount it yourself. You can use `mount -t hfs` for hfs specific (probably `/dev/dk2`). See https://github.com/ipatch/theairportwiki/wiki/build-a-cross-compile-NetBSD-toolchain-armv6-Notes for general info. You can try...

There's one more, `GfxMode`, see https://github.com/0xbb/gpu-switch/issues/40#issuecomment-1350571188

You probably may also need to move things from `/Library/Fonts Disabled` (`~/Library/Fonts Disabled`) back to `/Libary/Fonts`. For some reason office 2011 removes arial, verdana, and a few other fonts and...

@EverlastEngineering Yup I'm seeing the same thing on a macbook pro. I guess one option is to just make a script that toggles between manual control and auto after a...

Ok it seems that the only reason 1.9 seemed to get further was because it was checking the return code from `lwp_create` incorrectly. It returns EINVAL there as well, but...

The address alignment is actually even more specific. Bits 6 and 7 (zero-indexed) also seem to need to be 0, and bit 5 seems to need to be 1. So...

Fwiw I was getting the same error for the final MoltenVK framework build step (`libMoltenVK`). The suggestion of patching `create_xcframework_func.sh` is a good one.

If you set it as `NSResizableWindowMask` instead of `NSBorderlessWindowMask` you get resizing without the titlebar. Can do this via swizzling as follows: ``` @implementation myNSWindow - (id) initWithContentRect:(NSRect)contentRect styleMask:(unsigned long)style...

Fwiw I was curious about this fork since upstream Transmission has migrated to C++, which some might argue makes things harder to follow. Certainly in the rewrite there were many...

Is it valid per spec to have an empty url path though? I thought the resource being requested always has to be well-defined, so if you have ``` GET /...