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

    savona

    @savona

    11
    Reputation
    610
    Profile views
    15
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    savona Unfollow Follow

    Best posts made by savona

    • Using a PIR sensor to turn off the monitor

      I wrote this tutorial up after I got my PIR sensor working and though it might help some folks. If not admins can feel free to delete this thread.

      https://www.putorius.net/2019/01/using-pir-sensor-for-motion-detection.html

      posted in Tutorials
      S
      savona
    • Installing MagicMirror in a Docker container

      I had a need to run MagicMirror in server mode in a docker container to do some testing. Since I am fairly new to docker I had to do a lot of google searching to get everything working (especially the volumes and networking). I wrote this how-to to guide you through the docker install process, pulling and running the MagicMirror image, and basic configuration. I hope someone finds it useful.

      https://www.putorius.net/2019/01/testing-magic-mirror-running-in-docker.html

      posted in Tutorials
      S
      savona
    • RE: 2318 commits behind...

      I just blew away the docker image and did a new pull and it is fixed and on 2.6.0.

      grep version package.json

      “version”: “2.6.0”,

      posted in Troubleshooting
      S
      savona
    • RE: Considering taking donations to support the MagicMirror project. Interested in your thoughts!

      You should make the forum have ads if the person is not logged in. That should generate some income.

      Also a voluntary donation is easy to setup and I really enjoyed the project so far and would be willing to give a donation as I think most would.

      Another option would be have paid plugins. For example I have been bashing my head trying to get the analytics plugin to work. I would be willing to pay for it.

      Good luck and I hope everything works out for you.

      posted in MagicMirror
      S
      savona

    Latest posts made by savona

    • RE: Considering taking donations to support the MagicMirror project. Interested in your thoughts!

      You should make the forum have ads if the person is not logged in. That should generate some income.

      Also a voluntary donation is easy to setup and I really enjoyed the project so far and would be willing to give a donation as I think most would.

      Another option would be have paid plugins. For example I have been bashing my head trying to get the analytics plugin to work. I would be willing to pay for it.

      Good luck and I hope everything works out for you.

      posted in MagicMirror
      S
      savona
    • RE: Google Analytics

      I have tried this on multiple installations and it just seems broken. Maybe google changed the API or something. I also do not think the original creator is coming back.

      There should be a way to mark projects dead. I wasted a good bit of time on this.

      posted in Requests
      S
      savona
    • Installing MagicMirror in a Docker container

      I had a need to run MagicMirror in server mode in a docker container to do some testing. Since I am fairly new to docker I had to do a lot of google searching to get everything working (especially the volumes and networking). I wrote this how-to to guide you through the docker install process, pulling and running the MagicMirror image, and basic configuration. I hope someone finds it useful.

      https://www.putorius.net/2019/01/testing-magic-mirror-running-in-docker.html

      posted in Tutorials
      S
      savona
    • RE: Google Analytics

      @clemy I am having the same issue. I would LOVE to have this working!

      posted in Requests
      S
      savona
    • Using a PIR sensor to turn off the monitor

      I wrote this tutorial up after I got my PIR sensor working and though it might help some folks. If not admins can feel free to delete this thread.

      https://www.putorius.net/2019/01/using-pir-sensor-for-motion-detection.html

      posted in Tutorials
      S
      savona
    • MM Starts before network is up

      I am using pm2 and it’s startup scripts to start MM on boot on my pi 3. I tried several different ordering techniques including:

      [Unit]
      Description=PM2 process manager
      Documentation=https://pm2.keymetrics.io/
      Wants=network-online.target
      After=network.target network-online.target
      ....
      [Install]
      WantedBy=multi-user.target network-online.target
      

      For some reason nothing works and I keep getting auth errors on my modules and a constant Loading text in my calendar.

      I resorted to writing this in my MM startup script to wait for a ping:

      ((count = 100))
      while [[ $count -ne 0 ]] ; do
          ping -c 1 8.8.8.8
          rc=$?
          if [[ $rc -eq 0 ]] ; then
              ((count = 1))
          fi
          ((count = count - 1))
      done
      
      if [[ $rc -eq 0 ]] ; then
      	cd ~/MagicMirror
      	DISPLAY=:0 npm start
      fi
      

      Anyone else have any ideas?

      posted in Troubleshooting
      S
      savona
    • RE: 2318 commits behind...

      I just blew away the docker image and did a new pull and it is fixed and on 2.6.0.

      grep version package.json

      “version”: “2.6.0”,

      posted in Troubleshooting
      S
      savona
    • RE: 2318 commits behind...

      @idoodler No I did not change the default directory at all. That is why this is so odd to me.

      posted in Troubleshooting
      S
      savona
    • RE: 2318 commits behind...

      @bhepler maybe.

      but I saw that the originator of the docker image said it was updated daily with a cronjob on this post:

      https://forum.magicmirror.builders/topic/5316/automatic-docker-build/2

      posted in Troubleshooting
      S
      savona
    • RE: 2318 commits behind...

      @bastilimbach Any help?

      posted in Troubleshooting
      S
      savona