Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
Tringi
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
Service for Clean Windows Shutdown on Azure Spot Virtual Machine Eviction
(github.com)
1 points
by
Tringi
6mo ago
|
1 comments
2.
▲
by
Tringi
6mo ago
I wasn't happy with existing solutions for clean shutdown of Azure Spot VMs so I put together this tiny service application that does basically what all those scripts do, but with way less resources and without continuously launching s
3.
▲
The abysmal state of Windows 11 Taskbar icons
(github.com)
6 points
by
Tringi
8mo ago
|
2 comments
4.
▲
by
Tringi
8mo ago
An observation and a rant. Many will not even notice that icons got more blurry with Windows 10 and then worse, but I needed to get this off my chest, and perhaps I'll find likeminded minds in this regard through this.
5.
▲
by
Tringi
1y ago
It's a little more complicated if you are to be using themes, GDI and common controls. Some time ago I put together this example: https://github.com/tringi/win32-dpi The high DPI support in Windows went through
6.
▲
The trouble of determining current ARM64 ISA version on Windows on ARM
(github.com)
3 points
by
Tringi
2y ago
|
1 comments
7.
▲
by
Tringi
2y ago
So how shall a launcher application determine which AArch64 ISA level is available on Windows on ARM device? Full story: https://www.reddit.com/r/programming/comments/1gxnr85/determ...
8.
▲
by
Tringi
2y ago
There's this issue with Win32 synchronization API, discussed and documented in many blogs, videos and tutorials over the years, that comes up again and again, that one thread can only wait for 64 (MAXIMUM_WAIT_OBJECTS) kernel objects a
9.
▲
by
Tringi
2y ago
Ah, yeah, that's true.
10.
▲
by
Tringi
2y ago
As awesome as these algorithms are, I can never imagine use case. Any time I need to turn something into uppercase or lowercase, it's user's input or something Unicode. Which can be in any random language, so all the crazy Unicode
11.
▲
Win32 "Hub" Events / Reliable Alternative to PulseEvent API
(github.com)
2 points
by
Tringi
2y ago
|
1 comments
12.
▲
by
Tringi
2y ago
The Hub Event (working title) is similar to the standard Win32 Event Object, but multiple consumers (clients) of the event can reliably wait on them, while being set/reset by the producer. When the software requires to signal/rele
13.
▲
by
Tringi
3y ago
Some time ago I did some test, 256 threads competing on a small number of cache lines, and found out that all, CreateMutex, CRITICAL_SECTION and SRWLOCK, were quite fair. The most successful thread was only 25%, 15% and 9% ahead of the leas
14.
▲
by
Tringi
3y ago
Blocking new readers when a writer arrives is perfectly good and desirable. Blocking readers when the writer finishes, and there isn't any new queued, is definitely not.
15.
▲
by
Tringi
3y ago
And Twitter/X accounts. I have had a lot more things fixed in Windows or MSVC from nagging devs on there than from reporting through any official channel.
16.
▲
by
Tringi
3y ago
I'm always fascinated when engineers who make my year's salary in a week come up with something as dumb as this.
17.
▲
by
Tringi
4y ago
A simple tool that I've created to solve a somewhat self-inflicted problem. In some projects I want or need small differences in DLL .def exports, differences by architecture or release/debug. And I don't want to manually mai
18.
▲
DLL Module-Definition (.def) Files Preprocessor
(github.com)
1 points
by
Tringi
4y ago
|
1 comments
19.
▲
Better Ctrl+F search for C++ (coding style agnostic) proof of concept
(github.com)
1 points
by
Tringi
4y ago
|
1 comments
20.
▲
by
Tringi
4y ago
Algorithm intended as a replacement for basic fast Ctrl+F search inside C++ sources. Ignores insignificant whitespace, diacritics and is case insensitive. Can ignore comments/strings or search explicitly inside them. Matches camelCase
21.
▲
by
Tringi
4y ago
Yes, it is.
22.
▲
by
Tringi
6y ago
Yes. 200 MHz down from base clock.
23.
▲
by
Tringi
7y ago
I'm searching for it too, and I can't find the actual text. Somebody doesn't want us to begin mixing that cocktail ourselves :D
24.
▲
Using 32-bit pointers in 64-bit code on Windows (benchmark)
(github.com)
1 points
by
Tringi
7y ago
|
0 comments