Another weird corner case is that COP2 (GTE) instructions actually start executing one instruction early with respect to where the program counter is. As a result when an exception happens the kernel interrupt handler…
No love for MultiEdit? :(
https://www.youtube.com/watch?v=bjWFNgKE4uw
I mean, yeah, technically true - although you would connect in untrusted mode if you didn't trust the machine where you were editing code. At that point it should only be slightly more dangerous than opening a web page…
How does it differ from just logging into that machine and running code?
Most of us have learned <esc>:q by now. And then apt-get remove vim :)
btw: you can actually write, for example, the first function as just: auto first(auto... params) { return params...[0]; } Unless I'm missing something - but the post is showing off the fact that you can index into the…
array[index] is insane syntax? That's all that's being talked about here (allowing array-like indexing of parameter packs which are variadic template parameters).
Sudeki was better. Long live SOL :)
My Russian girlfriend did not even know that кринж (cringe) was an English word. Not only that, it has been imported as an adjective just like its use in English internet slang (e.g. that's cringe). Then a verb was…
Windows 10 had the text "Type here to search" in its search box so it was even worse by 3 words
Both KDE and Gnome seem to have the text "Search" in their search boxes too (Gnome is an even worse choice, it has "Type to search" in its search box)
This is nonsense. The main reason behind the demise of dedicated sound cards: motherboard sound chipsets got "good enough". The value add wasn't adding enough value any more because you can get decent sound quality just…
You do need a very different design to efficiently target D3D12 and Vulkan. You need to think in terms of pipelines, root signatures/descriptor layouts, tables of descriptors and resource transitions. But its quite easy…
While not being based on C DirectX actually has a C API, even for D3D12. For example to call device->CreateRootSignature(...) from C you call ID3D12Device_CreateRootSignature(device, ...).
Assuming the M1 GPU works like most modern GPUs then bounds checking is already built into every memory operation. Memory operations in modern GPUs basically evolved from fetching textures (which intrinsically have…
I find this kind of comment strange in a community of self professed hackers :) 8k 120fps HDR is just the specification of the hardware. The hardware supports an 8k framebuffer and can output it to the display at…
Another weird corner case is that COP2 (GTE) instructions actually start executing one instruction early with respect to where the program counter is. As a result when an exception happens the kernel interrupt handler…
No love for MultiEdit? :(
https://www.youtube.com/watch?v=bjWFNgKE4uw
I mean, yeah, technically true - although you would connect in untrusted mode if you didn't trust the machine where you were editing code. At that point it should only be slightly more dangerous than opening a web page…
How does it differ from just logging into that machine and running code?
Most of us have learned <esc>:q by now. And then apt-get remove vim :)
btw: you can actually write, for example, the first function as just: auto first(auto... params) { return params...[0]; } Unless I'm missing something - but the post is showing off the fact that you can index into the…
array[index] is insane syntax? That's all that's being talked about here (allowing array-like indexing of parameter packs which are variadic template parameters).
Sudeki was better. Long live SOL :)
My Russian girlfriend did not even know that кринж (cringe) was an English word. Not only that, it has been imported as an adjective just like its use in English internet slang (e.g. that's cringe). Then a verb was…
Windows 10 had the text "Type here to search" in its search box so it was even worse by 3 words
Both KDE and Gnome seem to have the text "Search" in their search boxes too (Gnome is an even worse choice, it has "Type to search" in its search box)
This is nonsense. The main reason behind the demise of dedicated sound cards: motherboard sound chipsets got "good enough". The value add wasn't adding enough value any more because you can get decent sound quality just…
You do need a very different design to efficiently target D3D12 and Vulkan. You need to think in terms of pipelines, root signatures/descriptor layouts, tables of descriptors and resource transitions. But its quite easy…
While not being based on C DirectX actually has a C API, even for D3D12. For example to call device->CreateRootSignature(...) from C you call ID3D12Device_CreateRootSignature(device, ...).
Assuming the M1 GPU works like most modern GPUs then bounds checking is already built into every memory operation. Memory operations in modern GPUs basically evolved from fetching textures (which intrinsically have…
I find this kind of comment strange in a community of self professed hackers :) 8k 120fps HDR is just the specification of the hardware. The hardware supports an 8k framebuffer and can output it to the display at…