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

    Posts

    Recent Best Controversial
    • RE: Newsfeeder is going way to fast when showing news

      We found the reason for that issue. A fix is merged into the develop branch.

      posted in Troubleshooting
      JalibuJ
      Jalibu
    • RE: MMM-NINA

      @majorc Habe ich schon mal gesagt, wie sehr ich CSS hasse? :face_with_symbols_on_mouth:
      Probier nochmal

      posted in Utilities
      JalibuJ
      Jalibu
    • RE: MMM-NINA

      @majorc zieh mal bitte die aller neuste Version (1.3.1). Das Alignment sollte jetzt automatisch funktionieren und besser sein.

      posted in Utilities
      JalibuJ
      Jalibu
    • RE: MMM-NINA

      Hi Leute,

      ich habe eben ein neues Update veröffentlicht. Damit können nun auch mehrere Städte/Gemeinden gleichzeitig abgerufen werden.
      Da ich das Modul im Header/Top Bereich verwende, habe ich zusätzlich noch ein weiteres Theme erstellt.

      Viel Spaß beim Ausprobieren. Freue mich über Feedback.

      posted in Utilities
      JalibuJ
      Jalibu
    • RE: Module Development in TypeScript

      @strawberry-3-141
      as you say, it is a very simple and incomplete version. And you can not install them as a package or use them in your modules, except if you copy the file.
      In fact, that’s the real reason I created the typings on DefinitelyTyped.
      You can find the sources here and the npm module here.

      posted in Development
      JalibuJ
      Jalibu
    • Module Development in TypeScript

      Hello developers,

      some time ago I switched all my modules to TypeScript (feel free to check out MMM-Jast as a reference implementations).
      Especially for more complex modules, TypeScript brings huge advantages from my point of view.
      Since the MagicMirror platform doesn’t provide its own TypeDefinitions, I made them available via the DefinitelyTyped library.
      For interested developers I also plan to provide some kind of TypeScript template module soon.

      .
      ├── src
      │   └── backend
      │       ├── Backend.ts
      │       ├── BackendUtils.ts
      │       └── ...
      │   └── frontend
      │       ├── Frontend.ts
      │       ├── FrontendUtils.ts
      │       └── ...
      │   └── types
      │       ├── ABC.ts
      │       └── ...
      └── templates
      │       ├── main.njk
      │       └── ...
      └── translations
      │       ├── de.json
      │       ├── en.json
      │       └── ...
      └── MMM-XYZ.js (generated)
      └── node_helper.js (generated)
      └── MMM-XYZ.css
      └── tsconfig.json
      └── rollup.config.json
      └── README.md
      └── package.json
      

      Question: Are there any other developers among you who are interested in joining my “TypeScript” initiative? A little support from another developer in maintaining the type definitions would be helpful.

      posted in Development
      JalibuJ
      Jalibu
    • RE: MMM-Fuel zeigt nur Lade...... MMM-Fuel show only load......

      @biebermann Weil Zertifikate ein Ablaufdatum haben. Danach wird ihnen nicht mehr vertraut und gesicherte Verbindungen abgelehnt.

      posted in Transport
      JalibuJ
      Jalibu
    • RE: MMM-Fuel zeigt nur Lade...... MMM-Fuel show only load......

      @biebermann bei mir funktioniert noch alles. Scheint also kein allgemeines Problem zu sein.

      posted in Transport
      JalibuJ
      Jalibu
    • RE: MMM-RAIN-MAP (new: version 2.x)

      Hi @gabrielm9,

      the latest version 2.5.x supports different color schemes now.

      posted in Utilities
      JalibuJ
      Jalibu
    • RE: MMM-RAIN-MAP (new: version 2.x)

      Hi @gabrielm9 ,
      contribution is always welcome :-)

      You have to compile the Typescript sources using npm run build.

      Let me know, if you have problems. I‘m waiting for your PR

      posted in Utilities
      JalibuJ
      Jalibu
    • RE: My third MagicMirror, InfoScreen

      @uros76 :thumbs_up:
      MMM-Jast :smiling_face_with_heart-eyes: ;-)

      posted in Show your Mirror
      JalibuJ
      Jalibu
    • RE: Async Functions inside node_helper.js

      https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Asynchronous/Async_await

      posted in Development
      JalibuJ
      Jalibu
    • RE: [MMM-JaST] Just another Stock Ticker (new: version 2.x)

      @uros76 why don’t you use @sdetweil 's Config Edit Tool MMM-Config?
      MMM-Jast has full support for it.

      posted in Utilities
      JalibuJ
      Jalibu
    • RE: [MMM-JaST] Just another Stock Ticker (new: version 2.x)

      @uros76 either you prepare/autogenerate the config.js in a preflight with the stocks of your file before you start the mirror or I am afraid that it won’t work without programming efforts in the module.

      Can you explain me the use case?

      posted in Utilities
      JalibuJ
      Jalibu
    • RE: [MMM-JaST] Just another Stock Ticker (new: version 2.x)

      Hi @uros76,
      thank you for the beer :-)
      What do you mean with “different file”? Should that be a central/remote file which should be loaded over the internet from different mirrors or just another local file on the same system?

      Prost!

      posted in Utilities
      JalibuJ
      Jalibu
    • RE: MMM-Jast 2 Tickers on top of each other

      Hi @ankonaskiff17 ,

      there are very simple answers to both of your questions ;-)

      1. Imagine the horizontal ticker like one long strip of text, which just moves/flies over your screen from the outer right to the outer left position:
        |<<- Stock1 - Stock2 - Stock3 - Stock4 |
        Now, if Stock4 reaches the left corner of your screen, there would be a gap on the screen to its right.
        That’s why there is a second “clone” of the ticker that fills that gap and moves right after the first one. Once the first one completely left the screen, it lines up again after the first one.
        With that, you get an infinite loop.

      2. Jast is built with TypeScript. What you see, is a minified and uglyfied, transpiler generated version of the module. If you are interested in the source code, just check the files in the /src folder.

      Please feel free to submit a Pull Request, if you found a way to avoid that the module runs out of the screen. I think a minor css change should fix that.

      posted in Troubleshooting
      JalibuJ
      Jalibu
    • RE: MMM-Jast jittery

      @ankonaskiff17 said in MMM-Jast jittery:

      jitteriness

      I assume you‘re using horizontal scrolling?
      I sometimes have that problem, too. As it is not that bad on my Raspi4, I thought it was a rendering performance problem.

      What‘s your hardware?

      posted in Troubleshooting
      JalibuJ
      Jalibu
    • RE: Warn-App NINA

      @sdetweil said in Warn-App NINA:

      @jalibu sorry not clear

      you said this topic

      then linked another

      This topic was a request for NINA support. As I now added a module for that, this request topic could be marked as “solved” :-)

      posted in Requests
      JalibuJ
      Jalibu
    • RE: Warn-App NINA

      @sdetweil please mark this topic as “solved”.
      => Module Forum Thread https://forum.magicmirror.builders/topic/15429/mmm-nina

      posted in Requests
      JalibuJ
      Jalibu
    • MMM-NINA

      This is a client implementation for the German emergency and disaster warning system “NINA”.

      NINA Warnapp
      Mit der Notfall-Informations- und Nachrichten-App des Bundes, kurz Warn-App NINA, erhalten Sie wichtige Warnmeldungen des Bevölkerungsschutzes für unterschiedliche Gefahrenlagen wie zum Beispiel Gefahrstoffausbreitung oder einen Großbrand. Wetterwarnungen des Deutschen Wetterdienstes und Hochwasserinformationen der zuständigen Stellen der Bundesländer sind ebenfalls in die Warn-App integriert.
      Quelle: www.bbk.bund.de

      d0d98d02-74ba-449d-ba74-bfd280e44d29-image.png

      7ba390e3-ede1-4947-be9e-7129eb3bc876-image.png

      Weitere Informationen und eine Anleitung zum Download auf Github.
      Feedback erwünscht.

      Support
      Wenn euch meine Arbeit gefällt und ihr mich unterstützen möchtet, dann freue ich mich über einen Kaffee von euch.
      Buy Me A Beer

      posted in Utilities
      JalibuJ
      Jalibu
    • 1 / 1