As an adjustment, for now, I'm sticking with the built-in functionality but enabling only the status bar display, whose template I modified to include the commit message and date.
* I like how the map moves around. It helps nail down relationships to neighbors * I don't mind a few extra "Where's canada", even though it's not that useful * I'd like the pause between answers be shorter. * Small countries are impossible to see when zoomed out on the first exposure, even when selected right. I find myself knowing the area it's in (ie, central america) but not which exact country. So selecting it right when zoomed out doesn't get me the correct answer.
You'd have a length of coax cable going to the centre point of the antenna, so pair of 15m wires extending from each side.
Getting your amateur radio license covers this in more detail.
Dave Casler has a bunch of useful videos on things like this: https://www.youtube.com/watch?v=18-6sJHk9hU
(I know you know this, but just adding in. Ham is fun! I like doing park & camping deployments)
Now I'm on Tirzepatide (Zepbound), and I'm back to 235ish, and trending lower. I still work on eating healthy, but now I'm not just HUNGRY at all moments. My life continues, and I only have to make individual healthy choices at meal times, and grocery times, rather than a constant struggle at all waking moments. It's seriously a big difference.
class GetThingResult
def initialize(json)
@json = json
end
# single thing
def thing_id
@json.dig('wrapper', 'metadata', 'id')
end
# multiple things
def history
@json['history'].map { |h| ThingHistory.new(h) }
end
... two dozen more things
end
On the other hand, I did have good luck w/ Anthropic's version of this to make a single page react app with super basic requirements. I couldn't imagine using it for anything more though.
In the past, that much nitpicky detail just wouldn't have gotten done, my time would have been spent on actual features. But what I just described was a 30 minute background thing in claude code. Worked 95%, and needed just one reminder tweak to make it deployable.
The actual work I do is too deep in business knowledge to be AI coded directly, but I do use it to write tests to cover various edge cases, trace current usage of existing code, and so on. I also find AI code reviews really useful to catch 'dumb errors' - nil errors, type mismatches, style mismatch with existing code, and so on. It's in addition to human code reviews, but easy to run on every PR.