Difference between revisions of "Relevant Developer Tutorials"

From Mudlet
Jump to navigation Jump to search
(+1)
(Fix sourcetrail link)
 
Line 26: Line 26:
  
 
<!--T:8-->
 
<!--T:8-->
* [https://www.sourcetrail.com/ Source Trail] - get quick overview of an unfamiliar codebase (like Mudlet, if you're just joining here)
+
* [https://github.com/CoatiSoftware/Sourcetrail/releases/tag/2021.4.19 Source Trail] - get quick overview of an unfamiliar codebase (like Mudlet, if you're just joining here)
 
* [https://www.draw.io/ draw.io] - Draw and share diagrams online
 
* [https://www.draw.io/ draw.io] - Draw and share diagrams online
 
* http://www.rexex101.com/ - test and explain your regular expressions online
 
* http://www.rexex101.com/ - test and explain your regular expressions online

Latest revision as of 11:01, 24 December 2022

Other languages:
Deutsch • ‎English • ‎Nederlands • ‎Türkçe • ‎français • ‎italiano • ‎polski • ‎suomi • ‎Ελληνικά • ‎русский • ‎العربية • ‎한국어

Mudlet uses modern C++17 for the core functionality of the application.


For programming newbies

  • C++ - covers everything C++ basics to advanced.
  • C++ Discord - great community for help with C++.
  • Qt Discord - also a great community, this time for coding in Qt.

For experienced programmers

  • Pointers - the core basics of C++. While you can by without needing to know the details, you'll find it really, really useful if you do.
  • C++11 - know how to make your life easier with modern C++11.
  • C++11 Guide - fantastic guide on everything C++.
  • emoji breakdown - everything to know about emojis, is useful to know when working with Mudlet's internal text editing classes.
  • Learn X in Y minutes - helpful brief summary/examples for lots of code languages' syntax and concepts, including C++ and Lua

Helpful tools


Support tools


Good reading


Support communities


Random tips and tricks

Determine what auto resolves to with:

 template <typename T> struct watzattype;
 void TriggerUnit::doCleanup()
 {
     for(auto & trigger : mCleanupList)
     {
         watzattype<decltype(trigger)>{};

Compiler will error and tell you the type, TTrigger*& in this example.