[ENG] Software developer, and a kind and a gentlemanly full-time nerd.
[ESP] Desarrollador de software, y un amable y caballeroso nerd a tiempo completo.
[GER] Software-Entwickler und ein freundlicher und liebenswürdiger Vollzeit-Nerd.
🔗 Website: https://Grupo-LCF.org/
📺 Youtube: https://www.youtube.com/
🐦 Twitter: https://twitter.com/
👨💼 LinkedIn: https://linkedin.com/in/LuisCorderoFalcon
✉️ Email: luiscorderof.developer@gmail.com
💬 Ask me about: Software Development, Delphi, Flutter, etc.
🌱 I’m currently learning: Go, Rust, LowCode/Nocode.
sequenceDiagram participant browser participant server
browser->>server: GET https://studies.cs.helsinki.fi/exampleapp/notes
activate server
server-->>browser: HTML document
deactivate server
browser->>server: GET https://studies.cs.helsinki.fi/exampleapp/main.css
activate server
server-->>browser: the css file
deactivate server
browser->>server: GET https://studies.cs.helsinki.fi/exampleapp/main.js
activate server
server-->>browser: the JavaScript file
deactivate server
Note right of browser: The browser starts executing the JavaScript code that fetches the JSON from the server
browser->>server: GET https://studies.cs.helsinki.fi/exampleapp/data.json
activate server
server-->>browser: [{ "content": "HTML is easy", "date": "2023-1-1" }, ... ]
deactivate server
Note right of browser: The browser executes the callback function that renders the notes