John Leidegren
John Leidegren
We have lots of UUIDs and props in our store finding things is sometimes really painful, for this a search function would be wonderful, however, simply using a stable sort...
https://medium.com/@Quramy/manipulate-comments-with-typescript-api-73d5f1d43d7f Just leaving this here as a reference for future work.
I had a discussion with [sokra](https://github.com/webpack/webpack/issues/5586#issuecomment-325645113) about why the HMR code didn't display a specific warning when you fail to accept the new module in a parent, the current version...
There are other tools that can do this but I think it's a nice feature for more advance situations. Would definitely appreciate it.
This PR adds syntax highlighting for .odin files ([Odin programming language](https://odin-lang.org/)) and is based on the `txti_token_array_from_string__cpp` function. Key differences are: - Set of keywords - `#meta` is treated like...
## Context Odin: dev-2024-01-nightly:5961d4b3 OS: Windows 11 Professional (version: 23H2), build 22631.3007 CPU: AMD Ryzen 9 5950X 16-Core Processor RAM: 65449 MiB ## Expected Behavior I expect the following program...
A breakpoint chain is a series of breakpoints where the first breakpoint in the series disables itself when hit and enables the next. The debugger doesn't wait for the user...
I might have gotten this wrong, please advice if there's any issues here but here's why I think this change might be reasonable. Given that the `sp_getapplock` `@LockTimeout ` parameter...
Incorrect ```odin err = gfx.device->CreateDescriptorHeap( &rtv_desc, d3d12.IDescriptorHeap_UUID, (^rawptr)(&gfx.rtv_desc_heap), ) ``` When not using select call `->` ```odin err = gfx.device.CreateDescriptorHeap( gfx.device, &rtv_desc, d3d12.IDescriptorHeap_UUID, (^rawptr)(&gfx.rtv_desc_heap), ) ```