everything you find here is possible: http://developers.strava.com/docs/reference/
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-Strava
-
RE: MagicMirror is safe...
it’s not repo specific but attached to the user, see https://github.com/sdetweil
-
RE: MMM-Strava only shows achievements, nothing else?
what means
anything? Remains in loading state?Here the brackets are missing:
activities: ["ride"],And now the old wizard is tired and has to go to bed …
-
RE: MMM-Strava only shows achievements, nothing else?
you have to use my fork of MMM-Strava.
First goto yourmodulesfolder and remove the currentMMM-Stravasubfolder (or rename it).
Then in yourmodulesfolder executegit clone -b stats_incl_private_acts https://github.com/khassel/MMM-Strava.git.
You can use your current config in yourconfig.jsand addshowprivatestats: trueto use this new feature. -
RE: MMM-Strava only shows achievements, nothing else?
IMO this PR is only a workaround of a missing strava api function, I think they use it internally on their website, but they dont publish it … the workaround to calculate on your own is slow, loading my > #680 activities needs 20 sec. But I’m no js expert, may you can speed things up …
-
RE: MMM-Strava only shows achievements, nothing else?
did already a PR for this for MMM-Strava, but still not merged: https://github.com/ianperrin/MMM-Strava/pull/38
-
RE: MMM-Strava only shows achievements, nothing else?
Problem of strava api https://developers.strava.com/docs/reference/#api-Athletes-getStats
Get Athlete Stats (getStats) Returns the activity stats of an athlete. Only includes data from activities set to Everyone visibilty. -
RE: MMM-Strava only shows achievements, nothing else?
Have you any public activities in the connected strava account?
-
RE: Customized frames for MM
I’m using a standard photo aluminium frame for my mirror. The monitor covers only the bottom half of the mirror. The problem is that this construction needs to be placed on a board or something else, the monitor inside the frame is to heavy for the frame.

-
RE: Cooling Raspi
for raspi 4b, very clean solution and easy to open:
https://joy-it.net/en/products/RB-CaseP4+03B -
RE: Has anyone got MMM-Remote-Control working on MM 2.11 ?
There is a fix for this provided as PR here but still not merged. But you can apply the fix yourself.
-
RE: Backing up via GitHub repo
My answer is related to
I was wondering how I could backup my config and modules folder to a private repository on GitHub.So if you want to put
configandmodulesin one git repo without the other MagicMirror stuff, if found no other solution as doing it with such a “parent” construction as described … -
RE: Backing up via GitHub repo
you can do that with a git repo which is located above your
MagicMirrorgit repo.If you have a path structure e.g.
~/mm/MagicMirrorwhereMagicMirrorcontains the MagicMirror-git-repo goto~/mmand create a new git repo there withgit init. Create a.gitignorefile in~/mmand put the lineMagicMirrorin it so this subdir is ignored.Now you can add files or directories with
git add -f MagicMirror/config/config.js git add -f MagicMirror/modules/*Then commit.
-
RE: websocket is already in closing or closed state
don’t think that this error is related to an
index.jsfrom the MagicMirror core, so you can look which module has anindex.jswith >= 83 lines … or disable modules to catch the “bad” module … -
RE: Has anyone got MMM-Remote-Control working on MM 2.11 ?
what I told you in my last reply was the solution to use the
developimage.Now I tried to write down the other solution (how to patch a mm-file in a docker setup) here.
-
RE: Has anyone got MMM-Remote-Control working on MM 2.11 ?
then goto
~/magicmirror/runand edit thedocker-compose.ymlwith an editor (e.g. nano or vi).In this file replace
karsten13/magicmirror:latestwithkarsten13/magicmirror:develop, save the file.You are still in
~/magicmirror/run, then rundocker-compose up -d.It will take a while because this will pull a new docker image.
After the app is up again, the problem should be fixed.
-
RE: Has anyone got MMM-Remote-Control working on MM 2.11 ?
then you will not find the socketclient.js on your pi because this file is in the used docker image.
2 possibilities:- you have to mount a fixed version of this file into the running container with a volume mount
- you can use the
developversion of the docker image which contains the currentdevelopbranch of mm where this is already fixed (this is the current base of the upcoming MM v2.12)
Don’t know how experienced you are in docker, 2. option is easier to explain.