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

    Posts

    Recent Best Controversial
    • RE: MMM-MailMessage feature

      @ge You can possibly raise a new feature request on the modules Github page. Module was last updated 2 years ago though. You can clone the module and make the additions yourself as well. 😉

      posted in Feature Requests
      mumblebajM
      mumblebaj
    • RE: new Raspi OS release

      @sdetweil So, I have not seen any issues thus far other than having to figure out the screen blanking for me on Labwc, I have to test the wlopm, but for now I have switched back to Wayfire. No other issues in logs etc.

      posted in General Discussion
      mumblebajM
      mumblebaj
    • RE: small outburst - opencv

      @monark Maybe just my pennies worth as well, a lot of the module developers develop modules for own use and they choose to share it with community. A lot of the plugins that get used are not made by the module developers, OpenCV being case-in-point. It is a plugin and it has its own complexities.

      As Sam mentioned earlier, MM is a learning platform and users of the platform get to learn as they go along.

      I can understand the pain you having but the learning is what makes it fun, solving problems is what keeps most users going with the platform.

      posted in General Discussion
      mumblebajM
      mumblebaj
    • RE: Exclude certain events from Calendar

      @theaddies said in Exclude certain events from Calendar:

      excludedEvents [ ‘Workout’],

      I might be wrong but I think you might be missing a colon. It should read like this: excludedEvents: [ 'Workout'],

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • RE: Error in DNews (copy of PNews)

      @johans Have a look at this thread.
      https://forum.magicmirror.builders/topic/15778/fix-for-black-screen-in-2-16-and-later/11

      Your error Error: Cannot find module 'xml2js'

      posted in Development
      mumblebajM
      mumblebaj
    • RE: Any plan to replace "request" and "moment"?

      @sdetweil I have now found it in the /node_modules/luxon/build/global

      I should have searched some more. :beaming_face_with_smiling_eyes:
      But, yes, you are correct. You can just point to that location.

      posted in Feature Requests
      mumblebajM
      mumblebaj
    • RE: RSS newsfeed ‘en français’

      @earnestrichards You could try my MMM-NewsAPI and selet country fr to get all French news.
      https://github.com/mumblebaj/MMM-NewsAPI.git

      You could also try MMM-NewsFeed by @bugsounet .
      https://github.com/bugsounet/MMM-NewsFeed.git

      posted in System
      mumblebajM
      mumblebaj
    • RE: So I have a question about backup

      @sdetweil Right now, not. MM runs perfect as is. I’ll leave it for now. :beaming_face_with_smiling_eyes:

      posted in General Discussion
      mumblebajM
      mumblebaj
    • RE: Voice assistant

      @sdetweil All the best Sam. Get well soon.

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • RE: Help with updateDom

      @sdetweil Thanks Sam. Managed to resolve this. Everything works fine now and plays well with the other modules.

      posted in Development
      mumblebajM
      mumblebaj
    • RE: MMM-MovieListings

      @sdetweil From package.json

      cc57647c-1921-4def-8b5d-af885ec6775f-image.png

      posted in Entertainment
      mumblebajM
      mumblebaj
    • RE: MMM-NewsAPI after MM2.25.0 update

      @sdetweil Thanks for the assist with this one Sam but my module does list the dependencies on Github. Check it out.

      https://github.com/mumblebaj/MMM-NewsAPI

      posted in System
      mumblebajM
      mumblebaj
    • RE: Merry Christmas and Happy New Year!

      @cowboysdude Same to you too from South Africa.

      posted in General Discussion
      mumblebajM
      mumblebaj
    • RE: MMM-Strava stopped updating

      @levon That message just says that the module will not work on an older version of the mirror. It is not an error. Are there any other errors in NPM? Can you check the developer window for any errors, Do a Ctrl + i which should open the developer window. MMM-Strava seems to be working fine for me.

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • RE: MMM-PGA

      @swvalenti The issue is in the ESPN.js at line 49 or so. It is looking for defendingChampion.athlete but there isn’t one and it fails. I see you have created an issue on GitHub but sometimes the guys abandon their modules. Maybe the developer responds to you issue. You could change line 49 to the below and it should work.

      I would have done it this way:

      tournament.defendingChamp = event.defendingChampion ? event.defendingChampion.athlete.displayName : ""
      

      94340480-6e5a-488b-be15-6a18dc792f4d-image.png

      posted in Sport
      mumblebajM
      mumblebaj
    • RE: ChatGpt developed Module MMM-Dockerstat

      @Rags Welcome to the forum and great start.

      Have you tried to run the module and found any issues?

      • Node_helper.js must be named node_helper.js

      • Your modules defines a bunch of dependent modules in node_helper.js but none of these were installed when you built the module so anybody who clones the module will not get of the dependent modules installed as they are not mentioned in package,js.

      • You declare ‘./Logger’ but it is never used. Do you need it?

      If you fix the above issues the module starts. I do not run a Docker anywhere but the modules seems to working with the above issues fixed or at least it should get you going.

      Always try and run the module first and check for issues and fix them if you can

      posted in Development
      mumblebajM
      mumblebaj
    • RE: Recommend a Word of the Day module? (English)

      @mcgroo Have a look at this one.
      https://github.com/mumblebaj/MMM-WOTD

      has multiple language support etc.

      posted in General Discussion
      mumblebajM
      mumblebaj
    • RE: MMM-Strava stopped updating

      @levon Hi. Apologies for the late replies. Time difference. Can you check when last the tokens.js file was touched? That file is updated every time it does a call out to get data. Else I would suggest maybe just doing a git pull and npm install in the MMM-Strava folder. From the above replies I can’t see anything else that could be going wrong though.

      posted in Troubleshooting
      mumblebajM
      mumblebaj
    • RE: MMM-PGA Not Working

      @Notas1 You can get a working fork of the module here. I have recently made loads of changes to bring it to the new age. :-)

      You can have a try with it.

      posted in Sport
      mumblebajM
      mumblebaj
    • RE: ChatGpt developed Module MMM-Dockerstat

      @Rags Need to be bit more specific with what issues you are experiencing. If you are running you mirror with npm start then list the output from npm. Also check the developer console (shift + ctrl+i) and see if there are any errors there.

      posted in Development
      mumblebajM
      mumblebaj
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 2 / 6