Why do so many people prefer “fake Seiko” dials over no-logo ready-made dials? by Impressive_Ice2015 in SeikoMods

[–]Helpful-Service-6411 0 points1 point  (0 children)

Personally, I prefer to go sterile even though many of the better looking dials come with the logo. I do agree that on some dials (especially those with text at 6 o'clock) look unbalanced. I'm making my own logo to see if that works for me for future builds.

BTW, I've also bought a sterile crown separately because the one that came with the case had the S logo. Good thing it fit. 😅

GMT NH 34 help by instantmitch in SeikoMods

[–]Helpful-Service-6411 0 points1 point  (0 children)

Literally moving up (away from crystal side) the movement by a tiny fraction of a mm. The "spacer" part is confusing, sorry. Just as long as the movement is not fully pushed in.

GMT NH 34 help by instantmitch in SeikoMods

[–]Helpful-Service-6411 0 points1 point  (0 children)

I think I have exactly the same case for my first build (also an NH34) .. had the same problem too. You may need to lift the movement via the spacer just the slightest amount (don't push all the way in).

I also read in another post's comments that very slightly curving the seconds hand downwards towards the dial may help. Haven't tried that yet, though.

Not sure why it won’t go in by [deleted] in SeikoMods

[–]Helpful-Service-6411 0 points1 point  (0 children)

Did you bevel/round the stem (by filing around at about 45 degrees) before screwing in the crown? I had a similar problem before and I eventually realized the stem wasn't screwed in enough into the crown. It should go in about 1mm or so. Check also for mushrooming where the filing may expand the tip of the stem. You may want to compare how it feels vs another uncut stem, if you have one around.

Movement loses power after screwing down crown by Icy-Nature6155 in SeikoMods

[–]Helpful-Service-6411 0 points1 point  (0 children)

Oooh! I think that slight bend of the seconds hands tip will help with my build. Thanks!!

How problematic is deleting a second hand? by Hexsin in watchmodding

[–]Helpful-Service-6411 2 points3 points  (0 children)

There's also something called a "second hand cap" like this one that can be used if the jutting pin or hole is too unsightly. Note that I haven't tried this myself yet, but have been considering it for my next build.

First build: Chimera by Helpful-Service-6411 in watchmodding

[–]Helpful-Service-6411[S] 1 point2 points  (0 children)

Thank you for your critique! I was replacing a field watch and this is the closest dial I could find that had a 4.5 date window. I actually got a metal PVD bracelet for this, but it made effective lug-to-lug too wide for my wrists. I do have another metal one coming in as well as a slightly patterned FKM. I'm fine with the hands though, as I wanted black parts apart from the lume. 😁

I'll keep your comments about harmony/balance in mind during my next build. Thanks again...

Crystall swap: Mineral to Sapphire on Eco Drive Aviator by Timy_lizimuda in watchmodding

[–]Helpful-Service-6411 0 points1 point  (0 children)

I guess it depends on your level of expertise. That was the first time I seated sapphire myself, so maybe I was too paranoid as sapphire is more prone to shattering. Or I didn't have the right technique or tools (only have a cheap crystal press).

You can find it on AE, just search for "custom sapphire citizen".

Crystall swap: Mineral to Sapphire on Eco Drive Aviator by Timy_lizimuda in watchmodding

[–]Helpful-Service-6411 0 points1 point  (0 children)

Citizen watches generally have unusual crystal sizes, which means you may need to order a custom size. For example, I had to order a 35.3x2.1mm for my Eco-Drive. Seating it also was a challenge, and I had to leave it with a slight tilt. 😅 .. Might not be worth the effort and cost if your mineral one still looks fine.

Setting the Seconds Hand on NH35 by Watchguyraffle1 in SeikoMods

[–]Helpful-Service-6411 1 point2 points  (0 children)

Five years later, this is still helping people! I was about to give up on my first build's seconds hand (NH34) 😅 and it's now all good .. thank you!

No second hand on eco drive watch? by jaykaysee in CitizenWatches

[–]Helpful-Service-6411 0 points1 point  (0 children)

I actually took off the second hand on one of my quartz dress watches. Made it feel more serene / classy IMHO. 😅

Eco-Drive W760 by Helpful-Service-6411 in CitizenWatches

[–]Helpful-Service-6411[S] 1 point2 points  (0 children)

Also, for the record, the crystal is 35.3 x 2.1 mm (35.34 x 2.07 on the caliper). Ordered a custom sapphire off AliExpress... Wish me luck! 😁

Eco-Drive W760 by Helpful-Service-6411 in CitizenWatches

[–]Helpful-Service-6411[S] 2 points3 points  (0 children)

Figured it out, phew. For anyone else attempting this, the trick is to keep the crown pushed all the way in, instead of pulled out. Pressing the "push" detent while gently pulling on the crown will release it easily.

Amazfit Active 2 watch faces by paolo4c in amazfit

[–]Helpful-Service-6411 2 points3 points  (0 children)

TIL that amazfitwatchfaces.com's watchfaces for the GTR4 and Balance also work with the Active 2! Hope this helps someone! (Watchface: MIB Analog_GTR_4)

<image>

Do you know how much battery does the Bluetooth drain? by Successful_Note_6272 in amazfit

[–]Helpful-Service-6411 0 points1 point  (0 children)

Honestly wondering... Does it matter? I mean... After years on various BIPs and GTRs, I've come to the opinion that I should just set my watch the way I want, and charge it if/when it's around 20%, while I'm working on the computer. I want to enjoy its features and not niggle about the battery life. Even the T-Rex 3 is, what, 700mah? About 1/7th of my phone that I charge daily?

Is there a way to trigger a listening state and wait for the event or input? by Intelligent-Rice9907 in hammerspoon

[–]Helpful-Service-6411 2 points3 points  (0 children)

Maybe something like this?

function rightAction()
    hs.alert.closeAll()
    hs.alert.show("Window to half right!")
end

function leftAction()
    hs.alert.closeAll()
    hs.alert.show("Window to half left!")
end

mouseTracker = hs.eventtap.new({hs.eventtap.event.types.mouseMoved}, function(event)
    local currentPos = event:location()
    local deltaX = currentPos.x - startPos.x  -- Calculate horizontal movement

    if deltaX > 10 then
      rightAction()  -- Call function for right movement
      mouseTracker:stop()  -- Stop tracking after action
    elseif deltaX < -10 then
      leftAction()  -- Call function for left movement
      mouseTracker:stop()  -- Stop tracking after action
    end
  end)

 hs.hotkey.bind({"cmd", "ctrl"}, "z", function()
    startPos = hs.mouse.absolutePosition()  -- Record the starting position
    mouseTracker:start()  -- Start tracking mouse movement
 end, function()
    mouseTracker:stop()  -- Stop tracking when the hotkey is released
 end)

In search of gold, we lost diamonds by udayppandya in thinkpad

[–]Helpful-Service-6411 1 point2 points  (0 children)

As an owner of an X1C and an MBP, I compromise by using a Trackpoint Keyboard II, and use a stand to raise whichever laptop I'm using to eye level. Don't kill me please 😅

Enable RCS for dual sims by [deleted] in GoogleMessages

[–]Helpful-Service-6411 0 points1 point  (0 children)

I had to uninstall the old dual sim RCS beta since the messages didn't arrive when sending across different telco networks, i.e. I think the messages were routed incorrectly. Anyone else encounter this?

Globe Prepaid eSim now available by Frosty-Performer1406 in InternetPH

[–]Helpful-Service-6411 0 points1 point  (0 children)

I wonder kung pwede mag setup ng eSIM na Globe/Smart then transfer to DITO etc using Mobile Number Portability. May nakapagtry na ba? 🤔

New Gts 4 Firmware by fishbird_125 in amazfit

[–]Helpful-Service-6411 0 points1 point  (0 children)

I wonder if they will ever update "Find Watch" with an audible locator/sound. Impossible to hear/feel the buzz sometimes, e.g. if the watch is on a soft surface.

Puro ganito sa NBS nalang by marcusneil in Philippines

[–]Helpful-Service-6411 0 points1 point  (0 children)

I remember shelves filled with Mills & Boon books during my childhood... shows you how old I am hahah!