• 1 Post
  • 40 Comments
Joined 2 years ago
cake
Cake day: September 5th, 2023

help-circle






  • First off, beautiful hardware! Secondly, based on what you’ve said you’ve already tried, you’ve probably run through most of what I’d recommend to troubleshoot this. I don’t experience this issue with my Volt 176 but doing some searching I found a thread that it could be Chrome related? Worth a shot

    On Chrome URL

    type “chrome://flags/”

    Goto > “Allow WebRTC to adjust the input volume” = DISABLE (set to disable)




  • Full stack is the way to go - at least to a degree such that you can understand and appreciate e2e designs, patterns, anti patterns, efficiencies, etc.

    I’d say a good way to start would be to find a project you’re interested on GitHub and check it out, play with it, and if you find something you want to change, add, or remove, just jump right in and submit a PR!

    I’ll share one of my projects I put together for a buddy’s makerspace startup that we’ve open sourced such that it can benefit from community involvement as they grow. It’s a fun little playground that’ll give you experience with a modernized Python full-stack application, designed to run on a raspberry pi, and containerized with Docker. Enjoy!

    https://github.com/MakUrSpace/mission-control




  • nate3dtoPython@programming.devVenv pandoc issue
    link
    fedilink
    arrow-up
    3
    ·
    2 months ago

    Okay perfect, just wanted to check.

    Next I’d say check your venv to verify the pandoc binary is indeed there:

    find $VIRTUAL_ENV -name pandoc
    

    If it’s not there, you should be able to install it by entering a python shell from your venv and do:

    import pypandoc
    pypandoc.download_pandoc()
    

    Hopefully that’s able to resolve it for ya. Venv should be at the front of your path so it should prefer bins from there.