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

    Posts

    Recent Best Controversial
    • RE: 8kb "compliments module" works. 204kb "compliments module" fails to display. how to fix?

      @steed Although I think your way should have worked out if not for a small error (below), @bhepler 's advice is much better, because otherwise you will have a problem as soon as you want to update the mirror software.
      The module’s own .js files themselves are part of the git workflow, if you change them locally and are not common to using git, you’ll be in a fine mess later on and will not know what to do.
      Therefore, it’s ideal to use the config.js or custom.css for changes because they will be ignored by the git workflow.

      However in your approach you have only one small mistake

      	remoteFile: "~/home/pi/MagicMirror/modules/default/compliments/remote_compliments.json",
      
      

      should read

      	remoteFile: "/home/pi/MagicMirror/modules/default/compliments/remote_compliments.json",
      
      

      The “~” leads to your home/pi directory therefore it was redundant and the system was looking for /home/pi/home/pi/…

      OR just use this

      	remoteFile: "remote_compliments.json",
      
      
      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Contribute to a module. Volunteers wanted! Easy!

      n1016 - Moers, Germany
      n957 - Duisburg, Germany
      n973 - Krefeld, Germany
      n2011 - Mülheim/Ruhr, Germany

      …yes, with an ü!

      Now you’re in a fine mess… hehe! :face_with_stuck-out_tongue_closed_eyes:

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: [MMM-Showtimes] Local Cinema Showtimes

      @seann
      My suggestion: Fire up the mirror UI on your browser, press F12, move the move over your module, right click -> inspect.
      Then look at the styles section and play with switching styles on and off.
      Then you can use whatever you need in your own css overwriting main.css in your module.

      posted in Entertainment
      lavolp3L
      lavolp3
    • RE: 8kb "compliments module" works. 204kb "compliments module" fails to display. how to fix?

      @steed You can outsource all data you want to show into one .json file and use day times as sections. It’s described in the readme of the module.
      E.g. I created a .json with random citations just including them all into one file in the anytime section

      {
          "anytime" : [
          
          ]
      }
      
      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: About to build for the first time, dont understand the point of the OS.

      As @broberg said: Freedom! You can do anything and you can use the OS itself for any further Raspbian things you would like. (A mirror as a jdownloader host? possible… Measuring temp in bath room directly using the mirror? possible…)
      There are so many possibilities…

      Also, you don’t necessarily have to throw any html or setup a web server. It’s all done automatically at the installation.
      Yes, if you want to go forward there’s a lot to learn, but I have contributed / played with a lot of modules already and not written more than 3 lines of html (albeit lots of JS)

      posted in General Discussion
      lavolp3L
      lavolp3
    • RE: MMM-DarkSkyForecast - Yet ANOTHER weather module

      @cr4z33 it is shown if you include

      concise: false 
      

      into the config.
      That’s the way to show more info.
      If you want to ONLY show the wind direction you would have to manipulate the .js file manually in line 429

            windSpeed: Math.round(speed) + " " + this.getUnit("windSpeed") + (!this.config.concise ? " " + this.getOrdinal(bearing) : ""),
      

      into

            windSpeed: Math.round(speed) + " " + this.getUnit("windSpeed") + " " + this.getOrdinal(bearing),
      

      In my case this unfortunately messes up the layout a bit. But it seems to work.

      posted in Utilities
      lavolp3L
      lavolp3
    • RE: i need help getting the dailybibleverse module set up.

      have you tried another region or just removing the newsfeed. Just an idea but maybe this module is out of the picture…

      Also, the newsfeed module only shows the book because it searches in the xml the and <updated> part. If you can get the newsfeed module to show more (the <content> part) it could work</p>

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Can't start MM as kiosk only server

      @warmyster if it is still about this module, maybe @Sean can help since it’s his module

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: New Install From Raspbian Stretch

      @sebien0077 Have you done a reboot? I hear they can do wonders!

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: has anyone used any of the charting tools, like chartjs?

      @sdetweil Well well I was googling “chartjs” about the minute you wrote this down today! Ha! Great.
      I’d like to use it to make some amendments to MMM-rain-forecast and maybe get in my own graph.
      Have you seen MMM-chart, a MM cahrt template, which also seems to have examples of applications like yours.
      I haven’t taken a close look into any of it but I’ll do soon.
      Cheers and good luck!

      posted in General Discussion
      lavolp3L
      lavolp3
    • RE: Can't start MM as kiosk only server

      well… looks good doesn’t it? Should work now.

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Can't start MM as kiosk only server

      @warmyster Or try disabling MMM-AssistantMk2 and run MM again.

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Can't start MM as kiosk only server

      @warmyster said in Can't start MM as kiosk only server:

      App threw an error during load
      Error: Failed to load gRPC binary module because it was not installed for the current system
      Expected directory: electron-v2.0-linux-arm-glibc
      Found: [electron-v4.0-linux-arm-glibc, node-v67-linux-arm-glibc]

      It seems that some module inside MMM-AssistantMk2 is compiled against electron v2.0. If above suggestion does not work I would recommend installing the whole module again. Delete the folder, do a git clone, git pull and npm install again.

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: New Install From Raspbian Stretch

      @sebien0077 better leave lodash alone is my suggestion. YOur mirror should work with this vulnerability as well.

      HOwever, you can of course try it out IF YOU DARE!!!
      Go on the presented link and do as suggested.

      npm install lodash@4.17.5
      

      (that’s what I would try)

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: New Install From Raspbian Stretch

      Guys be careful with the npm vulnerabilities!
      It’s not advisable to always fix all of them.
      E.g. if a vulnerability wants to have a most recent version of an important dependency, fixing it might even break your working MM because MM can’t work with this new dependency.

      If you’re not completely sure what you’re doing then leave them.
      They are not errors after all, your modules should work with these vulnerabilities as well.

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: MMM-DarkSkyForecast - Yet ANOTHER weather module

      EDIT: SORRY, nevermind… small mistake in my latitude gave wrong values…

      posted in Utilities
      lavolp3L
      lavolp3
    • RE: MMM-SystemStats (cpu temp/load, fre ram ...)

      @djuscha I think you cannot move a module itself. Usually you need to use the main container inluding the content. Here you can try the td with class “title”.

      .MMM-SystemStats .title  {
         margin-right: 10px;
      
      }
      

      OR the table itself

      .MMM-SystemStats table {
         margin-right: 10px;
      
      }
      
      posted in Utilities
      lavolp3L
      lavolp3
    • RE: Google maps API key

      @banandze I have reactivated the module, but am thankful to anyone with more knowledge like the developer answering this.

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Google maps API key

      @ooom416354
      I THINK you can use the Google maps API unlimited for this purpose for your $200-but-free-subscription. You don’t need to consider limiting to a few calls per day. It is a bit oddly presented by google.

      Please confirm someone.

      0_1547047215931_859c8052-0177-46e5-8f05-5a576158c17f-image.png

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Google maps API key

      I don’t understand. You can use MMM-MyCommute with a free Google API can’t you? I used it for months, but not currently.
      Are we talking about the same module/API?

      @ooom416354 MMM-MyCommute should be perfectly suitable for you

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • 1 / 1