⌨️ 𝗖𝟰 𝗣𝗹𝗮𝗻𝘁𝗨𝗠𝗟 𝗜𝗻𝘁𝗲𝗹𝗹𝗶𝗦𝗲𝗻𝘀𝗲 is now available on 𝗠𝗶𝗻𝗮 𝘃𝟭.𝟯.𝟬: https://lnkd.in/eyd7TYMy Keadex Mina is one of the few tools with a code editor that provides an IntelliSense feature for the C4 PlantUML DSL. With IntelliSense integrated into the Mina code editor, you and your team can code diagrams 𝗳𝗮𝘀𝘁𝗲𝗿 and with 𝗳𝗲𝘄𝗲𝗿 𝗲𝗿𝗿𝗼𝗿𝘀. The parameter info and member lists will also 𝗮𝘀𝘀𝗶𝘀𝘁 𝘆𝗼𝘂 if you're not experienced with the C4 PlantUML syntax.
Keadex Mina: IntelliSense for C4 PlantUML
More Relevant Posts
-
4/5) Step 4: Linking Input: Object Code (add.o) What Happens in Linking? The linker resolves all external references, such as: Functions like printf, which are defined in system libraries. Constants or global variables defined in other files. Combines the object file with system libraries (e.g., libc) to produce the final executable file. Command: gcc add.o -o add Output: Executable File (add) The add file is now a complete program that can be executed directly. Run the Program: ./add Output: The sum is: 8
To view or add a comment, sign in
-
Another Vscode shortcuts : 6. Ctrl + Space: Trigger IntelliSense for code suggestions 💡 7. Ctrl + Shift + F: Search across files 🔍 8. Ctrl + D: Select the next occurrence of the selected text 📑 9. Ctrl + Shift + L: Select all occurrences of the current selection 🔗 10. Ctrl + Shift + P: Open the Command Palette 📜
To view or add a comment, sign in
-
Newbies pay attention! Don't be 'Stringly' typed. What does this mean? Being "strongly typed" generally means enforcing stricter type rules to ensure that data types are correct and consistent throughout your application. Using enums instead of strings is a common practice to promote strong typing in C#. Why? 1. Improved code clarity and safety 2. Compile-time checking 3. IntelliSense and auto-completion 4. Performance 5. Easy maintenance I prepared 5 more easy Clean Code Best Practices tips. Join 11k engineers, and get them today. Subscribe -> https://lnkd.in/dQDTpYcf #dotnet
To view or add a comment, sign in
-
-
Revolutionize your scripting experience with Custom Logic solutions! 🌟 Embrace flexibility, enhance functionality, and Scrip8 with precision like never before. 🎯 #CustomScripts #Efficiency #TechInnovation #TechSolutions #EfficiencyBoost #ResearchTechnology
To view or add a comment, sign in
-
-
Did you know that you can use #TabularEditor C# scripts to output any information from the model in a grid? Here's a sample script that outputs various information about all the measures in your #SemanticModel: https://lnkd.in/dqAwAdkb This technique works in both TE2 and TE3, however TE3 has a few more options for sorting, grouping, and filtering the results shown:
To view or add a comment, sign in
-
-
Learn how to use #TabularEditor's C# script 📜 feature to output metadata details in a grid 𝄜 including custom information that you can infer from the metadata (e.g. DAX expression token and line count). Super useful if you're trying to get an overview of the complexity of measures in your semantic model. Link to article: https://lnkd.in/dYNXtSXs This technique works in both Tabular Editor 2 and 3.
Did you know that you can use #TabularEditor C# scripts to output any information from the model in a grid? Here's a sample script that outputs various information about all the measures in your #SemanticModel: https://lnkd.in/dqAwAdkb This technique works in both TE2 and TE3, however TE3 has a few more options for sorting, grouping, and filtering the results shown:
To view or add a comment, sign in
-
-
𝗦𝘁𝗿𝘂𝗰𝘁 𝘃𝘀 𝗖𝗹𝗮𝘀𝘀 𝗶𝗻 𝗖#: In C#, structs and classes differ in how they store and manage data. Understanding these differences is crucial for writing efficient code. 𝟭. 𝗦𝘁𝗿𝘂𝗰𝘁 (𝗩𝗮𝗹𝘂𝗲 𝗧𝘆𝗽𝗲) Stored in the stack (memory is freed immediately after use). Copied by value – every assignment creates a new copy. Does not support inheritance (can only implement interfaces). Ideal for small, immutable objects like DateTime or Point. 𝟮. 𝗖𝗹𝗮𝘀𝘀 (𝗥𝗲𝗳𝗲𝗿𝗲𝗻𝗰𝗲 𝗧𝘆𝗽𝗲) Stored in the heap (managed by the garbage collector). Copied by reference – multiple variables can point to the same object. Supports inheritance and polymorphism. Ideal for complex, mutable objects with behavior and state. 𝗦𝘁𝗿𝘂𝗰𝘁 (𝗣𝗼𝗶𝗻𝘁): p1 and p2 are two different copies. Changing p2.X does not affect p1.X. 𝗖𝗹𝗮𝘀𝘀 (𝗖𝗶𝗿𝗰𝗹𝗲): c1 and c2 point to the same object. Changing c2.Radius also updates c1.Radius
To view or add a comment, sign in
-
-
Check out the new video on my YouTube channel: https://lnkd.in/gp2rY3Di #ITX #Integration #AppConnectEnterprise #SterlingB2Bi #ITXA #Excel #Stream #Java
Using Excel adapter in an integrated ITX env
https://www.youtube.com/
To view or add a comment, sign in
-
#Setting Chart - script MetaTrader 5 https://lnkd.in/erM8GSqd # Real author: MQL doc. Sometimes we open many chart windows with default setting. Usually we want the charts look as we like, such as to hide grid, using scale, hide OHLC, enable ask price, etc. This script can do it at once on multi charts. This simple scr...
To view or add a comment, sign in