Bootcamp/Levels/Beginner
No edit summary Tag: 2017 source edit |
No edit summary Tag: 2017 source edit |
||
Line 1: | Line 1: | ||
<html> | <html> | ||
<style> | <style> | ||
body { | |||
font-family: Outfit, sans-serif; | |||
background-color: #f7f7f7; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
.container { | .container { | ||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
width: 100%; | |||
padding: 20px; | |||
width: | |||
} | } | ||
. | .section { | ||
background: rgba(255, 218, 187, 0.10); | background: rgba(255, 218, 187, 0.10); | ||
border: 1px solid rgba(0, 0, 0, 0.1); | |||
width: 90%; | |||
max-width: 1200px; | |||
margin: 20px 0; | |||
padding: 20px; | |||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | |||
display: grid; | |||
grid-template-columns: auto 1fr; | |||
grid-template-rows: auto auto; | |||
gap: 10px 20px; | |||
align-items: start; | |||
} | } | ||
.chapter { | |||
.chapter | |||
background: #FFDABB; | background: #FFDABB; | ||
padding: 10px 20px; | |||
font-size: 1.5em; | |||
font-size: | |||
font-weight: 600; | font-weight: 600; | ||
grid-row: 1 / 2; | |||
} | } | ||
. | .steps { | ||
background: rgba(255, 218, 187, 0.40); | background: rgba(255, 218, 187, 0.40); | ||
padding: 10px 20px; | |||
font-size: 1.2em; | |||
font-weight: 400; | |||
grid-column: 2 / 3; | |||
grid-row: 1 / 2; | |||
} | } | ||
. | .description { | ||
font-size: 1em; | |||
font-weight: 300; | |||
color: black; | color: black; | ||
grid-column: 2 / 3; | |||
grid-row: 2 / 3; | |||
} | } | ||
@media (max-width: 768px) { | |||
.chapter, .steps, .description { | |||
font-size: 1em; | |||
} | |||
.section { | |||
padding: 10px; | |||
grid-template-columns: 1fr; | |||
grid-template-rows: auto auto auto; | |||
} | |||
.chapter { | |||
grid-column: 1 / 2; | |||
grid-row: 1 / 2; | |||
} | |||
.steps { | |||
grid-column: 1 / 2; | |||
grid-row: 2 / 3; | |||
} | |||
.description { | |||
grid-column: 1 / 2; | |||
grid-row: 3 / 4; | |||
} | |||
} | } | ||
</style> | </style> | ||
Line 101: | Line 77: | ||
<body> | <body> | ||
<div class="container"> | <div class="container"> | ||
<div class=" | <div class="section"> | ||
<div class=" | <div class="chapter">Chapter 1</div> | ||
<div class=" | <div class="steps">Steps 1 - 40: The Basics</div> | ||
<div class="description"> | |||
<ul> | |||
<li>Introduction to the 1000 Steps Program</li> | |||
<li>Installation of MDriven Designer - through ClickOnce or locally</li> | |||
<li>Getting started: Create an empty model and save your file</li> | |||
<li>Introduction to a Class and Attribute</li> | |||
<li>Get familiar with the OCL Debugger</li> | |||
<li>Bring up a Seeker and add objects</li> | |||
<li>Create an Association</li> | |||
<li>Add a Multilink</li> | |||
</ul> | |||
</div> | </div> | ||
</div> | </div> | ||
<div class=" | <div class="section"> | ||
<div class=" | <div class="chapter">Chapter 2</div> | ||
<div class=" | <div class="steps">Steps 41 - 75: Auto-diagram, OCL, and Autoforms</div> | ||
<div class="description"> | |||
<ul> | |||
<li>Save a copy with previous versions of your file</li> | |||
<li>How to remove and restore deleted Associations</li> | |||
<li>How to move Associations</li> | |||
<li>Create an Association to self and note how it works in the tree</li> | |||
<li>Understand Auto-diagrams and what happens when you delete attributes</li> | |||
<li>Introduction to OCL (Object Constraint Language)</li> | |||
<li>Become familiar with Autoforms and how to use them</li> | |||
</ul> | |||
</div> | </div> | ||
</div> | </div> | ||
<div class=" | <div class="section"> | ||
<div class=" | <div class="chapter">Chapter 3</div> | ||
<div class=" | <div class="steps">Steps 76 - 105: Creating a Web Application</div> | ||
<div class="description"> | |||
<ul> | |||
<li>Introduction to the MDriven Turnkeycore</li> | |||
<li>Change the model into a web application</li> | |||
<li>Use the ViewModel Editor to correct errors in ViewModels</li> | |||
<li>Adopt an Autoform</li> | |||
<li>How to handle naming and presentation of Columns</li> | |||
<li>Introduction to Nested ViewModel class</li> | |||
</ul> | |||
</div> | </div> | ||
</div> | </div> | ||
</div> | </div> | ||
</html> | </html> |
Revision as of 21:33, 4 August 2024
Chapter 1
Steps 1 - 40: The Basics
- Introduction to the 1000 Steps Program
- Installation of MDriven Designer - through ClickOnce or locally
- Getting started: Create an empty model and save your file
- Introduction to a Class and Attribute
- Get familiar with the OCL Debugger
- Bring up a Seeker and add objects
- Create an Association
- Add a Multilink
Chapter 2
Steps 41 - 75: Auto-diagram, OCL, and Autoforms
- Save a copy with previous versions of your file
- How to remove and restore deleted Associations
- How to move Associations
- Create an Association to self and note how it works in the tree
- Understand Auto-diagrams and what happens when you delete attributes
- Introduction to OCL (Object Constraint Language)
- Become familiar with Autoforms and how to use them
Chapter 3
Steps 76 - 105: Creating a Web Application
- Introduction to the MDriven Turnkeycore
- Change the model into a web application
- Use the ViewModel Editor to correct errors in ViewModels
- Adopt an Autoform
- How to handle naming and presentation of Columns
- Introduction to Nested ViewModel class
This page was edited 153 days ago on 08/18/2024. What links here