MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. lavolp3
    3. Best
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    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: New Project! I think!

      Well there is an MMM-OpenHab module already.
      You might find a way to use it or expand it.

      Regarding speech commands: It might be possible to use one of the local speech recognition modules here (Lucy?) to send commands to the Openhab module or even to your local Openhab server. You wouldn’t have to use google then…
      Just a thought and not very much thought through…

      posted in General Discussion
      lavolp3L
      lavolp3
    • RE: MMM-AVStock

      For all you chart lovers and technical freaks out there the AVStock module now has fancy candle stick charts (also available in black+white).

      0_1549557513800_63b69a93-4691-4af4-8409-8caf97ba1df9-image.png

      Isn’t this just beautiful??
      Sorry, needed to beat the drum a bit.

      Planned PR’s:

      • Charts for 5min, 15min, 60min
      • include startdate and enddate for chart.
      • include max and min value labels in chart.
      posted in Productivity
      lavolp3L
      lavolp3
    • RE: pm2 doesn't start after mm update

      Hi Kurt,

      if I understand correctly your mirror doesn’t show up despite your pm2 “starting” it successfully!?

      the run-start.sh shell script seems to be the problem.
      This is the content:

      if [ -z "$DISPLAY" ]; then #If not set DISPLAY is SSH remote or tty
      	export DISPLAY=:0 # Set by defaul display
      fi
      electron js/electron.js $1
      

      I would assume electron has some problem starting…

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Minutely Rain forecast (for Germany)

      Thanks for the great hint @pjkoeleman !
      I have forked this and with a minor tweak it’s also possible to scrape german weather data.

      Now I just need to figure out how to put this in a graph as a MM module.
      If anyone can give me a hint for how to draw graphs, I’d highly apreciate it.

      posted in Requests
      lavolp3L
      lavolp3
    • RE: MM Error - .AppleDouble and UnhandledPromiseRejectionWarning

      @bolish First, try another one

      find . -maxdepth 2 -exec grep -nwl  .then 2>/dev/null {} +
      

      Promises are not always processed by a Promise function, but I also by calling something and then calling .then().
      Actually I know these bastards for two or three days now, so I’m far from being an expert

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: Wunderlist shuts down May 6th

      I’m interested as well.
      Let’s work on it first thing next year :-)

      posted in General Discussion
      lavolp3L
      lavolp3
    • RE: MMM-AVStock

      @bclinton11 Just read that DJI stopped working this April.
      So I don’t know either which works now. Can confirm that none of the above work.

      posted in Productivity
      lavolp3L
      lavolp3
    • RE: Complete Walkthrough - Install MagicMirror on a PC - Windows 7/10

      Thanks Mykle1 for this great tutorial. You are the man!
      Working great on Win 10 Pro 64 bit

      posted in Troubleshooting
      lavolp3L
      lavolp3
    • RE: DailyDilbert

      @maximillium I did it like this but had to search for a while as well.

      You can put this in your custom.css and use whatever value you prefer

      .MMM-DailyDilbert #dilbert-content {
        width: 900px;
      }
      

      A tip if you’re interested:
      If you open the mirror in your browser (I’m using chrome mirror_ip:8080) and open the developer’s console with F12 you can see all the css involved (in the “styles” tab). Then you can right-click on the image and press “investigate” or whatever it’s called in english and you can see all the css affecting this picture. You can even toggle properties on/off live. Just discovered all the possibilites with this function working on this problem.

      posted in Requests
      lavolp3L
      lavolp3
    • 1
    • 2
    • 3
    • 4
    • 5
    • 12
    • 13
    • 3 / 13