James Liu

Results 151 issues of James Liu

This would be easier for easier control over certain aspects of the bot.

enhancement

enhancement
Feeds

While this library has shown to scale up to larger server based use cases and cross-continent P2P connections, the lack of a LAN discovery tool for quick and dirty LAN...

enhancement

**Is your feature request related to a problem? Please describe.** The current docker image requires operating as the root user. This is a potential security risk if there's a container...

enhancement

Currently every call to send or receive packets requires a byte[], and it already takes a length. Could we add overloads that either takes IntPtr or void* to avoid potential...

I'm not sure if this is an issue with the Steamworks API itself, or the wrapper that Steamworks.NET forms around it. Steps to reproduce: * Create a lobby on the...

Fixes #71. Another benefit is that accessing registry's next counter doesn't require an extra lazy check, only on the actual freelist.

Due to the `expect` in `Slab::unique_iter`, the function panics when used on an empty slab. Trying to use this as a way to speed up a fork of `async_executor`, which...

bug

`lazy_static` involves macros, takes a bit longer to compile, and `once_cell` provides more flexible ways on the way to [being added to `std`](https://github.com/rust-lang/rust/issues/74465). Replace all usages of `lazy_static` with `...