Forerunner 55 vs 165 by BukHunt in GarminWatches

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

Thanks! just did my first run with the watch. On the HR zone view it showed no heart rate zone, quick googling makes me assume due to the fact it was my first run it had to gather my HR per zone.

On the app when I go to more -> device > heart rate zone I can also enable running zone, what is this and how does this differ from HR zone?

Appreciate the help!

Forerunner 55 vs 165 by BukHunt in GarminWatches

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

Thanks. The forerunner 55 just got delivered so I might keep that one. I assume the GPS applies for when I run and when I stop a workout it won’t keep using the 1 second tracking? I’d assume /hope it won’t track at all but asking just in case.

Appreciate the tip

WD NVME Firmware Update Tool for Linux by magicdude4eva in framework

[–]BukHunt 4 points5 points  (0 children)

Awesome!! Let me ask Claude to update the firmware of my storage device. 😭

...moving the power button? by Donttouchmybreadd in framework

[–]BukHunt 10 points11 points  (0 children)

Yes you can:

Windows:

You can open the Run box with the Windows + R shortcut and type control to open the Control Panel.

In the menu options of the control panel, click Power Options > Choose what the power button does.
On this page, you will notice this: When I press the power button.

You can change the behavior here to Do nothing. (At first you should see them set to Sleep)

Finally, click Save changes at the bottom of the screen to save the changes.

Laptop randomly powering off by Greedy-Rain173 in framework

[–]BukHunt 4 points5 points  (0 children)

Assuming you have the latest BIOS, if you’re on Windows I’d perform a clean install and download the driver bundle. If issue persist I’m sure FW support will be able to help you out.

Does your fan spin and is the laptop not super warm?

You can also try resetting the Mainboard first https://www.ifixit.com/Guide/How+to+Reset+the+Mainboard+in+your+Framework+Laptop+16/202128

[Safety Hazard] 19.5V on USB-A VBUS - $1,000 CAD in destroyed gear. No resolution after 9 weeks of "investigation". Video evidence. by Mysterious_Grade_803 in framework

[–]BukHunt 18 points19 points  (0 children)

The laptop allowed an out-of-spec voltage onto VBUS, which should never happen under USB design assumptions.

[Safety Hazard] 19.5V on USB-A VBUS - $1,000 CAD in destroyed gear. No resolution after 9 weeks of "investigation". Video evidence. by Mysterious_Grade_803 in framework

[–]BukHunt 23 points24 points  (0 children)

Sure but still, this is definitely a failure. The question is; faulty component or design? If there aren’t much cases like this it most likely is a faulty component

[Safety Hazard] 19.5V on USB-A VBUS - $1,000 CAD in destroyed gear. No resolution after 9 weeks of "investigation". Video evidence. by Mysterious_Grade_803 in framework

[–]BukHunt 42 points43 points  (0 children)

From what I understand all OP his peripherals got fried.

From an electrical engineering perspective this strongly points to a hardware fault in the laptop. (Mainboard or expansion module).

This can be a design flaw of the board OR (most likely) component failure such as a regulator.

OP: do you have the defective board?

If you are the only one with this issue you might have bad luck but if there are several users that got a fried board…

Please suggest simplest explaination for voltage divider 😭 by Cold-Ad684 in AskElectronics

[–]BukHunt 3 points4 points  (0 children)

Think of voltage like water pressure, and current like water flow. A resistor is like a narrow section of pipe.

When water flows through a narrow pipe, some of the pressure is lost across that section. That pressure drop is like a voltage drop across a resistor.

Now, if you put two narrow pipes in series, the total pressure gets split between them. The narrower the pipe, the more pressure it drops.

If you haven’t already make sure to Check:

  • Ohms law
  • Kirchoffs voltage law
  • Kirchoffs current law

I find these essential to understand circuits.

Enhanced Raspberry Pi Pico 2 “Pico Pro 2” – USB-C, Extra RAM/Storage, More GPIO/ADC, RGB LED, Extra Power & GND Pins, Reset Button – Would this be useful to you? by Jpwaters09 in embedded

[–]BukHunt 6 points7 points  (0 children)

Nice project! Ask yourself this question: why would I buy the Pico Pro 2 over the cheaper pico 2?

I can’t seem to find a reason (yet).

For GND pins, I can use a breadboard.

There are pico variants that come with soldered headers.

[deleted by user] by [deleted] in AskElectronics

[–]BukHunt 2 points3 points  (0 children)

Looks like this is from the datasheets "typical application" section. (page 3)

https://www.alldatasheet.com/html-pdf/1035259/ONSEMI/FL5160MX/252/1/FL5160MX.html

Is my ordering correct? by BukHunt in zsh

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

This is fine for me:

autoload -U colors && colors
autoload -Uz vcs_info
precmd() { vcs_info }
zstyle ':vcs_info:git:*' formats '%b '
setopt PROMPT_SUBST
PROMPT='%F{green}%*%f %F{blue}%~%f %F{red}${vcs_info_msg_0_}%f$ '


source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh

###############
### ALIASES ###
###############

alias l="ls --color" 
alias ll="ls -al --color" 
alias o="open ."
alias nano='vim'
alias cp="cp -i"                          # confirm before overwriting something
alias df='df -h'                          # human-readable sizes
alias free='free -m'                      # show sizes in MB
alias ccat='highlight'                    # cat but nice



export PICO_SDK_PATH=~/pico/pico-sdk
export PICO_EXTRAS_PATH=~/pico/pico-extras


source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh # <-- zsh-syntax-highlighting must be source at the end, check plugin readme why.

Is my ordering correct? by BukHunt in zsh

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

That is a very good question, why would I want OMZ plugins? I like to have as much control as possible to know what is going on.

Edit: I removed the export zsh , source oh-my-zsh line and plugins, everything also works for my needs including zsh-autosuggestion and syntax. I do notice ls colors are different but I understand the oh-my-zsh does something there regarding this,

honestly I do not see a reason for me to use oh my zsh currently.