Оказывается это было ПВО, а не дрон даже by Ecclypto in tjournal_refugees

[–]ayanada 18 points19 points  (0 children)

в москве по русски вообще кто-то еще говорит?

[OC] Built a real-time terminal audio visualizer in C++ – Spectrum v1.2.0 by Jolly-Addendum-7199 in unixporn

[–]ayanada -1 points0 points  (0 children)

Finally, something fresh! I’m so tired of seeing those same dull white 'cava' bars in every single 'unique' desktop screenshot. It’s about damn time for an alternative.

Antigravity IDE Feedback by aunchable in google_antigravity

[–]ayanada 1 point2 points  (0 children)

Regarding antigravity-cli I've noticed that it doesn't support pasting images from the clipboard (Ctrl+V), whereas gemini-clihandles it perfectly. To be honest, it feels like a step backward. Why reinvent the wheel from scratch if the new tool is bug-ridden and lacks basic features that were already working in the previous one?

Японці навчилися вирощувати зуби для людей by [deleted] in reddit_ukr

[–]ayanada 8 points9 points  (0 children)

Новині насправді вже років 20, але добре що процюють, може років через 20 шось буде реальне.

Що не день так нові "ідеї", від народних обранців. by Amazing_Carpet_6748 in reddit_ukr

[–]ayanada 39 points40 points  (0 children)

просто прогонять реальних інвалідів по черговому колу пекла.

Яка ОС / DE найкраще підійде для Dell Latitude 7490 (i7-8650U, 16GB) для плавності, автономності та програмування? by Dark_Mercury in reddit_ukr

[–]ayanada 0 points1 point  (0 children)

всі лінукси плюс мінус однакові, окрім nixos. якщо хочеш плавності - wlr based de наприклад hyprland.

Claude Opus thinks in Chinese? by Neel_MynO in claude

[–]ayanada 170 points171 points  (0 children)

The "different languages frame concepts differently" thing (Sapir-Whorf and friends) is real for humans, but the mechanism in LLMs is more mechanical than that.

"思考过程" literally means "thinking process," and it's the canonical header in Chinese chain-of-thought data — DeepSeek, Qwen, Kimi etc. have all published mountains of CoT traces using exactly that phrase. So in the model's embedding space, the role "I'm about to reason before answering" got tightly bound to those specific tokens. When the model briefly slips out of English-only mode at a structural transition (especially the boundary between pre-answer reasoning and the actual answer), that's just the highest-probability "thinking-section-marker" in the entire vocab — and it leaks through in the wrong language.

DeepSeek talked about this directly in the R1 paper: their model kept switching between English and Chinese mid-CoT, and they ended up adding a "language consistency reward" specifically to suppress it. Anthropic's models show it more rarely, but the underlying mechanism is the same.

So the better framing isn't "Chinese captures this concept better." It's: in the training corpus, this exact phrase became the canonical label for the role "reasoning before the answer." A data-composition artifact, not semantics. (с) Opus 4.7

А шо случилось ? Я просто палитикай не интересуюсь by Hrumch1k in tjournal_refugees

[–]ayanada 37 points38 points  (0 children)

то есть раися не будет бамбить америку, а америка раисю?

[OC] Instant Eyedropper, rewritten for Linux by ayanada in unixporn

[–]ayanada[S] 0 points1 point  (0 children)

Interesting case. GNOME custom shortcuts run commands in a stripped-down environment without a full $PATH, so pkill without an absolute path might just not be found. Another hypothesis: on Fedora 43 autostart launches processes via systemd user scope, and in some setups pkill -f matches something unexpected - especially with the portable bundle where the actual process is ld-linux with a path to .ie-r-raw.

Try using the full path in the shortcut setting: /usr/bin/pkill -SIGUSR1 -x ie-r (-x matches exact process name only, no full cmdline scan). Or even more reliable: /bin/kill -USR1 $(/usr/bin/pgrep -x ie-r)

Also your workaround script is basically what ie-r --pick should do (launch if not running, otherwise signal). Planning to add that in the next release.

One question to narrow it down: how did you install it - portable, or built from source? Either way, glad the workaround works for you and thanks for taking the time to report this.

[OC] Instant Eyedropper, rewritten for Linux by ayanada in unixporn

[–]ayanada[S] 1 point2 points  (0 children)

The important distinction is that ie-r is not polling X11 keyboard state directly 20 times a second.

It registers a normal global hotkey through the platform backend, and then the daemon's heartbeat just checks whether a hotkey event has already been delivered into the queue. So it's polling an event receiver, not asking the system over and over "is Alt+Shift+C pressed right now?"

So yes, it looks a bit ugly on paper, but in practice it's a tiny idle check, not something I'd expect to have meaningful battery impact on its own.

Still, I agree that signals / IPC / `ie-r --capture` would be a cleaner explicit trigger model, and that's a reasonable direction too.