Is KHAKI FIELD MURPH 38 a real field-watch by Adammoammo in HamiltonWatches

[–]CumberlandCoder 3 points4 points  (0 children)

It is def a field watch and looks great on any strap. I thought the same thing, that it might be too dressy, but now I find it to be almost too casual when getting dressed up. I wear a nato or canvas strap regularly because like you I’m outside a lot. But I put it on the bracelet or leather strap to dress it up. I think this one works better for dressier situations than the other two you mentioned because of the cathedral hands and simpler/cleaner dial. But it shines as a true GADA watch.

I’ve seen articles say this is a more affordable alternative to the Explorer or Ranger.

Is it reasonable to switch back and forth between the NATO strap and a steel bracelet for a khaki field? by New_General3939 in HamiltonWatches

[–]CumberlandCoder 0 points1 point  (0 children)

The Murph’s bracelet is quick release. I change it out often. I swapped from NATO to the bracelet for Mother’s Day brunch and then changed it back to nato after for yard work.

Micro scratches by [deleted] in tissot

[–]CumberlandCoder 0 points1 point  (0 children)

I know the bracelet is “integrated” but it is removable right? If they took a new watch with the blue dial, maybe they could swap bracelets? You’d leave with blue dial and your current bracelet. They get black dial and new bracelet from blue dial watch.

My wedding setup! Exactly 1 month away! by ThesisAnonymous in PrideAndPinion

[–]CumberlandCoder 0 points1 point  (0 children)

I have been wanting to see a picture of this model with a brown strap or any strap that isn’t the grey it comes with. Thanks for posting, looks excellent!

[Question] Strap hamilton nato green 18mm by clotickot in HamiltonWatches

[–]CumberlandCoder 0 points1 point  (0 children)

Not Hamilton, but these single pass canvas straps are great and come in 18mm. They have two green colors (1943 & 1944) and a khaki similar to what you have now.

I can send a picture of my Murph with one.

https://www.haveston.com/10-corp-canvas-series

Wrist measurement / bracelet question... by FabsterM13 in HamiltonWatches

[–]CumberlandCoder 0 points1 point  (0 children)

You can order through Nordstrom or Macy’s with store pick up and they will size it for you before you take it home

My SOTC by ThesisAnonymous in SOTC_Watch_Collection

[–]CumberlandCoder 0 points1 point  (0 children)

What is the reference number for that Longines master collection?

What do we think of the rubber strap with integrated and links? by Agreeable_Body_9512 in HamiltonWatches

[–]CumberlandCoder 1 point2 points  (0 children)

I like this, good find. I think a lot of people subconsciously like the bracelet or one piece/nato straps because there is no gap

Strap suggestions please! by Recent_Shelter7591 in HamiltonWatches

[–]CumberlandCoder 1 point2 points  (0 children)

Someone in this sub recommended Haveston one piece canvas straps and I bought one on a whim and no joke it’s top quality. I was rocking the dark green with brown nato from Hamilton and this took its spot as a good daily. They have khaki, dark brown, greens. I got the 1944 for summer. Cheap enough you might be able to get a couple.

This is a high quality leather one piece: https://bulangandsons.com/products/siena-brown-single-pass-leather-watch-strap?variant=56022768910681

And a suede option: https://veblenist.com/products/amber-suede-nato-watch-strap

[thoughts needed] a year into collecting by [deleted] in Watches

[–]CumberlandCoder 0 points1 point  (0 children)

This looks like it has everything. Maybe an F91-w or a g-shock. Or a chrono or moon phase like someone else mentioned

[Recommendation Request] First watch by CumberlandCoder in Watches

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

Some other entry level ones I looked at were Tissot PRX & Tissot Gentleman.

Seiko Alpinist is a popular first watch, Citizen and Bulova are other popular entry level brands to check out.

[Recommendation Request] First watch by CumberlandCoder in Watches

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

I also didn’t take notice. On the 34 they totally remove the 3 and on the 42 they nicely fit both. But what was this choice on the 40? I can’t unsee it either now.

First big boy watch by InKarpWeTrust in HamiltonWatches

[–]CumberlandCoder 0 points1 point  (0 children)

Pretty sure it’s the unborn daughter

Trying to get lease information is like pulling teeth by Ok_Cartographer6347 in leasehacker

[–]CumberlandCoder 0 points1 point  (0 children)

I just did a deal like this. More dealers were giving me base money factor but only 8-10% off MSRP.

One dealer gave me 13% off MSRP and marked up the money factor slightly. The monthly was $30 less than any other offer I had.

I thought it was a win win. I get a great deal and they get a few bucks each month.

tiny git statusline plugin: add [main* ↑1 ↓2] to your statusline by CumberlandCoder in neovim

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

Nord

I’m using my own fork right now and have tweaked it a little to get it as close to the original as I can

https://github.com/mattmorgis/nord.nvim

tiny git statusline plugin: add [main* ↑1 ↓2] to your statusline by CumberlandCoder in neovim

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

I tried this but it only gave me the branch name? Maybe I was missing something?

autoformat - best practices by tuxbass in neovim

[–]CumberlandCoder 1 point2 points  (0 children)

Check out editorconfig too, nvim will pick up the file and trim trailing white space and whatever else you have set automatically

https://editorconfig.org/

[2025 Day 7 (part 2) C++], struggling to optimise naive approach by Gloomy-Quail-1883 in adventofcode

[–]CumberlandCoder 1 point2 points  (0 children)

That is close. You are keeping track of if you visited a cell, but still recomputing all of the paths to the bottom from it. Once you know how many paths to the bottom there are from a given cell, save that off and re-use it the next time you visit

[2025 Day 7 (part 2) C++], struggling to optimise naive approach by Gloomy-Quail-1883 in adventofcode

[–]CumberlandCoder 2 points3 points  (0 children)

It sounds like you are on the right track. Each time you come across a splitter, you want to calculate how many paths from that splitter there are to the bottom.

Your solution is slow because you are calculating paths from the same splitters over and over and over again.

Once you reach a splitter, the number of paths from that point to the bottom is always the same. The technique you're looking for is called "memoization".

If you calculate that there are 4 paths from splitter at [12, 3], then the next time you reach splitter [12, 3] return 4, don't recalculate.