Dominik Honnef
Dominik Honnef
https://diamon.org/ctf/ `perf` can convert to this format using `perf data convert`.
In  without looking at the stack trace, the transition to `inactive` is confusing. It is actually caused by ``` M=1925740 P=12 G=55 StateTransition Time=375984530827392 Resource=Goroutine(55) Reason="GC mark assist wait...
When typing `info is_emp`, it completes to `info is_empty(`, including the trailing opening parenthesis. More generally, `info ` offers the same 856 candidates that `` on an empty line would.
A command like `info CurrentDensity` fails with `Not found`. I would expect at least output similar to that for units: a basic description, whether the dimension is derived or not,...
For example, ``` x := 159.9999313354492045391452847979962825775146484375 y := 159.99993133544920453914528479799628257751464843749 ``` and ``` x := 159.99993133544922 y := 159.9999313354492 ``` are the same. As usual, floating point numbers are crazy and...
Go 1.24 adds [`runtime.AddCleanup`](https://pkg.go.dev/runtime@master#AddCleanup), a better alternative to `SetFinalizer`. Just like SetFinalizer, the callback shouldn't reference the finalized object. Additionally, AddCleanup mustn't be called with arg == ptr. We might...
Seen this original code in the wild: `int(math.Ceil(float64(gap / 2)))` (for var gap int) – staticcheck pointed out that the call to math.Ceil was pointless, so the code got changed...
For the following snippet ``` package pkg func foo() { // bar ``` the grammar produces an `ERROR` (not a `MISSING "}"), and places the `comment` node outside the `function_declaration`:...
Running `mpsolve -Ga -o 13 -p "3.2842919874852823e-295*x^3 + 6.734565977709723e+185*x^2 - 1.6583144507216154e-264*x + 7.925965171636945e+112"` finishes in 20 milliseconds, reporting ``` (0.e-61, -0.343060940430431e-36) (0.e-61, 0.343060940430431e-36) (0.138514786474494e309, 0.114589091973173e309) ``` Increasing the number of...