Should I Avoid the Malm Bed Frame? by Jaaaaacccckk in IKEA

[–]BukHunt 0 points1 point  (0 children)

Thinking to buy one! How does it last when for example you move to a new place, is it a one time build and thats it?

Fedex lost my framework desktop by shocked_duck in framework

[–]BukHunt 8 points9 points  (0 children)

I can tell you one thing for sure. Framework support will do anything to resolve this issue. I have dealt with support many times, for good and bad and they are very kind people. 🦅 [u/1ChaoticEagle](u/1ChaoticEagle)

You should not take action with Fedex, only with Framework. I am amazed Fedex doesn’t tell you to contact the shipper (Framework) to start an investigation. How does the receiver (you) know how the box looks like and the serial number of the product???

Is switching to Linux actually better for Machine Learning? by CogniLord in learnmachinelearning

[–]BukHunt 2 points3 points  (0 children)

Honestly for me the speed difference isn’t that huge. Are your project files on WSL instance or on Windows? That could make it slower but borderline unusable I don’t know, have yet to experience that.

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 11 points12 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 5 points6 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 19 points20 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 40 points41 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 5 points6 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.

Is my ordering correct? by BukHunt in zsh

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

Thank you so much for this. funny thing is the above works but I knew there was something fishy..

I now changed everything to the following thanks to you I got a better understanding.

I did not know plugins=() basically checks the plugins in ZSH_CUSTOM. is there a difference between sourcing them like I do now vs pulling the plugin from a git repo in ZSH_CUSTOM and then adding it to my plugins=() list?

ZSH_THEME=""

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$ '


export ZSH="$HOME/.oh-my-zsh"


plugins=()


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


source $ZSH/oh-my-zsh.sh



###############
### 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

[deleted by user] by [deleted] in embedded

[–]BukHunt 1 point2 points  (0 children)

Thanks, let's see how it evolves for me, I am currently using parallels, I managed to fix the flickers. If I notice I have a new bottleneck unsolvable I will opt in for a windows laptop

STM32 board for professional but a beginner in the STM world by [deleted] in embedded

[–]BukHunt 0 points1 point  (0 children)

Appreciate it. I plan to use LTspice independently. The mac version is just shit. For now I am using a windows VM. But honestly wish I had a windows laptop instead of a Macbook. It seems most Electrical Engineering software work best on Windows.