2026-05-06

· 👁 27 · 1750

This is how in #go we remove an element from a collection

func rm(i int, lists[]*ListNode) []*ListNode {
    return append(lists[:i], lists[i+1:]...)
}

Usually its a library call.

· 👁 28 · 1749

· 👁 28 · 1747

Oh my...

#leetcode

· 👁 24 · 1746

#leetcode is often produce #error

· 👁 23 · 1745

My another hobby project, made with #llm / #codex: converter of #wikipedia dumps into #man / #roff format, on #rust (because I love performance): for a #terminal, #offline reading. #love it, still fixing many markup cases, but mostly its readable already https://gitlab.com/vitaly-zdanevich/wiki2man_on_rust

Wrote about it at https://diff.wikimedia.org/2026/06/25/i-built-the-convertor-from-wikipedia-dumps-to-man-roff-format-for-offline-reading-in-a-terminal/