├── CNAME ├── .github └── workflows │ └── lint.yml ├── README.md ├── LICENSE ├── index.html └── people.json /CNAME: -------------------------------------------------------------------------------- 1 | usermap.serenityos.org -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- 1 | name: Lint 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | lint: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v2 10 | - uses: actions/setup-python@v2 11 | - name: Ensure people.json is valid JSON 12 | run: | 13 | python3 -m json.tool people.json 14 | - name: Run prettier 15 | run: | 16 | npx prettier --check . 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SerenityOS User Map 2 | 3 | A map showing where in the world the SerenityOS developers and users are :^) 4 | 5 | **[Visit the map!](https://usermap.serenityos.org)** 6 | 7 | ## Contribution 8 | 9 | If you want to add yourself to the map, make a PR that adds an entry to the file [`people.json`](./people.json). It has to have the following format: 10 | 11 | ```json 12 | { 13 | "nick": "denvercoder9", 14 | "coordinates": [48.77844, 9.18014], 15 | "links": { 16 | "Website": "https://example.com", 17 | "GitHub": "https://github.com/denvercoder9" 18 | } 19 | } 20 | ``` 21 | 22 | If you're a [contributor](https://github.com/SerenityOS/serenity/graphs/contributors), add `"contributor": true` at the end of the entry as well to get highlighted on the map. 23 | 24 | Some tips: 25 | 26 | - You can find your location with either [OpenStreetMap](https://www.openstreetmap.org/), [Google Maps](https://www.google.com/maps) or your mobile phone if GPS is enabled 27 | - `links` is an object where each key will be displayed as a link with the string content as `href`. 28 | - You decide how precise you want it to be. On your room, just the right street, the center of the city, center of the country. You decide! 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Except for all files in the folder people, this code is: 2 | 3 | MIT License Copyright (c) 2021 Contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is furnished 10 | to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice (including the next 13 | paragraph) shall be included in all copies or substantial portions of the 14 | Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 18 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 19 | OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF 21 | OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SerenityOS User Map 6 | 7 | 13 | 18 | 23 | 55 | 56 | 57 | 58 |
59 |
60 |
61 |
62 | 0 users are already registered | 63 | Contribute 68 |
69 |
70 |
71 |
72 | 156 | 157 | 158 | -------------------------------------------------------------------------------- /people.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "nick": "Kim Kulak", 4 | "coordinates": [42.934307, -72.283859], 5 | "links": { 6 | "GitHub": "https://github.com/kimkulak" 7 | } 8 | }, 9 | { 10 | "nick": "Undefine", 11 | "coordinates": [50.01052, 22.682], 12 | "links": { 13 | "GitHub": "https://github.com/Undefine-Unity" 14 | }, 15 | "contributor": true 16 | }, 17 | { 18 | "nick": "TomMarius", 19 | "coordinates": [50.088, 14.4207], 20 | "links": { 21 | "Website": "https://tommarius.github.io", 22 | "GitHub": "https://github.com/TomMarius" 23 | } 24 | }, 25 | { 26 | "nick": "Ryuu22", 27 | "coordinates": [37.544393, 127.091702], 28 | "links": { 29 | "Website": "https://dankbueno.com", 30 | "GitHub": "https://github.com/ryuu22" 31 | } 32 | }, 33 | { 34 | "nick": "gabrielgggg", 35 | "coordinates": [40.91316, -73.12032], 36 | "links": { 37 | "GitHub": "https://github.com/gabrielgggg", 38 | "Website": "https://www.gmihalache.com/" 39 | } 40 | }, 41 | { 42 | "nick": "kennethmyhra", 43 | "coordinates": [59.91102, 10.75313], 44 | "links": { 45 | "Twitter": "https://twitter.com/kennethmyhra", 46 | "GitHub": "https://github.com/kennethmyhra", 47 | "LinkedIn": "https://www.linkedin.com/in/kennethmyhra/", 48 | "Website": "https://incendi.no/" 49 | }, 50 | "contributor": true 51 | }, 52 | { 53 | "nick": "Gunnar Beutner - shroud", 54 | "coordinates": [49.436, 10.9929], 55 | "links": { 56 | "GitHub": "https://github.com/gunnarbeutner", 57 | "LinkedIn": "https://www.linkedin.com/in/gunnar-beutner-693415167/", 58 | "Twitter": "https://twitter.com/gunnarbeutner", 59 | "Website": "https://beutner.name/" 60 | }, 61 | "contributor": true 62 | }, 63 | { 64 | "nick": "GMTA", 65 | "coordinates": [51.5163, 5.3634], 66 | "links": { 67 | "GitHub": "https://github.com/GMTA", 68 | "LinkedIn": "https://www.linkedin.com/in/jelleraaijmakers", 69 | "Twitter": "https://twitter.com/gmta_nl", 70 | "Website": "https://jelleraaijmakers.nl" 71 | }, 72 | "contributor": true 73 | }, 74 | { 75 | "nick": "MaxWipfli", 76 | "coordinates": [46.8818, 8.6439], 77 | "links": { 78 | "Website": "https://maxwipfli.ch", 79 | "Twitter": "https://twitter.com/MaxWipfli", 80 | "GitHub": "https://github.com/MaxWipfli" 81 | }, 82 | "contributor": true 83 | }, 84 | { 85 | "nick": "Richard Gráčik - Morc", 86 | "coordinates": [48.4614, 17.9846], 87 | "links": { 88 | "Twitter": "https://twitter.com/morciatka", 89 | "GitHub": "https://github.com/TheMorc" 90 | }, 91 | "contributor": true 92 | }, 93 | { 94 | "nick": "CxByte", 95 | "coordinates": [45.87, 8.98], 96 | "links": { 97 | "Twitter": "https://twitter.com/the_semicolon_", 98 | "GitHub": "https://github.com/alimpfard" 99 | }, 100 | "contributor": true 101 | }, 102 | { 103 | "nick": "awesomekling", 104 | "coordinates": [57.0838, 12.2507], 105 | "links": { 106 | "Twitter": "https://twitter.com/awesomekling", 107 | "GitHub": "https://github.com/awesomekling" 108 | }, 109 | "contributor": true 110 | }, 111 | { 112 | "nick": "ElectrodeYT", 113 | "coordinates": [47.838913, 16.22358], 114 | "links": { 115 | "Website": "https://electrode.codes", 116 | "GitHub": "https://github.com/ElectrodeYT", 117 | "YouTube": "https://www.youtube.com/channel/UCG7ncve89LRB_EGRc3A2wog" 118 | }, 119 | "contributor": true 120 | }, 121 | { 122 | "nick": "breakgimme", 123 | "coordinates": [52.54682, 19.70638], 124 | "links": { 125 | "Website": "https://breakgimme.cf", 126 | "Twitter": "https://twitter.com/adamos9898", 127 | "GitHub": "https://github.com/breakgimme" 128 | } 129 | }, 130 | { 131 | "nick": "bugaevc", 132 | "coordinates": [55.752, 37.6175], 133 | "links": { 134 | "Mastodon (floss.social)": "https://floss.social/@bugaevc", 135 | "Mastodon (serenityos.social)": "https://serenityos.social/@bugaevc", 136 | "GitHub": "https://github.com/bugaevc" 137 | }, 138 | "contributor": true 139 | }, 140 | { 141 | "nick": "linusg", 142 | "coordinates": [51.51, -0.12], 143 | "links": { 144 | "Website": "https://linus.dev", 145 | "Mastodon (chaos.social)": "https://chaos.social/@linusgroh", 146 | "Mastodon (serenityos.social)": "https://serenityos.social/@linusg", 147 | "GitHub": "https://github.com/linusg" 148 | }, 149 | "contributor": true 150 | }, 151 | { 152 | "nick": "networkException", 153 | "coordinates": [50.1087657, 8.6565254], 154 | "links": { 155 | "Website": "https://nwex.de", 156 | "Mastodon (chaos.social)": "https://chaos.social/@networkexception", 157 | "Mastodon (serenityos.social)": "https://serenityos.social/@networkexception", 158 | "GitHub": "https://github.com/networkException" 159 | }, 160 | "contributor": true 161 | }, 162 | { 163 | "nick": "thakis", 164 | "coordinates": [40.4987, -74.0643], 165 | "links": { 166 | "GitHub": "https://github.com/nico" 167 | }, 168 | "contributor": true 169 | }, 170 | { 171 | "nick": "trflynn89", 172 | "coordinates": [42.4523774, -71.096081], 173 | "links": { 174 | "Website": "https://trflynn89.github.io/", 175 | "GitHub": "https://github.com/trflynn89" 176 | }, 177 | "contributor": true 178 | }, 179 | { 180 | "nick": "zaklaus", 181 | "coordinates": [48.5660393, 19.2284823], 182 | "links": { 183 | "Website": "https://madaraszd.net/", 184 | "GitHub": "https://github.com/zaklaus", 185 | "Twitter": "https://twitter.com/DMadarasz" 186 | } 187 | }, 188 | { 189 | "nick": "IdanHo", 190 | "coordinates": [32.79, 34.98], 191 | "links": { 192 | "GitHub": "https://github.com/IdanHo" 193 | }, 194 | "contributor": true 195 | }, 196 | { 197 | "nick": "nicolasdanelon", 198 | "coordinates": [-34.61083, -58.4157], 199 | "links": { 200 | "Website": "https://nicolasmd.com.ar", 201 | "GitHub": "https://github.com/nicolasdanelon" 202 | } 203 | }, 204 | { 205 | "nick": "boricj", 206 | "coordinates": [45.46, 6.08], 207 | "links": { 208 | "GitHub": "https://github.com/boricj" 209 | }, 210 | "contributor": true 211 | }, 212 | { 213 | "nick": "bgianf", 214 | "coordinates": [47.6062095, -122.3320708], 215 | "links": { 216 | "Website": "https://bjg.io/", 217 | "GitHub": "https://github.com/bgianfo", 218 | "Twitter": "https://twitter.com/bgianf" 219 | }, 220 | "contributor": true 221 | }, 222 | { 223 | "nick": "petelliott", 224 | "coordinates": [53.631611, -113.323975], 225 | "links": { 226 | "Github": "https://github.com/petelliott" 227 | }, 228 | "contributor": true 229 | }, 230 | { 231 | "nick": "r-paiva", 232 | "coordinates": [41.242, -8.665], 233 | "links": { 234 | "Github": "https://github.com/r-paiva" 235 | } 236 | }, 237 | { 238 | "nick": "timmot", 239 | "coordinates": [-32.926, 151.763], 240 | "links": { 241 | "Github": "https://github.com/timmot" 242 | }, 243 | "contributor": true 244 | }, 245 | { 246 | "nick": "supercomputer7", 247 | "coordinates": [31.6445, 34.8879], 248 | "links": { 249 | "GitHub": "https://github.com/supercomputer7" 250 | }, 251 | "contributor": true 252 | }, 253 | { 254 | "nick": "vkoskiv", 255 | "coordinates": [60.1875, 24.97687], 256 | "links": { 257 | "Website": "https://vkoskiv.com", 258 | "GitHub": "https://github.com/vkoskiv", 259 | "Twitter": "https://twitter.com/vkoskiv" 260 | }, 261 | "contributor": true 262 | }, 263 | { 264 | "nick": "itamar8910", 265 | "coordinates": [32.785, 34.986], 266 | "links": { 267 | "GitHub": "https://github.com/itamar8910" 268 | }, 269 | "contributor": true 270 | }, 271 | { 272 | "nick": "BertalanD", 273 | "coordinates": [47.093, 17.912], 274 | "links": { 275 | "Website": "https://danielbertalan.dev", 276 | "GitHub": "https://github.com/BertalanD" 277 | }, 278 | "contributor": true 279 | }, 280 | { 281 | "nick": "sunverwerth", 282 | "coordinates": [52.516, 13.377], 283 | "links": { 284 | "GitHub": "https://github.com/sunverwerth" 285 | }, 286 | "contributor": true 287 | }, 288 | { 289 | "nick": "nooga", 290 | "coordinates": [52.4, 16.831], 291 | "links": { 292 | "GitHub": "https://github.com/nooga", 293 | "Twitter": "https://twitter.com/MGasperowicz" 294 | }, 295 | "contributor": true 296 | }, 297 | { 298 | "nick": "Reidond", 299 | "coordinates": [48.10563, 23.764078], 300 | "links": { 301 | "GitHub": "https://github.com/Reidond", 302 | "Twitter": "https://twitter.com/Reidond69" 303 | } 304 | }, 305 | { 306 | "nick": "metmo", 307 | "coordinates": [59.317472, 18.03752], 308 | "links": { 309 | "GitHub": "https://github.com/metmo" 310 | }, 311 | "contributor": true 312 | }, 313 | { 314 | "nick": "gootik", 315 | "coordinates": [37.758317, -122.451371], 316 | "links": { 317 | "GitHub": "https://github.com/gootik" 318 | } 319 | }, 320 | { 321 | "nick": "Clements", 322 | "coordinates": [44.83806, -0.57781], 323 | "links": { 324 | "Website": "https://lisible.xyz", 325 | "GitHub": "https://github.com/Lisible", 326 | "Twitter": "https://twitter.com/claymeuns" 327 | } 328 | }, 329 | { 330 | "nick": "Zyper", 331 | "coordinates": [50.07816, 19.99053], 332 | "links": { 333 | "GitHub": "https://github.com/ZyperPL", 334 | "Twitter": "https://twitter.com/zyper_pl" 335 | }, 336 | "contributor": true 337 | }, 338 | { 339 | "nick": "alvanrahimli", 340 | "coordinates": [40.32891, 49.74605], 341 | "links": { 342 | "Website": "https://rahim.li", 343 | "GitHub": "https://github.com/alvanrahimli", 344 | "Facebook": "https://facebook.com/alvan.rahimli" 345 | } 346 | }, 347 | { 348 | "nick": "tbhaxor", 349 | "coordinates": [30.733315, 76.779419], 350 | "links": { 351 | "GitHub": "https://github.com/tbhaxor", 352 | "Twitter": "https://twitter.com/tbhaxor", 353 | "LinkedIn": "https://linkedin.com/in/tbhaxor", 354 | "Website": "https://tbhaxor.com" 355 | } 356 | }, 357 | { 358 | "nick": "Omerktn", 359 | "coordinates": [41.03422, 30.305053], 360 | "links": { 361 | "GitHub": "https://github.com/Omerktn", 362 | "Twitter": "https://twitter.com/okurttekin" 363 | } 364 | }, 365 | { 366 | "nick": "ADKaster", 367 | "coordinates": [39.762, -104.995], 368 | "links": { 369 | "GitHub": "https://github.com/ADKaster" 370 | }, 371 | "contributor": true 372 | }, 373 | { 374 | "nick": "conorbros", 375 | "coordinates": [-27.470125, 153.021072], 376 | "links": { 377 | "GitHub": "https://github.com/conorbros" 378 | } 379 | }, 380 | { 381 | "nick": "Lubrsi", 382 | "coordinates": [53.37976, -1.46991], 383 | "links": { 384 | "GitHub": "https://github.com/Lubrsi" 385 | }, 386 | "contributor": true 387 | }, 388 | { 389 | "nick": "Ventor", 390 | "coordinates": [50.814427, 7.151012], 391 | "links": { 392 | "GitHub": "https://github.com/flymia" 393 | } 394 | }, 395 | { 396 | "nick": "djwisdom", 397 | "coordinates": [14.28909, 121.11248], 398 | "links": { 399 | "GitHub": "https://github.com/djwisdom", 400 | "Twitter": "https://twitter.com/djwisdom" 401 | }, 402 | "contributor": true 403 | }, 404 | { 405 | "nick": "bitwitch", 406 | "coordinates": [40.7116322, -73.9576872], 407 | "links": { 408 | "GitHub": "https://github.com/bitwitch", 409 | "Twitter": "https://twitter.com/b1tw1tch", 410 | "Website": "https://shawdaddy.com" 411 | } 412 | }, 413 | { 414 | "nick": "docherak", 415 | "coordinates": [50.1034, 14.4505], 416 | "links": { 417 | "Website": "https://docherak.github.io", 418 | "GitHub": "https://github.com/docherak", 419 | "Twitter": "https://twitter.com/docherak" 420 | } 421 | }, 422 | { 423 | "nick": "cammo1123", 424 | "coordinates": [-33.7, 151.3], 425 | "links": { 426 | "Website": "https://cammo1123.dev/", 427 | "GitHub": "https://github.com/cammo1123", 428 | "Twitter": "https://twitter.com/CameronYouell" 429 | }, 430 | "contributor": true 431 | }, 432 | { 433 | "nick": "thanoskoutr", 434 | "coordinates": [37.9838, 23.7275], 435 | "links": { 436 | "GitHub": "https://github.com/thanoskoutr" 437 | } 438 | }, 439 | { 440 | "nick": "tlmrgvf", 441 | "coordinates": [48.6823, 9.0129], 442 | "links": { 443 | "GitHub": "https://github.com/tlmrgvf" 444 | }, 445 | "contributor": true 446 | }, 447 | { 448 | "nick": "sin-ack", 449 | "coordinates": [47.92, 106.9357], 450 | "links": { 451 | "GitHub": "https://github.com/sin-ack", 452 | "Website": "https://sin-ack.github.io/" 453 | }, 454 | "contributor": true 455 | }, 456 | { 457 | "nick": "MadManGaz", 458 | "coordinates": [54.5965408, -5.9048654], 459 | "links": { 460 | "GitHub": "https://github.com/MadManGaz", 461 | "Website": "https://www.garymoore.ie", 462 | "Twitter": "https://twitter.com/GaryPotatoes" 463 | } 464 | }, 465 | { 466 | "nick": "TobyAsE", 467 | "coordinates": [54.31, 10.13], 468 | "links": { 469 | "GitHub": "https://github.com/TobyAsE", 470 | "Website": "https://tobyase.de" 471 | }, 472 | "contributor": true 473 | }, 474 | { 475 | "nick": "devsh0", 476 | "coordinates": [23.36, 85.31], 477 | "links": { 478 | "GitHub": "https://github.com/devsh0", 479 | "Twitter": "https://twitter.com/devsh0" 480 | }, 481 | "contributor": true 482 | }, 483 | { 484 | "nick": "dfrojas", 485 | "coordinates": [3.420687, -76.513813], 486 | "links": { 487 | "GitHub": "https://github.com/dfrojas", 488 | "Twitter": "https://twitter.com/dfrojas89", 489 | "LinkedIn": "https://www.linkedin.com/in/dfrojas/" 490 | } 491 | }, 492 | { 493 | "nick": "rok-povsic", 494 | "coordinates": [45.907593, 15.005867], 495 | "links": { 496 | "GitHub": "https://github.com/rok-povsic" 497 | }, 498 | "contributor": true 499 | }, 500 | { 501 | "nick": "RVieira00", 502 | "coordinates": [41.2087, -8.27527], 503 | "links": { 504 | "GitHub": "https://github.com/RVieira00" 505 | } 506 | }, 507 | { 508 | "nick": "kleines Filmröllchen", 509 | "coordinates": [48.78302, 9.17992], 510 | "links": { 511 | "GitHub": "https://github.com/kleinesfilmroellchen", 512 | "Website": "https://klfr.spdns.de/", 513 | "YouTube": "https://www.youtube.com/c/kleinesfilmroellchen" 514 | }, 515 | "contributor": true 516 | }, 517 | { 518 | "nick": "Ben Phelps", 519 | "coordinates": [47.8481264, 35.1171629], 520 | "links": { 521 | "GitHub": "https://github.com/benphelps" 522 | } 523 | }, 524 | { 525 | "nick": "robtech21", 526 | "coordinates": [38.40349, -78.92373], 527 | "links": { 528 | "GitHub": "https://github.com/robtech21", 529 | "Website": "https://robtech21.carrd.co" 530 | } 531 | }, 532 | { 533 | "nick": "joebentley", 534 | "coordinates": [53.56048, 9.883927], 535 | "links": { 536 | "GitHub": "https://github.com/joebentley", 537 | "Website": "http://www.joebentleyphysics.com/" 538 | } 539 | }, 540 | { 541 | "nick": "i3abghany", 542 | "coordinates": [31.037566, 31.38649], 543 | "links": { 544 | "GitHub": "https://github.com/i3abghany", 545 | "Twitter": "https://twitter.com/i3abghany" 546 | } 547 | }, 548 | { 549 | "nick": "bastianleicht", 550 | "coordinates": [49.871887, 8.6525076], 551 | "links": { 552 | "Website": "https://bastianleicht.de/", 553 | "LinkedIn": "https://www.linkedin.com/in/bastianleicht/", 554 | "GitHub": "https://github.com/bastianleicht", 555 | "Twitter": "https://twitter.com/bastianleicht" 556 | } 557 | }, 558 | { 559 | "nick": "Staubfinger", 560 | "coordinates": [51.5764, 7.0539], 561 | "links": { 562 | "GitHub": "https://github.com/Popaulol" 563 | }, 564 | "contributor": true 565 | }, 566 | { 567 | "nick": "Granddave", 568 | "coordinates": [57.78, 14.16], 569 | "links": { 570 | "GitHub": "https://github.com/Granddave" 571 | }, 572 | "contributor": true 573 | }, 574 | { 575 | "nick": "rtobar", 576 | "coordinates": [-31.97767, 115.81505], 577 | "links": { 578 | "LinkedIn": "https://www.linkedin.com/in/rodrigotobar/", 579 | "GitHub": "https://github.com/rtobar" 580 | }, 581 | "contributor": true 582 | }, 583 | { 584 | "nick": "Baitinq", 585 | "coordinates": [40.4168, 3.7038], 586 | "links": { 587 | "GitHub": "https://github.com/Baitinq" 588 | }, 589 | "contributor": true 590 | }, 591 | { 592 | "nick": "kotrunga", 593 | "coordinates": [36.9145, -75.9917], 594 | "links": { 595 | "Website": "https://coltonhurst.com", 596 | "GitHub": "https://github.com/coltonhurst" 597 | } 598 | }, 599 | { 600 | "nick": "awkimball", 601 | "coordinates": [42.2392, -88.2738], 602 | "links": { 603 | "GitHub": "https://github.com/awkimball" 604 | } 605 | }, 606 | { 607 | "nick": "foragerDev", 608 | "coordinates": [31.418715, 73.079109], 609 | "links": { 610 | "GitHub": "https://github.com/foragerDev", 611 | "Twitter": "https://twitter.com/mohsan0073", 612 | "LinkedIn": "https://www.linkedin.com/in/mohsan-ali-01698012b" 613 | }, 614 | "contributor": true 615 | }, 616 | { 617 | "nick": "Tom", 618 | "coordinates": [40.7608, -111.891], 619 | "links": { 620 | "GitHub": "https://github.com/tomuta" 621 | }, 622 | "contributor": true 623 | }, 624 | { 625 | "nick": "orpheustaken", 626 | "coordinates": [-15.7934036, -47.8823172], 627 | "links": { 628 | "GitHub": "https://github.com/orpheustaken", 629 | "LinkedIn": "https://www.linkedin.com/in/matheusvfernandes/" 630 | } 631 | }, 632 | { 633 | "nick": "Slendi", 634 | "coordinates": [44.422502, 26.023716], 635 | "links": { 636 | "Website": "https://xslendi.xyz", 637 | "GitHub": "https://github.com/xslendix" 638 | } 639 | }, 640 | { 641 | "nick": "Pedro Pereira (pmhpereira)", 642 | "coordinates": [38.761202, -9.1607843], 643 | "links": { 644 | "GitHub": "https://github.com/pmhpereira", 645 | "Twitter": "https://twitter.com/pmhpereira", 646 | "LinkedIn": "https://www.linkedin.com/in/pmhpereira/" 647 | }, 648 | "contributor": true 649 | }, 650 | { 651 | "nick": "AtkinsSJ", 652 | "coordinates": [52.6285, 1.2964], 653 | "links": { 654 | "GitHub": "https://github.com/atkinssj", 655 | "Website": "http://samatkins.co.uk", 656 | "LinkedIn": "https://www.linkedin.com/in/atkinssj/" 657 | }, 658 | "contributor": true 659 | }, 660 | { 661 | "nick": "jamierocks", 662 | "coordinates": [52.7081, -2.7544], 663 | "links": { 664 | "Website": "https://www.jamiemansfield.me/", 665 | "GitHub": "https://github.com/jamierocks" 666 | }, 667 | "contributor": true 668 | }, 669 | { 670 | "nick": "DexesTTP", 671 | "coordinates": [43.697, 7.27], 672 | "links": { 673 | "GitHub": "https://github.com/Dexesttp" 674 | }, 675 | "contributor": true 676 | }, 677 | { 678 | "nick": "xexxa", 679 | "coordinates": [59.3897258, 17.9205633], 680 | "links": { 681 | "GitHub": "https://github.com/xexxa", 682 | "Website": "https://serenityos.net/~xexxa/" 683 | }, 684 | "contributor": true 685 | }, 686 | { 687 | "nick": "ulmer-a", 688 | "coordinates": [47.20041, 9.76719], 689 | "links": { 690 | "GitHub": "https://github.com/ulmer-a" 691 | }, 692 | "contributor": true 693 | }, 694 | { 695 | "nick": "timschumi", 696 | "coordinates": [48.36, 11.54], 697 | "links": { 698 | "Website": "https://timschumi.net", 699 | "GitHub": "https://github.com/timschumi" 700 | }, 701 | "contributor": true 702 | }, 703 | { 704 | "nick": "lenny", 705 | "coordinates": [39.71654, -104.98147], 706 | "links": { 707 | "GitHub": "https://github.com/ldm5180" 708 | }, 709 | "contributor": true 710 | }, 711 | { 712 | "nick": "Leon Albrecht - Hendiadyoin", 713 | "coordinates": [52.5542957, 13.4624136], 714 | "links": { 715 | "GitHub": "https://github.com/Hendiadyoin1" 716 | }, 717 | "contributor": true 718 | }, 719 | { 720 | "nick": "Simon Wanner - skyrising", 721 | "coordinates": [48.72155, 10.76808], 722 | "links": { 723 | "GitHub": "https://github.com/skyrising", 724 | "Twitter": "https://twitter.com/skyrising97", 725 | "Website": "https://skyrising.xyz" 726 | }, 727 | "contributor": true 728 | }, 729 | { 730 | "nick": "emanuele6", 731 | "coordinates": [45.9499962, 8.6333308], 732 | "links": { 733 | "GitHub": "https://github.com/emanuele6" 734 | }, 735 | "contributor": true 736 | }, 737 | { 738 | "nick": "Ali Chraghi - alic", 739 | "coordinates": [37.5517, 45.0675], 740 | "links": { 741 | "GitHub": "https://github.com/alichraghi" 742 | }, 743 | "contributor": true 744 | }, 745 | { 746 | "nick": "Seirdy", 747 | "coordinates": [37.32, -122.02], 748 | "links": { 749 | "Website": "https://seirdy.one", 750 | "Fediverse": "https://pleroma.envs.net/Seirdy", 751 | "Sourcehut": "https://sr.ht/~seirdy", 752 | "GitHub": "https://github.com/Seirdy" 753 | } 754 | }, 755 | { 756 | "nick": "Flolon", 757 | "coordinates": [39.78, -86.1328], 758 | "links": { 759 | "Website": "https://flolon.cc", 760 | "GitHub": "https://github.com/Flolon" 761 | } 762 | }, 763 | { 764 | "nick": "paulwratt", 765 | "coordinates": [-36.627472, 174.731577], 766 | "links": { 767 | "Website": "http://paulwratt.isource.net.nz/", 768 | "GitHub": "https://github.com/paulwratt" 769 | } 770 | }, 771 | { 772 | "nick": "hjalves", 773 | "coordinates": [39.749, -7.923], 774 | "links": { 775 | "Website": "https://halves.dev", 776 | "GitHub": "https://github.com/hjalves", 777 | "Twitter": "https://twitter.com/hjalves" 778 | } 779 | }, 780 | { 781 | "nick": "Sauler", 782 | "coordinates": [50.0372, 22.0037], 783 | "links": { 784 | "GitHub": "https://github.com/Sauler" 785 | }, 786 | "contributor": true 787 | }, 788 | { 789 | "nick": "Kyle Lanmon - lanmonster", 790 | "coordinates": [30.2672, -97.7431], 791 | "links": { 792 | "GitHub": "https://github.com/lanmonster" 793 | }, 794 | "contributor": true 795 | }, 796 | { 797 | "nick": "Rob", 798 | "coordinates": [-37.98, 145.25], 799 | "links": { 800 | "Website": "https://robryan.me", 801 | "GitHub": "https://github.com/robryanx", 802 | "Twitter": "https://twitter.com/_RobRyan" 803 | }, 804 | "contributor": true 805 | }, 806 | { 807 | "nick": "Benjamin Maxwell - MacDue", 808 | "coordinates": [53.480759, -2.242631], 809 | "links": { 810 | "GitHub": "https://github.com/MacDue" 811 | }, 812 | "contributor": true 813 | }, 814 | { 815 | "nick": "davidot", 816 | "coordinates": [52.55, 5.27], 817 | "links": { 818 | "GitHub": "https://github.com/davidot" 819 | }, 820 | "contributor": true 821 | }, 822 | { 823 | "nick": "jmdeejay", 824 | "coordinates": [46.811413, -71.2545212], 825 | "links": { 826 | "Website": "https://www.mubeatstudio.com", 827 | "GitHub": "https://github.com/jmdeejay", 828 | "LinkedIn": "https://www.linkedin.com/in/jean-michel-bourget-4839a719/" 829 | }, 830 | "contributor": true 831 | }, 832 | { 833 | "nick": "Bastiaan van der Plaat - bplaat", 834 | "coordinates": [52.011322, 4.710375], 835 | "links": { 836 | "Website": "https://bplaat.nl", 837 | "GitHub": "https://github.com/bplaat", 838 | "Twitter": "https://twitter.com/bplaat2", 839 | "LinkedIn": "https://www.linkedin.com/in/bplaat/" 840 | }, 841 | "contributor": true 842 | }, 843 | { 844 | "nick": "Filiph Siitam Sandström", 845 | "coordinates": [58.699, 12.453], 846 | "links": { 847 | "Website": "https://nordcom.io/", 848 | "GitHub": "https://github.com/filiphsps", 849 | "Twitter": "https://twitter.com/filiphsandstrom", 850 | "LinkedIn": "https://www.linkedin.com/in/filiphsandstrom/" 851 | }, 852 | "contributor": true 853 | }, 854 | { 855 | "nick": "nipos", 856 | "coordinates": [49.47631, 9.77266], 857 | "links": { 858 | "Website": "https://www.nikisoft.one", 859 | "Git": "https://codeberg.org/nipos", 860 | "GitHub": "https://github.com/nipos" 861 | }, 862 | "contributor": true 863 | }, 864 | { 865 | "nick": "adamjoer", 866 | "coordinates": [55.77186, 12.50514], 867 | "links": { 868 | "GitHub": "https://github.com/adamjoer", 869 | "LinkedIn": "https://www.linkedin.com/in/adam-harald-joergensen/" 870 | }, 871 | "contributor": true 872 | }, 873 | { 874 | "nick": "ninadsachania", 875 | "coordinates": [23.03431, 72.57924], 876 | "links": { 877 | "Website": "https://ninadsachania.github.io", 878 | "GitHub": "https://github.com/ninadsachania", 879 | "LinkedIn": "https://www.linkedin.com/in/ninadsachania", 880 | "Twitter": "https://x.com/NinadSachania" 881 | }, 882 | "contributor": true 883 | } 884 | ] 885 | --------------------------------------------------------------------------------