element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
3D Printing
  • Technologies
  • More
3D Printing
Blog Maker Trainer: A Crowdsourced Resin Setting Database
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join 3D Printing to participate - click to join for free!
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: MakerTrainer
  • Date Created: 3 Jun 2022 5:18 PM Date Created
  • Views 1858 views
  • Likes 1 like
  • Comments 0 comments
  • resin
  • wiki
  • 3D Printing
  • open source
Related
Recommended

Maker Trainer: A Crowdsourced Resin Setting Database

MakerTrainer
MakerTrainer
3 Jun 2022
Maker Trainer: A Crowdsourced Resin Setting Database

Maker Trainer

Resin 3D printing technology is awesome, but validating new materials is still a nightmare for most of us.

To help make it easier, I started Maker Trainer, an open source database for resin settings. 

Settings are crowdsourced from user submissions, and anyone can contribute to this maker wiki.

Resin setting spreadsheets

 If you're into resin 3D printing, you've likely already seen resin setting spreadsheets like this before. 

Anycubic Photon resin settings spreadsheet

They’re a way for makers to share their print settings with each other. They are universally loved, because they make validating new resins much quicker and easier. 

The problem is that they are scattered all over the internet, and are hard to find. They are sometimes turned into an advertising platform or randomly deleted.

The last part is especially painful. Most recently the biggest spreadsheet, — the one for the Anycubic Photon — was unexpectedly deleted, erasing years’ worth of community effort with it.

I wanted to create a platform that could make all this more organized and secure. 

Why a wiki

I settled on a wiki structure, because I wanted anyone to be able to contribute to the database. Wikis allow such collaboration, and any mistake or vandalism is easily undone. 

Moreover, making the pages ‘articles’ instead of just spreadsheets allows for other handy tips and tricks to be present on the pages.

MediaWiki logo

I used MediaWiki, as it is an awesome open source project, and one of the most well-supported wiki software out there. I wanted the site to look sleek and modern, so I used the Chameleon skin, which allows for a lot of customization.

DataTables integration for MediaWiki

A limitation of MediaWiki, is that it has very basic functionality for tables, which were going to be an integral part of the website.

For this I enlisted the help of another great open source software, DataTables. DataTables makes HTML tables a lot more functional, adding things like filtering, pagination and multi-column ordering.

Unfortunately MediaWiki doesn’t have a native extension for DataTables, but I found this implementation on Fandom.com, which was easy enough to fork by adding it to the wiki’s Common.js page.

/**
 * Name:        DataTables.js
 * Author:      KockaAdmiralac <wikia@kocka.tech>
 * Description: Loads CSS and JavaScript from https://datatables.net and
 *              initializes all tables with the `datatable` class as data tables
 */
(function($, mw) {
    'use strict';
    var initialized = false, queue = [];
    function process($content) {
        $content.find('.datatable:not(.datatable-loaded)').each(function() {
            var $table = $(this).addClass('datatable-loaded'),
                $tableHeader = $('<thead>');
            $table.prepend($tableHeader);
            $table.find('> tbody > tr').first().appendTo($tableHeader);
            $table.DataTable();
        });
    }
    function initialize($content) {
        if (initialized) {
            process($content);
        } else {
            queue.push($content);
        }
    }
    mw.loader.load('https://cdn.datatables.net/v/dt/dt-1.12.0/b-2.2.3/b-colvis-2.2.3/date-1.1.2/fc-4.1.0/r-2.3.0/rg-1.2.0/sc-2.0.6/sp-2.0.1/sl-1.4.0/datatables.css', 'text/css');
    mw.loader.getScript('https://cdn.datatables.net/v/dt/dt-1.12.0/b-2.2.3/b-colvis-2.2.3/date-1.1.2/fc-4.1.0/r-2.3.0/rg-1.2.0/sc-2.0.6/sp-2.0.1/sl-1.4.0/datatables.js').then(function() {
        initialized = true;
        queue.forEach(process);
    });
    mw.hook('wikipage.content').add(initialize);
    mw.hook('datatables.loaded').fire();
})(jQuery, mediaWiki);

Voting system for MediaWiki

One of the drawbacks of the Google Sheets documents is that anyone can submit new settings, but there’s no way to know whether these actually work.

I thought it would be important to add an up/downvote system, so users can confirm whether or not a setting actually worked for them.

Unfortunately, MediaWiki doesn’t have such a voting extension. External scripts such as LikeBtn could be implemented, but only if raw HTML is enabled, which is a big security risk on publicly editable wikis.

I’m not clever enough to write a new extension from scratch, so I did a lot of head scratching on this.

In the end I had the idea to repurpose a ‘poll’ extension from MediaWiki. I made the polls have no question, only two answers: + or -.

Default look of AjaxPoll extension

After some CSS trickery, it looked pretty good. 

Growing the community

To get the party started, I scoured the internet for every resin spreadsheet I could find, both from manufacturers and users. I collated all settings, and categorized them by printer brand and resin brand. 

I shared it in some communities to see if people would find it useful, and the feedback has been awesome! People instantly started contributing with new settings and suggestions.

The website has quickly grown into the biggest resin settings database on the internet. 

End result

As a happy aside, this was right before the popular Anycubic Photon spreadsheet was deleted, and I managed to salvage all of the data from it. The new Anycubic Photon spreadsheet contains all of the old settings, plus a bunch of new ones.

If you use a resin 3D printer, please join us in trying to make the hobby a bit easier for everyone!

  • Sign in to reply
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube