Difference between revisions of "HowTo:Design a Customizing"
(Created page with "Customizing {{UBIK}} is a complex endeavor. In this article, we aim to provide a guide and best practices making this task as straight-forward as possible. <!-- DO NOT REMOVE...") |
m |
||
Line 70: | Line 70: | ||
* Avoid multi-threading, but if you have to implement parallel tasks, use locking wisely to avoid dead-locks. | * Avoid multi-threading, but if you have to implement parallel tasks, use locking wisely to avoid dead-locks. | ||
* Check every variable for being null before you use it. | * Check every variable for being null before you use it. | ||
+ | |||
+ | = {{UBIK}} Features = | ||
+ | We are working on improving the Wiki documentation for {{UBIK}} features, to provide a better understanding of what to achieve with which existing feature. One of the best ways to find the best feature for your task is to prompt a Large Language Model (LLM) chat AI, which will search our Wiki for you. If the information cannot be found on the Wiki, please don't hesitate to open a support ticket on the Augmensys support portal. | ||
= Client UI = | = Client UI = | ||
Line 92: | Line 95: | ||
* [[XAML_Best_practices]] | * [[XAML_Best_practices]] | ||
− | |||
[[Category:Best Practices (internal)|Design a Customizing]] | [[Category:Best Practices (internal)|Design a Customizing]] | ||
+ | [[Category:How-To|Design a Customizing]] | ||
[[Category:Resources (internal)|Design a Customizing]] | [[Category:Resources (internal)|Design a Customizing]] |
Revision as of 22:35, 24 July 2023
Customizing UBIK® is a complex endeavor. In this article, we aim to provide a guide and best practices making this task as straight-forward as possible.