Viewing profile — belden
belden
HN member- Joined
- Tue, Oct 15, 2013, 3:04 PM UTC
- HN karma
- 30
- Public activity
- 19 items
- HN profile
- View on Hacker News ↗
About belden
No profile information was provided.
Recent public activity
-
comment
Comment #47609352
My team doesn’t always have cleanly bisectable branches being merged to main —- it’s not uncommon to see “fix syntax error” types of commits. But, to merge we need to have all test…
-
comment
Comment #45784054
I’ve rebuilt my emacs config a few times for exactly this reason! Some of the things I’ve found work well for me: - it’s pretty obvious, but it took me a while to figure it out: ma…
-
comment
Comment #45421651
Speaking for myself, reasons why I don’t immediately share my own tooling: Perhaps I want to hold it to my own standard for tooling, not the team’s. Perhaps I want to write it in a…
-
comment
Comment #44906944
I'm not sure that's the (sole) rule for "Y as vowel". It acts as a vowel in "fly", "spy", and a few other words. And it seems pretty darn dipthong-like when clustered among vowels,…
-
comment
Comment #44203231
Oh crazy, I didn’t know about this aspect of bash. The line above set up automatic history ignoring for the colon-delimited shell globs; eg fg %3 won’t be recorded to shell history…
-
comment
Comment #44202890
I fall into the hoard-and-curate camp. I use bash within tmux heavily, and got irked that a command I run in one shell session is not immediately available as a history item in oth…
-
comment
Comment #43595196
Oh I’ve gotten weird about email, for sure — but this is more of an example of “the prototype goes to production”. I put these filters in place long before iPhones were a thing, an…
-
comment
Comment #43595144
I suppose I hadn’t discovered that! I set this up back in 2002, well before the iPhone and push notifications. It’s worked for decades, and I haven’t needed to look for a different…
-
comment
Comment #43589832
Oh, yikes. I’ve come to rely on the email->sms gateway from AT&T. I’ve had they set up a s a forwarding address within my web mail for a few years now, and have filters which forwa…
-
comment
Comment #43381070
If I’m looking for code changes: git log -S If it’s commit messages I’m interested in: git log --grep Sometimes I want to know “all the commits that introduced a pattern”: git blam…
-
comment
Comment #43181332
I wonder if bash-preexec https://github.com/rcaloras/bash-preexec could be used here. Perhaps you could start a timer in a preexec, and stop it in precmd. If the elapsed time is gr…
-
comment
Comment #42800539
I think the message means that this post is worthy of a Hall of Fame on HackerNews.
-
comment
Comment #27376521
I think it’s contrived simply for a pun: > leaky abstractions > > hydroplaning > hydroplaning requires: - water (“leaky”) - sliding (“...traction”) - lack of _brakes_ (“abs...”) We…
-
comment
Comment #24093451
Naming our first child was tricky. My wife and I had a final list of 5 names, any of which would work as a first-middle combination. She’d randomly toss out two: “Washington Stewar…
-
comment
Comment #14466007
RetailNext, Inc. | Full-Stack Engineer | Retail Analytics | Bay Area, CA | Full-time | Remote | https://retailnext.net/en/about-us/careers/ RetailNext is hiring for full-stack engi…
-
comment
Comment #9895425
When I change jobs, I check which version of my editor the dev environments have installed. If it's too old, I build a local copy of the latest version of my editor. No worries ask…
-
comment
Comment #9714963
If you find "no problem" to be hard to say - or perhaps you feel it is hard for your listener to hear - then you could try "my pleasure". I made this small edit to my speech a few …
-
comment
Comment #8819434
What else would you include?
-
comment
Comment #6590764
Macros in vim can call themselves; so if you want to make an edit across an entire file, something like: qqq //clear q macro qq //start recording q macro /foo // search for somethi…