MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. karsten13
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 1
    • Followers 3
    • Topics 8
    • Posts 512
    • Groups 1

    karsten13

    @karsten13

    144
    Reputation
    1.1k
    Profile views
    512
    Posts
    3
    Followers
    1
    Following
    Joined
    Last Online

    karsten13 Unfollow Follow

    Best posts made by karsten13

    • 3rd-Party-Modules project now part of MagicMirrorOrg

      We’re happy to announce that KristjanESPERANTO’s 3rd-party modules repository has found a new home at MagicMirrorOrg.

      Thank you, Kristjan, for donating your repository to the public and for all the work you’ve put into it.

      We have (hopefully) updated all links:

      • Github repository: https://github.com/MagicMirrorOrg/MagicMirror-3rd-Party-Modules
      • 3rd-party-modules website: https://modules.magicmirror.builders/
      • 3rd-party-modules json file: https://modules.magicmirror.builders/data/modules.json

      In the medium term, we plan to replace the currently used wiki with a different onboarding process for 3rd-party modules.

      posted in Websites
      karsten13K
      karsten13
    • MMM-RepoStats

      Hi,

      this is my first MM module and may others find it useful :)

      Download and infos: MMM-RepoStats

      It’s about repository statistics for Docker, GitHub or GitLab repositories:

      example_3_types.jpg

      GitLab with private data (access token needed):

      gitlab_with_token.jpg

      Let me know if something is missing or not solved in the right way, any feedback is appreciated.

      Thanks,

      Karsten.

      posted in Utilities
      karsten13K
      karsten13
    • Raspberry Pi 5 out with PCI Express

      german video: https://www.youtube.com/watch?v=mO-ytowm3XU

      posted in Hardware
      karsten13K
      karsten13
    • RE: Questions about update

      @bugsounet said in Questions about update:

      Its very poor to read this from a developer

      is there a difference between running an old system and running a public forum without https?

      posted in Troubleshooting
      karsten13K
      karsten13
    • MMM-Flights

      A new module showing flights in a defined area.

      I know there are at least 2 modules out using the same api, but this one additionally shows the planes on a map.

      Git Repo: https://gitlab.com/khassel/MMM-Flights

      For installation instructions and config options visit the above url.

      posted in Transport
      karsten13K
      karsten13
    • RE: Adds Blocking Posts

      @mumblebaj

      These are the “carbon” ads added by @MichMich, which probably still serve as a small source of income for him. I won’t turn them off without consulting him.

      This ad can easily be hidden with an ad blocker in your browser or, for example, with “AdGuard Home” or similar tools.

      posted in Forum
      karsten13K
      karsten13
    • RE: Automatic checking of all MagicMirror² modules

      @KristjanESPERANTO said in Automatic checking of all MagicMirror² modules:

      karsten13 has already suggested the GitHub API and I have tested it, but if you make requests for 1000 modules you’ll got blocked quickly. I haven’t found another good approach yet.

      2 ideas:

      • did you try to authenticate with a user before making the api requests? AFAIR we solved a similar problem at work with authentication …
      • if first idea doesn’t work an ugly solution is to work with e.g. a timer or sleep statement because these infos are not changed very often this could be a long running nightly job
      posted in Development
      karsten13K
      karsten13
    • RE: What is your backup and restore method?

      my approach …

      The following script must be executed in the magicmirror folder and creates another script restore.sh. This result script should be saved (on my server it is under git control) and can be executed (again in the magicmirror folder) to restore the old system (or bringing the old config to a new system).

      #!/bin/sh
      
      base="$(cd "$(dirname "$0")" && pwd)"
      
      restore="$base/restore.sh"
      config="${1:-config/config.js}"
      css="css/custom.css"
      modules="modules"
      
      # Tests
      [ -f "$base/$config" ] || (echo "config.js does not exists" && exit 1)
      [ -f "$base/$css" ] || (echo "custom.css does not exists" && exit 1)
      [ -d "$base/$modules" ] || (echo "modules directory does not exists" && exit 1)
      
      
      echo "#!/bin/sh" > $restore
      echo "" >> $restore
      echo "base=\"\$(cd \"\$(dirname \"\$0\")\" && pwd)\"" >> $restore
      
      echo "" >> $restore
      
      echo "mkdir -p \$base/config" >> $restore
      echo "mkdir -p \$base/css" >> $restore
      echo "mkdir -p \$base/modules" >> $restore
      
      echo "" >> $restore
      
      echo "cat > \$base/$config <<\"EOF\"" >> $restore
      cat <$base/$config >> $restore
      echo "EOF" >> $restore
      echo "" >> $restore
      
      echo "cat > \$base/$css <<\"EOF\"" >> $restore
      cat <$base/$css >> $restore
      echo "EOF" >> $restore
      echo "" >> $restore
      
      for dir in $(find "$modules" -maxdepth 1 -mindepth 1 -type d)
      do
        [ -f "$dir/.git/config" ] && mods="$mods $(cat $dir/.git/config | grep 'url = ' | sed 's|.*url = ||g')"
      done
      
      for repo in $mods
      do
        echo "cd \$base/$modules && git clone $repo" >> $restore
      done
      
      echo "" >> $restore
      
      for repo in $mods
      do
        moddir="$modules/$(echo $repo | sed -r 's|.*\/(.*)|\1|g;s|.git||g')"
        [ -f "$base/$moddir/package.json" ] && echo "cd \$base/$moddir && npm install" >> $restore
      done
      
      echo "Created restore script $restore" 
      
      chmod +x $restore
      
      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: delete account

      @sdetweil

      I was able to delete the account.

      posted in Forum
      karsten13K
      karsten13
    • RE: ISS tracker

      @Manu85

      e76334f2-66a1-459e-9be9-1720aa598d77-grafik.png

      coming soon …

      posted in Requests
      karsten13K
      karsten13

    Latest posts made by karsten13

    • RE: Develop MagicMirror the easy way — all in one workspace

      @HeikoGr

      Thanks! Your configuration inspired me to write down and update my own.

      I don’t mean to hijack your thread, but since development environments are always a matter of personal preference, I thought I’d share this as an alternative.

      posted in Development
      karsten13K
      karsten13
    • RE: News Feed Source Title and Publish Date missing a character

      this is now fixed with https://github.com/MagicMirrorOrg/MagicMirror/pull/3946 and will be in the next release (Jan 1st)

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: News Feed Source Title and Publish Date missing a character

      @jca2112

      I opened https://github.com/MagicMirrorOrg/MagicMirror/issues/3944

      I did not look into details, the changes made in this file caused this.

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: News Feed Source Title and Publish Date missing a character

      @jca2112

      this is a bug introduced with last mm version.

      Let me know if you are willing to open an issue here, otherwise I will do …

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: MMM-ISS-Live error 153

      this is unrelated to mm, the default url used in the module is https://www.youtube.com/embed/yf5cEJULZXk?si=Dx852YRN5q6NHj0K and I see the same error 153 in my browser.

      Clicking on “Watch video on YouTube” will move you to https://www.youtube.com/watch?v=yf5cEJULZXk with the content “This live stream recording is not available.”

      So this NASA stream is at least currently not available …

      Maybe of interest for @KristjanESPERANTO

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Official Bullseye OS 32 Bit for Raspberry Pi 3B

      @schlomm

      you linked the lite versions, for getting the version with desktop lite must be replaced by full in the urls …

      posted in General Discussion
      karsten13K
      karsten13
    • RE: MMM-PlexNowPlaying

      @Nneuland

      if See below for more Configuration Options is really in your config remove it …

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: HDMI turns on without movement

      @sdetweil said in HDMI turns on without movement:

      @karsten13 have you had a chance to test universal pir on Trixie yet?

      I’m on it …

      @Hobbes-0 said in HDMI turns on without movement:

      I tested the offCommand directly in the Terminal, the monitor goes off, and again after a minute or so goes back on. So this does not come from the MM.

      @sdetweil so this problem is not related to universal pir or mm

      I tested universal pir on mmos, which is on trixie but uses the os lite version, mm and labwc/wayland are started as containers.

      I cannot reproduce the unexpected activation there.

      (I found another permission problem which I will fix later) fixed

      Other difference between trixie and bookworm is a breaking version change of gpiomon so you have to use different commands:

      bookworm: gpiomon -r -b gpiochip0 23
      trixie: gpiomon -e rising -c 0 23

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Help to install bluelinky

      @sdetweil said in Help to install bluelinky:

      bluelinky wans node up to 20.9 or 22, and NOT ANY 21

      message comes from mm, he is on an outdated version 2.29.0 …

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Cannot find module '#server_functions'

      @chrisfr1976

      #server_functions is an alias for js/server_functions.js which is defined in package.json:

              "imports": {
                      "#module_functions": {
                              "default": "./js/module_functions.js"
                      },
                      "#server_functions": {
                              "default": "./js/server_functions.js"
                      }
              },
      

      Because axios is the only diff your package.json should contain above lines.

      I have no idea anymore (maybe corrupt sd card).

      posted in Troubleshooting
      karsten13K
      karsten13