Notes to myself and to the community :
WMWare Workstation requires to have access to Intel VT-x and VT-x/EPT for Nested Virtualisation
(The same must be true for other type 2 hypervisors ; Ex: VirtualBox, QEMU, etc ...)
| <?xml version="1.0" encoding="UTF-8"?> | |
| <mxfile host="app.diagrams.net" modified="2025-01-27T00:00:00.000Z" agent="5.0" etag="xxx" version="22.1.16" type="device"> | |
| <diagram name="Architecture N-tiers" id="architecture"> | |
| <mxGraphModel dx="1422" dy="794" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0"> | |
| <root> | |
| <mxCell id="0" /> | |
| <mxCell id="1" parent="0" /> | |
| ``` |
| <mxfile host="app.diagrams.net"> | |
| <diagram name="E-commerce DB Schema" id="schema1"> | |
| <mxGraphModel dx="800" dy="600" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1"> | |
| <root> | |
| <mxCell id="0" /> | |
| <mxCell id="1" parent="0" /> | |
| <!-- Users --> | |
| <mxCell id="Users" value="Users
id (PK)
name
email" style="shape=swimlane;childLayout=stackLayout;" vertex="1" parent="1"> | |
| <mxGeometry x="40" y="40" width="160" height="120" as="geometry" /> |
| $Listener = [System.Net.Sockets.TcpListener]9999; | |
| $Listener.Start(); | |
| #wait, try connect from another PC etc. | |
| $Listener.Stop(); |
If USB Booting using Sabrant USB/SAS Adaptor, add the following to cmdline.txt (as a "prefix" to anything else)
| # DON'T ! | |
| # Never ever execute command you do not have control on | |
| # The returned cert could contain ";some malicious commands;" that would be executed by the awk:system | |
| SERVER="google.com" | |
| PORT=443 | |
| openssl s_client \ | |
| -showcerts \ | |
| -connect ${SERVER}:${PORT} \ |