Skip to content

Instantly share code, notes, and snippets.

@benjameep
Created September 20, 2021 20:08
Show Gist options
  • Save benjameep/72fe154409457a8ab63c8e6b255d234d to your computer and use it in GitHub Desktop.
Save benjameep/72fe154409457a8ab63c8e6b255d234d to your computer and use it in GitHub Desktop.
Refactor Splix servers json into a tabular format
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=900, initial-scale=1.0">
<title>JSON Tables</title>
<style>
table, th, td {
border-collapse: collapse;
border: 1px solid black;
}
th, td {
text-align: left;
vertical-align: top;
padding: 2px 5px;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th rowspan=3>pingIp</th>
<th colspan=3>servers</th>
</tr>
<tr>
<th rowspan=2>ip</th>
<th colspan=2>lobbies</th>
</tr>
<tr>
<th>port</th>
<th>hash</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan=12>138.197.142.68</td>
<td rowspan=2>159.203.40.207</td>
<td>8002</td>
<td>fish</td>
</tr>
<tr>
<td>8001</td>
<td>cow</td>
</tr>
<tr>
<td rowspan=2>139.59.213.108</td>
<td>8002</td>
<td>whale</td>
</tr>
<tr>
<td>8001</td>
<td>lizard</td>
</tr>
<tr>
<td rowspan=2>159.203.20.16</td>
<td>8002</td>
<td>elephant</td>
</tr>
<tr>
<td>8001</td>
<td>rabbit</td>
</tr>
<tr>
<td rowspan=2>159.203.62.199</td>
<td>8002</td>
<td>tiger</td>
</tr>
<tr>
<td>8001</td>
<td>turtle</td>
</tr>
<tr>
<td rowspan=2>159.203.8.41</td>
<td>8002</td>
<td>hyena</td>
</tr>
<tr>
<td>8001</td>
<td>orangutan</td>
</tr>
<tr>
<td rowspan=2>159.203.16.74</td>
<td>8002</td>
<td>plankton</td>
</tr>
<tr>
<td>8001</td>
<td>crab</td>
</tr>
<tr>
<td rowspan=12>139.59.213.108</td>
<td rowspan=2>46.101.194.26</td>
<td>8002</td>
<td>goat</td>
</tr>
<tr>
<td>8001</td>
<td>monkey</td>
</tr>
<tr>
<td>138.68.88.90</td>
<td>8001</td>
<td>bird</td>
</tr>
<tr>
<td>46.101.251.78</td>
<td>8001</td>
<td>jellyfish</td>
</tr>
<tr>
<td>139.59.210.153</td>
<td>8001</td>
<td>cat</td>
</tr>
<tr>
<td>138.68.84.10</td>
<td>8002</td>
<td>duck</td>
</tr>
<tr>
<td rowspan=2>139.59.213.124</td>
<td>8002</td>
<td>panda</td>
</tr>
<tr>
<td>8001</td>
<td>lynx</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment