MultiverseLearningProducts / swe

Here is the entry point to the level 4 Software Engineering curriculum
2 stars 2 forks source link

Images #1

Open bmordan opened 3 years ago

bmordan commented 3 years ago

Screenshot 2020-09-07 at 12 01 56

bmordan commented 3 years ago

Webp net-gifmaker Webp net-gifmaker (1)

bmordan commented 3 years ago
Screenshot 2020-09-15 at 14 54 58
bmordan commented 3 years ago
Screenshot 2020-09-15 at 15 01 32
bmordan commented 3 years ago

Webp net-gifmaker (2)

bmordan commented 3 years ago

crew passengers

bmordan commented 3 years ago
Screenshot 2020-09-16 at 13 01 49
bmordan commented 3 years ago

airports-data-model

bmordan commented 3 years ago

Screenshot 2020-10-04 at 13 18 35

bmordan commented 3 years ago

Screenshot 2020-10-04 at 17 39 08

bmordan commented 3 years ago

Screenshot 2020-10-04 at 17 47 21

bmordan commented 3 years ago

Screenshot 2020-10-04 at 18 41 40

bmordan commented 3 years ago
Screenshot 2020-10-10 at 21 06 24 Screenshot 2020-10-10 at 21 07 03
bmordan commented 3 years ago

in-cell-variance-chart-1

bmordan commented 3 years ago
Screenshot 2020-10-10 at 21 59 04 Screenshot 2020-10-10 at 21 58 29
bmordan commented 3 years ago
Screenshot 2020-10-11 at 11 17 05
bmordan commented 3 years ago
Screenshot 2020-10-11 at 12 02 20
bmordan commented 3 years ago
Screenshot 2020-10-11 at 12 09 15
bmordan commented 3 years ago
Screenshot 2020-10-11 at 15 56 24
bmordan commented 3 years ago
Screenshot 2020-10-11 at 16 26 54 Screenshot 2020-10-11 at 16 18 02 Screenshot 2020-10-11 at 16 05 20
bmordan commented 3 years ago

code-blocks-demo

bmordan commented 3 years ago
Screenshot 2020-11-27 at 15 14 51
bmordan commented 3 years ago
Screenshot 2020-12-01 at 13 22 30
bmordan commented 3 years ago
Screenshot 2020-12-11 at 09 08 40 Screenshot 2020-12-11 at 09 20 58 Screenshot 2020-12-11 at 09 21 15
bmordan commented 3 years ago
Screenshot 2020-12-18 at 17 20 20
bmordan commented 3 years ago
Screenshot 2020-12-18 at 17 24 40
mandyWW commented 3 years ago

hotel keycard

Note that this image must be attributed with the following text: <div>Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div>

mandyWW commented 3 years ago

check-in-desk (1)

Note that this image must be attributed with the following text:

Icons made by catkuro from www.flaticon.com
mandyWW commented 3 years ago

oauthFlow

@startuml
skinparam monochrome true
participant App
box <img:https://cdn.auth0.com/blog/series-c/auth0-logo.png{scale=0.25}>
participant IdentityProvider
end box
participant Resource
App -> IdentityProvider: /oauth/token (clientId & secret)
IdentityProvider-> IdentityProvider: validate clientId & secret
IdentityProvider-->App:accessToken
App->Resource:request(accessToken)
Resource->Resource:validate accessToken
Resource-->App: response
@enduml
mandyWW commented 3 years ago
createApi
mandyWW commented 3 years ago
auth0createUser
mandyWW commented 3 years ago

openIDConnectFlow

@startuml
skinparam monochrome true
actor User
participant App
box <img:https://cdn.auth0.com/blog/series-c/auth0-logo.png{scale=0.25}>
participant IdentityProvider
end box
participant Resource
User -> App: login(username, password)
group OpenID_Connect
App -> IdentityProvider: /login(redirectURL)
IdentityProvider-> IdentityProvider: validate username & password
IdentityProvider-->App:authorization code
App -> IdentityProvider: /oauth/token (authorization code)
IdentityProvider-> IdentityProvider: validate authorization code
IdentityProvider-->App:accessToken, idToken
end
App->App: retrieve profile information
App->Resource:request(accessToken)
Resource->Resource:validate accessToken
Resource-->App: response
@enduml
bmordan commented 3 years ago
Screenshot 2021-01-06 at 14 51 22
bmordan commented 3 years ago
Screenshot 2021-01-13 at 13 02 15
bmordan commented 3 years ago
Screenshot 2021-01-14 at 13 42 33
bmordan commented 3 years ago
Screenshot 2021-01-15 at 10 18 00
mandyWW commented 3 years ago
@startuml
title Airport Task - Basic Class Diagram

class Airport {
  -{static}airports: Array<Airport>
  - name: String
  - planes: Array<Plane>
  land(): void
}
class Plane {
  - name: String
  - passengers: Array<Passenger>
  board(Passenger passenger): void
}
class Passenger {
  - name: String
  - bags: Array<Bag>
  addBag(Bag bag): void
}
class Bag {
  - weight: int
}
@enduml
mandyWW commented 3 years ago

restaurantClassDiagram

Code to generate this is below:

@startuml

title Restaurant Class Diagram

class Restaurant {
  - id: int
  - name: String
  - imagelink: String
}

class Menu {
  - id: int
  - title: String
}

class MenuItem {
  - id: int
  - name: String
  - price: int
}

Restaurant "1" o-- "1..many" Menu : has
Menu "1" o-- "1..many" MenuItem : has
@enduml
bmordan commented 3 years ago
Screenshot 2021-01-21 at 16 51 17
mandyWW commented 3 years ago
httpRequests
bmordan commented 3 years ago
Screenshot 2021-01-27 at 09 01 14 Screenshot 2021-01-27 at 10 46 35
bmordan commented 3 years ago
Screenshot 2021-01-27 at 10 46 35
bmordan commented 3 years ago
Screenshot 2021-01-28 at 10 44 46
bmordan commented 3 years ago

Screenshot 2021-01-28 at 12 43 43

mandyWW commented 3 years ago

simpleDom

PlantUML for the DOM visual above:

@startuml

hide members
hide circle

class document
class html <<Root Element>>
document -down-> html
html -down-> head
html -down-> body
class head <<Element>>
class link <<Element>>
head -down-> link
class rel <<Attribute>>
link -left-> rel
class href <<Attribute>>
link -right-> href
class body <<Element>>
class stylesheet <<Text>> 
link -down-> stylesheet
class style_css <<Text>>
link -down-> style_css
class section <<Element>>
body -down-> section
class p <<Element>>
section -down-> p
class id <<Attribute>>
class Introduction <<Text>>
p -left-> id
p -down-> Introduction

@enduml
mandyWW commented 3 years ago
how to access lighthouse accessibility report
mandyWW commented 3 years ago
visionEmulation
bmordan commented 3 years ago
Screenshot 2021-02-01 at 09 49 35
mandyWW commented 3 years ago
trello board example
mandyWW commented 3 years ago

Multiverse-interim-logo-navy

mandyWW commented 3 years ago
beforeDrag