Victor Shepelev 🇺🇦
banner
zverok.bsky.social
Victor Shepelev 🇺🇦
@zverok.bsky.social
aka zverok.
Ruby core team / Ukrainian Armed Forces
Програміст, письменник, типу офіцер.
https://zverok.space/
Oh no, it was "git pickaxe". For some reason, I read it as Pickaxe (classic Ruby book) saving the day 😂
November 4, 2025 at 1:23 PM
Out of curiosity, what was the culprit?
November 4, 2025 at 12:53 PM
...to mask it, he pretends it is we the readers are too dumb to fully grasp it, and so let's leave it all in hints and ambiguities and self-referential statements.
November 3, 2025 at 6:35 PM
Reread the entire series after the first part of the movie (previous was, like, in my teens).
The first one feels like he knows a story he wants to tell, the follow-ups, while frequently inventive and sometimes deep, are all like he is trying to catch "what was my point again", but ...
November 3, 2025 at 6:35 PM
Some OSINTers claim they know the weapon that did it 🤔
October 24, 2025 at 2:49 PM
People tend to mark "boring politics which shouldn't have a place in engineering discussions" all kinds of things!

Not only "how taxes should be structured" politics but also "who should be imprisoned/deported/killed" politics is frequently labelled as "not something we should be interested in."
October 22, 2025 at 11:00 AM
They are just in desperate need of a Dear Leader To Save Them (or Die For Their Sins).
Why would one choose Navalny and not some Ukrainian in this juxtaposition?
Simple: because there was no One Dear Leader on Maidan.
But they won't say, "We don't need a Hero to lead us, we should all become one."
October 19, 2025 at 8:08 AM
...and before that: bsky.app/profile/zver...
Oh, so "we are turning into Good Russians circa 2010s" is an officially recognized policy, I see.
Good luck with that (it is a pity we are forced to observe it).
bsky.app/profile/gtco...
We need a Navalny, not a Newsom.

No offense intended against mainstream politicians like Newsom.

It’s just that at this point we are way beyond the realm of normal bullshit politics.
October 19, 2025 at 7:19 AM
Had that eerie feeling the last time:
bsky.app/profile/zver...
Judging by media picture (which might be misguiding), yesterday's US #NoKings protests remind me strongly of 2012s Russia:
October 19, 2025 at 7:16 AM
I still remember times when Google Messenger (or whatever it was called then) was XMPP/Jabber-based and you could talk to it with third-party messengers :)
October 17, 2025 at 5:48 PM
But I still think it all stayed nerdy-niche and all but died today because of tech. giants decided halfway that they actually don't want to promote open info exchange standards as an underlying layer for their businesses.
October 17, 2025 at 5:48 PM
...just that time via social media and mailing lists revival, no "open information exchange that time."

On the other hand, I do agree that even at their peak, RSS readers were nerdy-niche (I remember being stunned by a very tech-savvy political/social journalist who never heard of the tech).
October 17, 2025 at 5:48 PM
IDK, honestly.
On one hand, I think it could've been pulled off by a tech giant.
"Subscribe to this site's updates" is nothing too nerdy, unless we are trying to sell it as "an open XML-based technology, which ...".
Eventually, we got "subscribe to this site" anyway, right?
October 17, 2025 at 5:48 PM
So, I think it was not The pivotal event, just the final nail "we think this tech is dead" (and, by extension, "this approach -- having common standards to openly exchange info between apps and services -- is dead").
October 17, 2025 at 5:22 PM
The Reader itself as a service was just a point in a trend (and probably the last one) of Google moving away from RSS and similar open tech.
There were times when "this site has RSS" was rendered as an icon in Chrome's address bar; IIRC, having it was an official rec. "for better indexing"
October 17, 2025 at 5:22 PM
Here I strongly disagree. YAML is an extremely human-friendly format for structured data of any depth, and using whitespace is instrumental here.
One might dislike it or find inappropriate for particular task, but whitespace is YAML, not an accidental nuance of design.
October 15, 2025 at 12:47 PM
The funny thing is:
1. almost the only YAML's weirdness (basically, a design mistake) for casual usage is lenient parsing of booleans
2. which was fixed in YAML 1.2 (2009)
3... which AFAIK libyaml (and, therefore, everybody who depends on it, incl. Ruby) still fails to support 😁
October 15, 2025 at 12:15 PM
* pragmatically: typechecker that sees `x + y` with both only known to be `Object`, can check nothing; but if we know that `x` is `Object?` we can say that "it CAN be `nil`, and this case isn't covered"

(but I don't have experience with Ruby's typecheckers, so this one is kinda theoretical)
October 12, 2025 at 7:03 AM
Just from the top of the head, I think Object? is more useful both semantically and pragmatically:
* semantically: while nil is-a Object, I think a human reader would appreciate the distinction of "here could be anything" vs "...including nothing" reminder

=>
October 12, 2025 at 7:03 AM