Arran Walker

Results 7 issues of Arran Walker

I've been working my way through your excellent `Unreal Engine 4 Mastery: Create Multiplayer Games with C++` course recently and figured I'd try swapping out the Pawn Sensing implementation for...

There's a note in the HAL specification located at http://stateless.co/hal_specification.html: > Note: If you're unsure whether the link should be singular, assume it will be multiple. If you pick singular...

This PR implements main/common directory support for linked working tree repositories created by `git worktree add` (aka `GIT_COMMON_DIR` as noted in https://git-scm.com/docs/gitrepository-layout). To summarize: - `PlainOpenWithOptions` now checks to see...

Further to https://github.com/Code-Hex/vz/pull/142, this adds [VZNetworkBlockDeviceStorageDeviceAttachment](https://developer.apple.com/documentation/virtualization/vznetworkblockdevicestoragedeviceattachment?language=objc) support. This PR lacks setting a [delegate](https://developer.apple.com/documentation/virtualization/vznetworkblockdevicestoragedeviceattachment/4168502-delegate?language=objc) to monitor state changes to the attachment, mostly because I couldn't figure out the best way to...

This adds support for `PreShutdown` as [described here](https://docs.microsoft.com/en-us/windows/win32/services/service-control-handler-function). This allows multiple "StopPending" state updates to let Windows know that a service is still shutting down, incrementing a "CheckPoint" to let...

Hey @myzie I've recently been evaluating risor for a project and was surprised by this being allowed: ``` a := 123 a a a a // returns 123 ``` and...

**Change** Terraform expressions support a feature where values can be deemed `sensitive`. Using a `sensitive` value propagates, tainting values that are derived from them. It has 2 built-in functions: `sensitive()`...