I. Overview To know what Codespaces is, you can check the official introduction here:👉 https://github.com/features/codespaces II. Actions Step 1 From the main page, navigate and select the Codespaces menu to access your codespaces. Step 2 In the new window, select the button New codespace. Step 3 Hit the button Create codespace with the following configurations: … Continue reading Getting started with GitHub codespaces
UML Short Description
Below is a mapping between program elements in C# and their corresponding UML diagram elements, along with the meaning of each. UML Elements Table Program elementDiagram elementMeaningClassType and parameters specified when important; access indicated by + (public), - (private), # (protected).InterfaceName starts with I. Also used for abstract classes.NoteAny descriptive text.PackageGrouping of classes and interfaces.InheritanceB … Continue reading UML Short Description
Programming Principles
Hi!,First of all, I would like to say the content above is an essential thing for each developer who wants to improve their code quality.I do not own the content above, I just bring it from the Lars Kappert's GitHub.Please see the References section for the reference to GitHub and the owner's websites. Programming Principles … Continue reading Programming Principles
HOW TO BRING THE SQL PROMPT SNIPPET TO THE DBEAVER
I. Introduction As a developer, you might work with various different databases, and DBeaver is a good choice for it.But one boring thing is you might write the same code every day — so the snippet is the hero for it. If you have a chance to use SQL Prompt (a paid plugin for SQL … Continue reading HOW TO BRING THE SQL PROMPT SNIPPET TO THE DBEAVER
How to use PlantUML to draw your diagram or flow effectively.
1. Introduction If you are in the following cases, PlantUML will be the hero to rescue you: You have to face change requests from the client regularly, and each time you need to update the flow or diagram in your design. You want to keep track of all the changes to the flow/diagram by using … Continue reading How to use PlantUML to draw your diagram or flow effectively.