Cool… I will look into it as soon as I dont have that much work :)
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-DumpsterDay
-
RE: MMM-DumpsterDay
Hey @Bob ,
sure thing. Any tips for cardboard and glass bin image and color?
This brings me to an idea of making the colors and images parameterizable.Deano
-
RE: MMM-DumpsterDay
Hello @blackeaglece ,
I do not use the headers, but I presume it’s always on the top of the module wrapper.
So first thing I’d try is decreasing the height value of trashcan_wrapper.
This is done in MMM-DumpsterDay.css file in the module folder.
Please let me know if you managed moving it by these steps.
Deano
-
RE: *NEW LIST 29.06.2021* Two way community order for mirror glass for all european countries - Open until at least 10 people have entered
@Goldjunge_Chriz , please count me in !
# username width (m) height (m) real area (m²) area to pay for (min. 0,4 m²) location of delivery additional comments (like polished edges) 1 malevolent 0.8 0.5 0.4 0.4 Spain polished edges 2 azra 0.38 0.58 0.22 0.4 Germany - 3 azra 0.38 0.58 0.22 0.4 Germany polished edges 4 Mascheljefferson 0.85 0.6 0.51 0.51 Germany polished edges 5 Nunika 1.20 0.70 0.84 0.84 Austria polished edges 6 DeanoNoire 0.6 0.6 0.36 0.4 Czech Republic - -
RE: MMM-DumpsterDay
@robertybob originaly there was a github card for the repository, but it seems the card is not supported anymore.
And as I’m not able to edit the original post, here is the link:
https://github.com/DeanoNoire/MMM-DumpsterDay -
MMM-HonorKills
This Magic Mirror module scrapes World of Warcraft Armory values from WoW server Twinstar.
This again sound very specific, but the module can be easily changed to scrape anyting from any website!
Preview

If requested I can make the scraper more customizable via config values as currently it’s quite hard-coded.
-
RE: MMM-DumpsterDay
Hey guys,
I finally found some time to review and practically remaster whole module. Now it’s finally working correctly and the console logging is improved and more readable.Please let me know if you still encounter some issues.
Stay safe in these difficult times!
-
RE: MMM-DumpsterDay
@BD0G Can you try updating the latest version of this module from github? :) there was an issue with Landscape part.
-
RE: MMM-DumpsterDay
@BD0G wasn’t really planning to, but I guess I can add it as an option :) will see how much work is wating for me at job this week :D
-
RE: MMM-DumpsterDay
@Doughboy99 Thanks a lot guys, I just corrected it on github.
Have a good one! -
RE: MMM-DumpsterDay
@mrdenmark if you set the date to 18.11.2019 and the occurance is every 14 days then it’s correct :)
If the enable value is true - the image is not visible as it’s not a trashcan day.
If the enable value is false - the part of the module is disabled and is not evaluated at all. Also I recommend to use start dates from the past, not future :) -
RE: MMM-DumpsterDay
@BD0G Exactly: 24 = DD, 10=MM, 2019=YYYY, so 24.10.2019 is DD.MM.YYYY, an European standard format :)
What I quoted from your post: 11.13.2019 is not applicable as there is no 13th month :)var startDateYear = startDate.substring(6,10);
var startDateMonth = startDate.substring(3,5);
var startDateDay = startDate.substring(0,2);That’s the exact code that cuts the date to year, month and day variables, so day is the first two numbers, month are another two numbers and year are last four numbers :)
-
RE: MMM-DumpsterDay
@BD0G That would be playing with the width of the elements in the css file. I will check the options of making it a config key as well. But later today - just got to work :)
Thanks for all the ideas and work done! :) -
RE: MMM-DumpsterDay
I also needed to change the date on each of the cans within the same MagicMirror/config/config.js file
basicStartDate: “11.13.2019”,
plasticStartDate: “11.13.2019”,
landscapeStartDate: “11.13.2019”,Please note the date format in the config should be DD.MM.YYYY, the only format making sense :P
If you were testing this on 11.11.2019, the month and day commutable :D
-
RE: MMM-DumpsterDay
@BD0G Hey there, I changed the file names of the modules and the paths, so it can be used the way you described - via clone.
Can pull the current version and give it a try? Also change the date accordingly :) I believe we’re getting there! :DHave a good one.
-
RE: MMM-DumpsterDay
@BD0G i will give it a try with your config and check what’s wrong and let you know.
-
RE: MMM-DumpsterDay
@BD0G this seems right :)
Thanks for the tips! I will change the installation process :) I’m still new, this is my first real programming project, so this colaboration process is new to me. -
RE: MMM-DumpsterDay
@BD0G Hi there,
I added the install instructions and example of config with descriptions to the readme file.
I’ll copy it here also:{ module:"trashcan", position:"lower_third", config: { refreshInterval: 18000000, // Default: 18000000 = 5 hours pulse: true, // Default: true - Makes the module pulsating enableBasic: true, // Enable basic trashcan basicStartDate: "24.10.2019", // The first dumpster day (Always use 2 digit dates (01 instead of 1)) basicDateDiff_1: 14, // Trashday reoccurance - Default: 14 (every 14 days) basicNotifyDayBefore: true, //Default: true - If you want the notification to appear also the day before the dumpster day enablePlastic: true, // Same values as basic but for Plastic plasticStartDate: "16.01.2019", plasticDateDiff_1: 28, plasticNotifyDayBefore: true, enableLandscape: false, // Same values as basic but for Landscape landscapeStartDate: "29.10.2019", landscapeDateDiff_1: 28, landscapeNotifyDayBefore: true, }I hope it’s clear now :)
Also note the module should not appear today, as it’s not a dumpster day :) Try changing the Start date in the config to make it appear it’s dumpster day today to test it. I may also implement a AlwaysOn config key for testing purposes. Maybe during the week :)
If anything is unclear or can be improved, please let me know :)
-
RE: MMM-DumpsterDay
@BD0G So I’ve made some changes:
Now there are 3 possible cans, user can disable each one in config or change the image via css.
Pulsing is now switchable and I also changed the startDate input format.
Check it out ;)
EDIT: I also added a blue version of the recylcing can as you mentioned (In Czech Republic it’s yellow)
