Made it more precise
All checks were successful
/ deploy (push) Successful in 44s

This commit is contained in:
Minecon724 2025-07-12 09:52:19 +02:00
commit 5ecdab0466
Signed by untrusted user who does not match committer: m724
GPG key ID: A02E6E67AB961189
2 changed files with 4 additions and 11 deletions

View file

@ -14,7 +14,6 @@ Prefix hostname with `ipv4.` to force IPv4 \
### Nuremberg, Germany ### Nuremberg, Germany
- `de1.420129.xyz` 1 Gbps (v6 + v4) - `de1.420129.xyz` 1 Gbps (v6 + v4)
- **Tunneled to Frankfurt, so +4ms to everywhere. Double that to Nuremberg itself.**
- Public key: `N9rGceoiFcc/obnHrqMAmVlrb/E2Br55+doekTKwNF8=` - Public key: `N9rGceoiFcc/obnHrqMAmVlrb/E2Br55+doekTKwNF8=`
- Link local: `fe80::129:2` - Link local: `fe80::129:2`
- Pingable: `fdfe:8d0:7450:200::1` - Pingable: `fdfe:8d0:7450:200::1`
@ -41,6 +40,7 @@ Prefix hostname with `ipv4.` to force IPv4 \
- Provider: [No Ack Hosting](https://order.noackhosting.se/?affid=1) - Provider: [No Ack Hosting](https://order.noackhosting.se/?affid=1)
### Frankfurt, Germany ### Frankfurt, Germany
- **(!) Unstable right now**
- `de2.420129.xyz` 100 Mbps (v6 + v4) - `de2.420129.xyz` 100 Mbps (v6 + v4)
- Public key: `VJMKJEuteSa9izj5f+bUD8bhQL99NnITnxyy0+1Gblw=` - Public key: `VJMKJEuteSa9izj5f+bUD8bhQL99NnITnxyy0+1Gblw=`
- Link local: `fe80::129:7` - Link local: `fe80::129:7`

View file

@ -33,14 +33,14 @@ var nodes = {
city: "Nuremberg, Germany", city: "Nuremberg, Germany",
hostname: "de1.420129.xyz", hostname: "de1.420129.xyz",
datacenter: "Hetzner", datacenter: "Hetzner",
description: `Tunneled to Frankfurt, +4ms everywhere.` description: ``
}, },
nl1: { nl1: {
country: 'nl', country: 'nl',
location: [52.3669969, 4.9002249], location: [52.3669969, 4.9002249],
city: "Amsterdam, Netherlands", city: "Amsterdam, Netherlands",
hostname: "nl1.420129.xyz", hostname: "nl1.420129.xyz",
datacenter: "Netherlands Northwest eu-amsterdam-1", datacenter: "oracle cloud eu-amsterdam-1",
description: `` description: ``
}, },
fr1: { fr1: {
@ -109,8 +109,6 @@ function onNodeClick(ev, node, clicked) {
console.log('b') console.log('b')
console.log(opened) console.log(opened)
if (opened != null) { if (opened != null) {
//if (ev instanceof MouseEvent) return;
//dismissPopup();
return; return;
} }
const rect = clicked.getBoundingClientRect(); const rect = clicked.getBoundingClientRect();
@ -127,7 +125,6 @@ function onNodeClick(ev, node, clicked) {
ele.style.width = rect.width - 40 + 'px'; // padding or margin ele.style.width = rect.width - 40 + 'px'; // padding or margin
ele.style.height = rect.height - 20 + 'px'; ele.style.height = rect.height - 20 + 'px';
ele.style.top = rect.top - 10 + 'px'; ele.style.top = rect.top - 10 + 'px';
//ele.style.left = rect.left - 10 + 'px';
ele.offsetHeight; ele.offsetHeight;
@ -175,8 +172,4 @@ line(nodes.nl1.location, nodes.fr1.location, "nl1 - fr1<br><strong>10ms</strong>
line(nodes.nl1.location, nodes.de2.location, "nl1 - de2<br><strong>7ms</strong>"); line(nodes.nl1.location, nodes.de2.location, "nl1 - de2<br><strong>7ms</strong>");
line(nodes.de1.location, nodes.de2.location, "de2 - de1<br><strong>5ms</strong>"); line(nodes.de1.location, nodes.de2.location, "de2 - de1<br><strong>5ms</strong>");
line(nodes.de2.location, nodes.pl1.location, "de2 - pl1<br><strong>24ms</strong>"); line(nodes.de2.location, nodes.pl1.location, "de2 - pl1<br><strong>24ms</strong>");
/*map.on("dragstart", function () {
dismissPopup(false);
});*/