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

    Posts

    Recent Best Controversial
    • RE: UpVote posts....show some love.

      Another topic which is somehow related to give feedback/appreciation

      I recognized this behaviour in a lot of my repos and after viewing the profile of those users it looks like a scheme. So

      Why do people fork repositorys on github instead of starring them?

      Fork a repo: You fork a repo if you want to make changes to the original codebase and use the fork or create a pull request.

      Star a repo: You star a repo if you like it. It’s similar to upvote on the forum or likes on facebook, youtube, … and gives the developer kind of credit for his work.

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: Input...What do you think?

      @cowboysdude you can access the global config by config.timeFormat instead of the local module config this.config.timeFormat

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Clocks and Two Time Zones

      @roramirez i tested it back then (also commented on github) and it worked for me in electron, I tried it again now and it still works

      0_1491675620887_clock.PNG

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Npm intstall

      @Damian if you dont intend to develop on modules you can also just do npm install --productive, which just downloads those ones needed for production and doesn’t download the development dependencies.

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: Module Developer Challenge - I surrender!

      @Sean actually the problem starts even before the cache. the way magicmirror is designed in the update module function is, that it will only rerender if there was something changed in the dom. But your solution should still fix the problem.

      Another similar way would be to put a “seed” to the dom element itself insetad of the url, as i suggested in the iframe reload module, which fixed the reload problem there.

      after line 147

      img.setAttribute("timestamp", new Date().getTime());
      

      which will create an dom element like:

      < img class="photo" timestamp="1508693514656" src="http://api.usno.navy.mil/imagery/earth.png?date=today" />
      
      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Noob here. Need help with configuring modules

      @relluts just remove it from the config.js file

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: WE WANT YOU! [New Moderators]

      @tosti007 as @yawns mentioned I’m busy with my bachelor thesis and thereafter moving into another city, starting a job etc., on the other side I’m currently online anyways to support my testers. I would just behave and helping as I am doing now.

      I wouldn’t say no, but also I wouldn’t explicitly applying for it.

      posted in Forum
      strawberry 3.141S
      strawberry 3.141
    • RE: call API (no CORS), used to do it with php proxy

      @doubleT personally i wouldn’t take php in the middle just to request the webiste, you could do that in the nodehelper directly

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Trouble with config file, Error Create Config File

      @twosix in all your examples you’re escaping the closing quote

      {
        symbol: "calendar-check-o ",
        url: "webcal://p55-calendars.icloud.com/published/2/TDWYwJjbv2BpM3HLxxxxxxxxxxxxxxxxxvZM-3TNpXNgZXsi192SI7M6pxxxxxxxxxxxxxxxxxxxxxxxXZCkcApre7Kg\"
      }
      

      you can see there that the next line is green which indicates that the string isn’t closed there probably. This happen because of the \ right in front of the quote character.

      If the backslash doesn’t belong to your string remove it, if you need the backslash you have to escape the backslash by adding a second. like this:

      {
        symbol: "calendar-check-o ",
        url: "webcal://p55-calendars.icloud.com/published/2/TDWYwJjbv2BpM3HLxxxxxxxxxxxxxxxxxvZM-3TNpXNgZXsi192SI7M6pxxxxxxxxxxxxxxxxxxxxxxxXZCkcApre7Kg\\"
      }
      

      here you can see that the closing curly brace is no longer highlighted in green because the string is closed properly.

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: The 32" Inch Mirror

      @cowboysdude Don’t forget to post some pictures when you made some progress :)

      there are only few steps to integrate the voice control to someones modul cough https://github.com/fewieden/MMM-voice/blob/master/DEVELOPER.md

      posted in Show your Mirror
      strawberry 3.141S
      strawberry 3.141
    • 1
    • 2
    • 10
    • 11
    • 12
    • 13
    • 14
    • 53
    • 54
    • 12 / 54