Фото: Yves Herman / Reuters
基层工作点多、线长、面广。现实中,一些基层干部在“网红”赛道上独辟蹊径。从端着碗筷串门子的村党支部书记,到为村里留守老人送饭、2元管饱的“送饭书记”,再到因年度总结报告在短视频平台火了的“小王书记”……点赞不少,讨论也随之而来:流量进了村,干部当“网红”,怎么看?
,更多细节参见夫子
Focus to learn more
ballin#One night — after a glass of wine — I had another idea: one modern trick with ASCII art is the use of Braille unicode characters to allow for very high detail. That reminded me of ball physics simulations, so what about building a full physics simulator also in the terminal? So I asked Opus 4.5 to create a terminal physics simulator with the rapier 2D physics engine and a detailed explanation of the Braille character trick: this time Opus did better and completed it in one-shot, so I spent more time making it colorful and fun. I pessimistically thought the engine would only be able to handle a few hundred balls: instead, the Rust codebase can handle over 10,000 logical balls!
we also have a Rust implementation of the core engine, but it’s there because we want a native library without dependencies and good UTF-8 support, not because it’s necessarily faster. in fact, the F# version is faster than the Rust version - .NET has an effortless way to vectorize regexes with SearchValues<T, and our implementation is able to detect and utilize these opportunities when most other engines can’t. replicating what .NET gives you for free would take considerable effort, and i haven’t done that in Rust yet - especially since many existing SIMD subroutines only work left to right, while .NET also provides right-to-left variants needed for our bidirectional matching.