From 64a9d02e7c0ad8f54d9eff63257c8ac29f69b5b6 Mon Sep 17 00:00:00 2001 From: Gregor Santner Date: Fri, 7 Oct 2016 03:47:59 +0200 Subject: [PATCH] Update podlist --- app/src/main/AndroidManifest.xml | 52 +- .../data/DiasporaPodList.java | 45 +- .../fragment/PodSelectionFragment.java | 12 +- app/src/main/res/raw/podlist.json | 2804 +++++++++-------- 4 files changed, 1469 insertions(+), 1444 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 3ee52fa8..8f893869 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -66,7 +66,15 @@ - + + + + + + + + + @@ -74,7 +82,6 @@ - @@ -86,17 +93,16 @@ + - - + - @@ -104,15 +110,14 @@ + - - @@ -126,10 +131,14 @@ - - + + + + + + @@ -138,50 +147,43 @@ - - - - - - + - - + - @@ -200,32 +202,33 @@ - + - + + + + - - - + @@ -238,7 +241,6 @@ - @@ -246,4 +248,4 @@ - \ No newline at end of file + diff --git a/app/src/main/java/com/github/dfa/diaspora_android/data/DiasporaPodList.java b/app/src/main/java/com/github/dfa/diaspora_android/data/DiasporaPodList.java index 5373ca09..d89dca07 100644 --- a/app/src/main/java/com/github/dfa/diaspora_android/data/DiasporaPodList.java +++ b/app/src/main/java/com/github/dfa/diaspora_android/data/DiasporaPodList.java @@ -1,6 +1,8 @@ package com.github.dfa.diaspora_android.data; -import android.support.annotation.NonNull; +import org.json.JSONArray; +import org.json.JSONException; +import org.json.JSONObject; import java.io.Serializable; import java.util.ArrayList; @@ -8,10 +10,6 @@ import java.util.Collections; import java.util.Iterator; import java.util.List; -import org.json.JSONArray; -import org.json.JSONException; -import org.json.JSONObject; - /** * Created by gsantner (https://gsantner.github.io/ on 30.09.16. @@ -25,6 +23,8 @@ public class DiasporaPodList implements Iterable, S private boolean trackMergeChanges = false; private Integer trackAddedIndexStart = -1; private List trackUpdatedIndexes = new ArrayList<>(); + private boolean keepOldNameDuringMerge = false; + private long timestamp; public DiasporaPodList() { } @@ -45,6 +45,9 @@ public class DiasporaPodList implements Iterable, S pods.add(pod); } } + if (json.has("timestamp")) { + timestamp = json.getLong("timestamp"); + } return this; } @@ -58,6 +61,7 @@ public class DiasporaPodList implements Iterable, S jpods.put(pod.toJson()); } json.put("pods", jpods); + json.put("timestamp", System.currentTimeMillis()); return json; } @@ -89,6 +93,9 @@ public class DiasporaPodList implements Iterable, S if (updatePodBak.getScore() != 0 && updatePod.getScore() == 0) { updatePod.setScore(updatePodBak.getScore()); } + if (!updatePodBak.getName().equals("") && keepOldNameDuringMerge) { + updatePod.setName(updatePodBak.getName()); + } if (isTrackMergeChanges()) { trackUpdatedIndexes.add(index); } @@ -154,12 +161,20 @@ public class DiasporaPodList implements Iterable, S return trackUpdatedIndexes; } + public boolean isKeepOldNameDuringMerge() { + return keepOldNameDuringMerge; + } + + public void setKeepOldNameDuringMerge(boolean keepOldNameDuringMerge) { + this.keepOldNameDuringMerge = keepOldNameDuringMerge; + } + /* ██████╗ ██████╗ ██████╗ - * ██╔══██╗██╔═══██╗██╔══██╗ - * ██████╔╝██║ ██║██║ ██║ - * ██╔═══╝ ██║ ██║██║ ██║ - * ██║ ╚██████╔╝██████╔╝ - * ╚═╝ ╚═════╝ ╚═════╝ */ + * ██╔══██╗██╔═══██╗██╔══██╗ + * ██████╔╝██║ ██║██║ ██║ + * ██╔═══╝ ██║ ██║██║ ██║ + * ██║ ╚██████╔╝██████╔╝ + * ╚═╝ ╚═════╝ ╚═════╝ */ public static class DiasporaPod implements Iterable, Comparable, Serializable { private List podUrls = new ArrayList<>(); private List mainLangs = new ArrayList<>(); @@ -289,7 +304,6 @@ public class DiasporaPodList implements Iterable, S /* * Getter & Setter */ - @NonNull public List getPodUrls() { return podUrls; } @@ -299,7 +313,6 @@ public class DiasporaPodList implements Iterable, S return this; } - @NonNull public List getMainLangs() { return mainLangs; } @@ -319,8 +332,8 @@ public class DiasporaPodList implements Iterable, S /** * Returns the first DiasporaPodUrl in the list */ - public DiasporaPodUrl getPodUrl(){ - if(podUrls.size() > 0){ + public DiasporaPodUrl getPodUrl() { + if (podUrls.size() > 0) { return podUrls.get(0); } return null; @@ -433,7 +446,7 @@ public class DiasporaPodList implements Iterable, S /** * Set default values for https */ - public void setHttpsDefaults(){ + public void setHttpsDefaults() { setProtocol("https"); setPort(443); } @@ -442,7 +455,7 @@ public class DiasporaPodList implements Iterable, S /** * Set default values for http */ - public void setHttpDefaults(){ + public void setHttpDefaults() { setProtocol("http"); setPort(80); } diff --git a/app/src/main/java/com/github/dfa/diaspora_android/fragment/PodSelectionFragment.java b/app/src/main/java/com/github/dfa/diaspora_android/fragment/PodSelectionFragment.java index 43f6e92e..3f49544f 100644 --- a/app/src/main/java/com/github/dfa/diaspora_android/fragment/PodSelectionFragment.java +++ b/app/src/main/java/com/github/dfa/diaspora_android/fragment/PodSelectionFragment.java @@ -20,6 +20,7 @@ import android.webkit.CookieManager; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.ListView; +import android.widget.TextView; import com.github.dfa.diaspora_android.App; import com.github.dfa.diaspora_android.R; @@ -83,7 +84,14 @@ public class PodSelectionFragment extends CustomFragment implements SearchView.O listViewPod.setTextFilterEnabled(true); listViewPod.setOnItemClickListener(new AdapterView.OnItemClickListener() { public void onItemClick(AdapterView adapterView, View view, int i, long l) { - showPodSelectionDialog(podList.getPodAt(i)); + String text = ((TextView) view).getText().toString(); + for (DiasporaPod pod : podList) { + if (pod.getPodUrl().getHost().equals(text)) { + showPodSelectionDialog(pod); + return; + } + } + } }); LocalBroadcastManager.getInstance(getContext()).registerReceiver(podListReceiver, new IntentFilter(GetPodsService.MESSAGE_PODS_RECEIVED)); @@ -139,7 +147,7 @@ public class PodSelectionFragment extends CustomFragment implements SearchView.O private void updateListedPods() { final ArrayList listedPodsList = new ArrayList<>(); for (DiasporaPod pod : this.podList) { - listedPodsList.add(pod.getPodUrls().get(0).getHost()); + listedPodsList.add(pod.getPodUrl().getHost()); } listViewPodAdapter = new ArrayAdapter<>( diff --git a/app/src/main/res/raw/podlist.json b/app/src/main/res/raw/podlist.json index fc99412c..f7291aa2 100644 --- a/app/src/main/res/raw/podlist.json +++ b/app/src/main/res/raw/podlist.json @@ -1,1401 +1,1403 @@ -{"pods": [ - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "austriapod.at"}], - "name": "austriapod.at", - "mainLangs": ["de"], - "id": 38103 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "berdaguermontes.eu"}], - "name": "berdaguermontes.eu", - "mainLangs": [], - "id": 25432 - }, - { - "active6": 184, - "score": 20, - "podUrls": [{"host": "berlinspora.de"}], - "name": "berlinspora.de", - "mainLangs": ["de"], - "id": 38327 - }, - { - "active6": 56, - "score": 20, - "podUrls": [{"host": "canfly.org"}], - "name": "canfly.org", - "mainLangs": [], - "id": 49516 - }, - { - "active6": 7, - "score": 20, - "podUrls": [{"host": "community.kanalinseln.de"}], - "name": "community.kanalinseln.de", - "mainLangs": ["de"], - "id": 37468 - }, - { - "active6": 38, - "score": -22, - "podUrls": [{"host": "cryptospora.net"}], - "name": "cryptospora.net", - "mainLangs": [], - "id": 46568 - }, - { - "active6": 73, - "score": 20, - "podUrls": [{"host": "d.consumium.org"}], - "name": "d.consumium.org", - "mainLangs": [], - "id": 2107 - }, - { - "active6": 872, - "score": 20, - "podUrls": [{"host": "despora.de"}], - "name": "despora.de", - "mainLangs": ["de"], - "id": 6695 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "dia.manuelbichler.at"}], - "name": "dia.manuelbichler.at", - "mainLangs": ["de"], - "id": 14817 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "dia.myocastor.de"}], - "name": "dia.myocastor.de", - "mainLangs": ["de"], - "id": 7190 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "diapod.net"}], - "name": "diapod.net", - "mainLangs": [], - "id": 43611 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diapod.org"}], - "name": "diapod.org", - "mainLangs": [], - "id": 13926 - }, - { - "active6": 145, - "score": 20, - "podUrls": [{"host": "diasp.ca"}], - "name": "diasp.ca", - "mainLangs": [], - "id": 40056 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "diasp.cz"}], - "name": "diasp.cz", - "mainLangs": [], - "id": 21452 - }, - { - "active6": 441, - "score": -22, - "podUrls": [{"host": "diasp.de"}], - "name": "diasp.de", - "mainLangs": ["de"], - "id": 46864 - }, - { - "active6": 1372, - "score": -22, - "podUrls": [{"host": "diasp.eu"}], - "name": "diasp.eu", - "mainLangs": [], - "id": 46423 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diasp.eu.com"}], - "name": "diasp.eu.com", - "mainLangs": [], - "id": 4343 - }, - { - "active6": 195, - "score": 20, - "podUrls": [{"host": "diasp.nl"}], - "name": "diasp.nl", - "mainLangs": ["nl"], - "id": 33262 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diasp.org"}], - "name": "diasp.org", - "mainLangs": [], - "id": 12688 - }, - { - "active6": 234, - "score": 20, - "podUrls": [{"host": "diaspod.de"}], - "name": "diaspod.de", - "mainLangs": ["de"], - "id": 2553 - }, - { - "active6": 274, - "score": -22, - "podUrls": [{"host": "diaspora-fr.org"}], - "name": "diaspora-fr.org", - "mainLangs": [], - "id": 13909 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "diaspora.alfter.us"}], - "name": "alfter.us", - "mainLangs": ["en"], - "id": 13402 - }, - { - "active6": 30, - "score": 20, - "podUrls": [{"host": "diaspora.bohramt.de"}], - "name": "bohramt.de", - "mainLangs": ["de"], - "id": 8209 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "diaspora.com.ar"}], - "name": "com.ar", - "mainLangs": [], - "id": 22994 - }, - { - "active6": 27, - "score": 20, - "podUrls": [{"host": "diaspora.deadhexagon.com"}], - "name": "deadhexagon.com", - "mainLangs": [], - "id": 16721 - }, - { - "active6": 49, - "score": 20, - "podUrls": [{"host": "diaspora.digitalismus.org"}], - "name": "digitalismus.org", - "mainLangs": [], - "id": 21515 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diaspora.dorf-post.de"}], - "name": "dorf-post.de", - "mainLangs": ["de"], - "id": 43137 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "diaspora.espiritolivre.org"}], - "name": "espiritolivre.org", - "mainLangs": [], - "id": 8690 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diaspora.fr33.co"}], - "name": "fr33.co", - "mainLangs": [], - "id": 46565 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diaspora.horwood.biz"}], - "name": "horwood.biz", - "mainLangs": [], - "id": 12684 - }, - { - "active6": 106, - "score": 20, - "podUrls": [{"host": "diaspora.hzsogood.net"}], - "name": "hzsogood.net", - "mainLangs": [], - "id": 3651 - }, - { - "active6": 82, - "score": 20, - "podUrls": [{"host": "diaspora.kapper.net"}], - "name": "kapper.net", - "mainLangs": [], - "id": 40765 - }, - { - "active6": 160, - "score": 20, - "podUrls": [{"host": "diaspora.koehn.com"}], - "name": "koehn.com", - "mainLangs": [], - "id": 25812 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diaspora.kosebamse.com"}], - "name": "kosebamse.com", - "mainLangs": [], - "id": 15474 - }, - { - "active6": 3, - "score": 20, - "podUrls": [{"host": "diaspora.lebarjack.com"}], - "name": "lebarjack.com", - "mainLangs": [], - "id": 36540 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diaspora.mazi.tk"}], - "name": "mazi.tk", - "mainLangs": [], - "id": 16191 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "diaspora.microdata.co.uk"}], - "name": "microdata.co.uk", - "mainLangs": ["en"], - "id": 8704 - }, - { - "active6": 3, - "score": 20, - "podUrls": [{"host": "diaspora.moosje.nl"}], - "name": "moosje.nl", - "mainLangs": ["nl"], - "id": 45461 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "diaspora.net.gr"}], - "name": "net.gr", - "mainLangs": [], - "id": 9863 - }, - { - "active6": 282, - "score": 20, - "podUrls": [{"host": "diaspora.permutationsofchaos.com"}], - "name": "permutationsofchaos.com", - "mainLangs": [], - "id": 1513 - }, - { - "active6": 65, - "score": 20, - "podUrls": [{"host": "diaspora.pimpmypony.eu"}], - "name": "pimpmypony.eu", - "mainLangs": [], - "id": 38497 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diaspora.pingupod.de"}], - "name": "pingupod.de", - "mainLangs": ["de"], - "id": 10135 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "diaspora.podzimek.org"}], - "name": "podzimek.org", - "mainLangs": [], - "id": 12139 - }, - { - "active6": 65, - "score": 20, - "podUrls": [{"host": "diaspora.poleni.com"}], - "name": "poleni.com", - "mainLangs": [], - "id": 1154 - }, - { - "active6": 177, - "score": 20, - "podUrls": [{"host": "diaspora.psyco.fr"}], - "name": "psyco.fr", - "mainLangs": ["fr"], - "id": 31397 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diaspora.punkbeer.me"}], - "name": "punkbeer.me", - "mainLangs": [], - "id": 44751 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diaspora.raven-ip.com"}], - "name": "raven-ip.com", - "mainLangs": [], - "id": 17410 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diaspora.retrodigital.net"}], - "name": "retrodigital.net", - "mainLangs": [], - "id": 24640 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "diaspora.sceal.ie"}], - "name": "sceal.ie", - "mainLangs": [], - "id": 38240 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "diaspora.schrauger.com"}], - "name": "schrauger.com", - "mainLangs": [], - "id": 25745 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diaspora.slowb.ro"}], - "name": "slowb.ro", - "mainLangs": [], - "id": 24365 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "diaspora.soh.re"}], - "name": "soh.re", - "mainLangs": [], - "id": 39183 - }, - { - "active6": 40, - "score": 20, - "podUrls": [{"host": "diaspora.subsignal.org"}], - "name": "subsignal.org", - "mainLangs": [], - "id": 22108 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "diaspora.trash-talk.de"}], - "name": "trash-talk.de", - "mainLangs": ["de"], - "id": 46672 - }, - { - "active6": 19, - "score": 20, - "podUrls": [{"host": "diaspora.u4u.org"}], - "name": "u4u.org", - "mainLangs": [], - "id": 9278 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diaspora.undernet.uy"}], - "name": "undernet.uy", - "mainLangs": [], - "id": 14710 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diaspora.unixcorn.org"}], - "name": "unixcorn.org", - "mainLangs": [], - "id": 43416 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "diaspora.weenmebrown.com"}], - "name": "weenmebrown.com", - "mainLangs": [], - "id": 37065 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diaspora.xcelor8.com"}], - "name": "xcelor8.com", - "mainLangs": [], - "id": 27412 - }, - { - "active6": 1264, - "score": 20, - "podUrls": [{"host": "diasporabr.com.br"}], - "name": "diasporabr.com.br", - "mainLangs": [], - "id": 18248 - }, - { - "active6": 394, - "score": 20, - "podUrls": [{"host": "diasporabrazil.org"}], - "name": "diasporabrazil.org", - "mainLangs": [], - "id": 42422 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diasporanet.tk"}], - "name": "diasporanet.tk", - "mainLangs": [], - "id": 27962 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diasporapr.tk"}], - "name": "diasporapr.tk", - "mainLangs": [], - "id": 12020 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "diasporausa.com"}], - "name": "diasporausa.com", - "mainLangs": [], - "id": 46740 - }, - { - "active6": 1, - "score": 20, - "podUrls": [{"host": "diasporing.ch"}], - "name": "Diasporing.ch", - "mainLangs": ["de"], - "id": 8471 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "dissociateduse.rs"}], - "name": "dissociateduse.rs", - "mainLangs": [], - "id": 37634 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "distributed.chat"}], - "name": "distributed.chat", - "mainLangs": [], - "id": 43459 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "eat.egregious.ly"}], - "name": "eat.egregious.ly", - "mainLangs": [], - "id": 14227 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "ege.land"}], - "name": "ege.land", - "mainLangs": [], - "id": 7825 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "espora.com.es"}], - "name": "espora.com.es", - "mainLangs": [], - "id": 11247 - }, - { - "active6": 204, - "score": 20, - "podUrls": [{"host": "espora.social"}], - "name": "espora.social", - "mainLangs": [], - "id": 5948 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "failure.net"}], - "name": "failure.net", - "mainLangs": [], - "id": 41690 - }, - { - "active6": 177, - "score": 20, - "podUrls": [{"host": "flokk.no"}], - "name": "flokk.no", - "mainLangs": [], - "id": 45658 - }, - { - "active6": 8973, - "score": 20, - "podUrls": [{"host": "framasphere.org"}], - "name": "framasphere.org", - "mainLangs": [], - "id": 38776 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "freehuman.fr"}], - "name": "freehuman.fr", - "mainLangs": ["fr"], - "id": 21531 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "friendica.tk"}], - "name": "friendica.tk", - "mainLangs": [], - "id": 27402 - }, - { - "active6": 19, - "score": 6, - "podUrls": [{"host": "home.enslaver.net"}], - "name": "home.enslaver.net", - "mainLangs": [], - "id": 13758 - }, - { - "active6": 71, - "score": 20, - "podUrls": [{"host": "idoru.pl"}], - "name": "idoru.pl", - "mainLangs": [], - "id": 40630 - }, - { - "active6": 68, - "score": 20, - "podUrls": [{"host": "iliketoast.net"}], - "name": "iliketoast.net", - "mainLangs": [], - "id": 23287 - }, - { - "active6": 10775, - "score": 20, - "podUrls": [ - {"host": "joindiaspora.com"}, - { - "protocol": "http", - "port": 80, - "host": "diasporaaqmjixh5.onion" - } - ], - "name": "joindiaspora.com", - "mainLangs": [], - "id": 38077 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "jons.gr"}], - "name": "jons.gr", - "mainLangs": [], - "id": 41539 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "kapok.se"}], - "name": "kapok.se", - "mainLangs": [], - "id": 32786 - }, - { - "active6": 81, - "score": 20, - "podUrls": [{"host": "karmasphe.re"}], - "name": "karmasphe.re", - "mainLangs": [], - "id": 20368 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "kosmospora.net"}], - "name": "kosmospora.net", - "mainLangs": [], - "id": 46869 - }, - { - "active6": 25, - "score": 20, - "podUrls": [{"host": "laba.mba"}], - "name": "laba.mba", - "mainLangs": [], - "id": 32393 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "legends.im"}], - "name": "legends.im", - "mainLangs": [], - "id": 46156 - }, - { - "active6": 151, - "score": 20, - "podUrls": [{"host": "liberdade.digital"}], - "name": "liberdade.digital", - "mainLangs": [], - "id": 40958 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "libertypod.org"}], - "name": "libertypod.org", - "mainLangs": [], - "id": 33200 - }, - { - "active6": 39, - "score": 20, - "podUrls": [{"host": "librenet.co.za"}], - "name": "librenet.co.za", - "mainLangs": [], - "id": 14862 - }, - { - "active6": 180, - "score": 20, - "podUrls": [{"host": "librenet.gr"}], - "name": "librenet.gr", - "mainLangs": [], - "id": 27582 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "londor.be"}], - "name": "londor.be", - "mainLangs": [], - "id": 32281 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "lubiora.de"}], - "name": "lubiora.de", - "mainLangs": ["de"], - "id": 1569 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "misamigos.online"}], - "name": "misamigos.online", - "mainLangs": [], - "id": 16366 - }, - { - "active6": 673, - "score": 20, - "podUrls": [{"host": "mondiaspora.net"}], - "name": "mondiaspora.net", - "mainLangs": [], - "id": 3365 - }, - { - "active6": 547, - "score": 20, - "podUrls": [{"host": "nerdpol.ch"}], - "name": "nerdpol.ch", - "mainLangs": ["de"], - "id": 17343 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "networkwizard.de"}], - "name": "networkwizard.de", - "mainLangs": ["de"], - "id": 47458 - }, - { - "active6": 4, - "score": 20, - "podUrls": [{"host": "nx-pod.de"}], - "name": "nx-pod.de", - "mainLangs": ["de"], - "id": 14678 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "parteidervernunft.com"}], - "name": "parteidervernunft.com", - "mainLangs": [], - "id": 31558 - }, - { - "active6": 36, - "score": 20, - "podUrls": [{"host": "pe.spbstu.ru"}], - "name": "pe.spbstu.ru", - "mainLangs": ["ru"], - "id": 39808 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.4ray.co"}], - "name": "4ray.co", - "mainLangs": [], - "id": 2522 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.8n1.org"}], - "name": "8n1.org", - "mainLangs": [], - "id": 12504 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "pod.alterworld.info"}], - "name": "alterworld.info", - "mainLangs": [], - "id": 1176 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.asap-soft.com"}], - "name": "asap-soft.com", - "mainLangs": [], - "id": 49271 - }, - { - "active6": 1, - "score": 20, - "podUrls": [{"host": "pod.cannyfoxx.me"}], - "name": "cannyfoxx.me", - "mainLangs": [], - "id": 3505 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.comin.dk"}], - "name": "comin.dk", - "mainLangs": [], - "id": 29446 - }, - { - "active6": 11, - "score": 20, - "podUrls": [{"host": "pod.cyberdungeon.de"}], - "name": "cyberdungeon.de", - "mainLangs": ["de"], - "id": 887 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.dapor.net"}], - "name": "dapor.net", - "mainLangs": [], - "id": 45578 - }, - { - "active6": 4, - "score": 20, - "podUrls": [{"host": "pod.datenknoten.me"}], - "name": "datenknoten.me", - "mainLangs": [], - "id": 34173 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.diaspora.software"}], - "name": "software", - "mainLangs": [], - "id": 33657 - }, - { - "active6": 22, - "score": 20, - "podUrls": [{"host": "pod.dirkomatik.de"}], - "name": "dirkomatik.de", - "mainLangs": ["de"], - "id": 47570 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.disroot.org"}], - "name": "disroot.org", - "mainLangs": [], - "id": 39828 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "pod.dobs.at"}], - "name": "dobs.at", - "mainLangs": ["de"], - "id": 48725 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.dragondreaming.de"}], - "name": "dragondreaming.de", - "mainLangs": ["de"], - "id": 16107 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.gedankenausbruch.com"}], - "name": "gedankenausbruch.com", - "mainLangs": [], - "id": 6893 - }, - { - "active6": 7329, - "score": 20, - "podUrls": [{"host": "pod.geraspora.de"}], - "name": "geraspora.de", - "mainLangs": ["de"], - "id": 24783 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "pod.gleisnetze.de"}], - "name": "gleisnetze.de", - "mainLangs": ["de"], - "id": 31471 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "pod.goodsharing.at"}], - "name": "goodsharing.at", - "mainLangs": ["de"], - "id": 36615 - }, - { - "active6": 59, - "score": 20, - "podUrls": [{"host": "pod.hashtagueule.fr"}], - "name": "hashtagueule.fr", - "mainLangs": ["fr"], - "id": 10296 - }, - { - "active6": 87, - "score": 20, - "podUrls": [{"host": "pod.hfrc.de"}], - "name": "hfrc.de", - "mainLangs": ["de"], - "id": 45746 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "pod.hoizi.net"}], - "name": "hoizi.net", - "mainLangs": [], - "id": 27479 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.infoduv.fr"}], - "name": "infoduv.fr", - "mainLangs": ["fr"], - "id": 26836 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "pod.itabs.nl"}], - "name": "itabs.nl", - "mainLangs": ["nl"], - "id": 15016 - }, - { - "active6": 15, - "score": 20, - "podUrls": [{"host": "pod.jpope.org"}], - "name": "jpope.org", - "mainLangs": [], - "id": 11674 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.kepow.org"}], - "name": "kepow.org", - "mainLangs": [], - "id": 32151 - }, - { - "active6": 61, - "score": 20, - "podUrls": [{"host": "pod.liebeleu.de"}], - "name": "liebeleu.de", - "mainLangs": ["de"], - "id": 29566 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.neikos.me"}], - "name": "neikos.me", - "mainLangs": [], - "id": 9248 - }, - { - "active6": 108, - "score": 20, - "podUrls": [{"host": "pod.nomorestars.com"}], - "name": "nomorestars.com", - "mainLangs": [], - "id": 31958 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.orkz.net"}], - "name": "orkz.net", - "mainLangs": [], - "id": 41604 - }, - { - "active6": 34, - "score": 20, - "podUrls": [{"host": "pod.ponk.pink"}], - "name": "ponk.pink", - "mainLangs": [], - "id": 14849 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "pod.promedol.com"}], - "name": "promedol.com", - "mainLangs": [], - "id": 21338 - }, - { - "active6": 97, - "score": 20, - "podUrls": [{"host": "pod.psynet.su"}], - "name": "psynet.su", - "mainLangs": [], - "id": 16045 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.readme.is"}], - "name": "readme.is", - "mainLangs": [], - "id": 32854 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.richtig.koeln"}], - "name": "richtig.koeln", - "mainLangs": [], - "id": 38790 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "pod.roocita.com"}], - "name": "roocita.com", - "mainLangs": [], - "id": 47269 - }, - { - "active6": 92, - "score": 20, - "podUrls": [{"host": "pod.ros-it.ch"}], - "name": "ros-it.ch", - "mainLangs": ["de"], - "id": 17574 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "pod.sccn.club"}], - "name": "sccn.club", - "mainLangs": [], - "id": 19070 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "pod.sertelon.fr"}], - "name": "sertelon.fr", - "mainLangs": ["fr"], - "id": 15234 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.shouldit.work"}], - "name": "shouldit.work", - "mainLangs": [], - "id": 47610 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.skisso.com"}], - "name": "skisso.com", - "mainLangs": [], - "id": 32924 - }, - { - "active6": 5, - "score": 20, - "podUrls": [{"host": "pod.storel.li"}], - "name": "storel.li", - "mainLangs": [], - "id": 33181 - }, - { - "active6": 76, - "score": 20, - "podUrls": [{"host": "pod.tchncs.de"}], - "name": "tchncs.de", - "mainLangs": ["de"], - "id": 20115 - }, - { - "active6": 50, - "score": 20, - "podUrls": [{"host": "pod.thomasdalichow.de"}], - "name": "thomasdalichow.de", - "mainLangs": ["de"], - "id": 12001 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "pod.undreaming.org"}], - "name": "undreaming.org", - "mainLangs": [], - "id": 40460 - }, - { - "active6": 52, - "score": 20, - "podUrls": [{"host": "podbay.net"}], - "name": "podbay.net", - "mainLangs": [], - "id": 16270 - }, - { - "active6": 344, - "score": 20, - "podUrls": [{"host": "poddery.com"}], - "name": "poddery.com", - "mainLangs": [], - "id": 36667 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "podricing.pw"}], - "name": "podricing.pw", - "mainLangs": [], - "id": 6398 - }, - { - "active6": 90, - "score": 20, - "podUrls": [{"host": "pubpod.alqualonde.org"}], - "name": "pubpod.alqualonde.org", - "mainLangs": [], - "id": 26555 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "realms.the-wizard.co.za"}], - "name": "realms.the-wizard.co.za", - "mainLangs": [], - "id": 7065 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "revreso.de"}], - "name": "revreso.de", - "mainLangs": ["de"], - "id": 41788 - }, - { - "active6": 106, - "score": 20, - "podUrls": [{"host": "ruhrspora.de"}], - "name": "ruhrspora.de", - "mainLangs": ["de"], - "id": 46198 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "russiandiaspora.org"}], - "name": "russiandiaspora.org", - "mainLangs": [], - "id": 22166 - }, - { - "active6": 634, - "score": 20, - "podUrls": [{"host": "sechat.org"}], - "name": "sechat.org", - "mainLangs": [], - "id": 6524 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "shrekislove.us"}], - "name": "shrekislove.us", - "mainLangs": ["en"], - "id": 39003 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "social.acclaro.digital"}], - "name": "acclaro.digital", - "mainLangs": [], - "id": 33853 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "social.baldr.io"}], - "name": "baldr.io", - "mainLangs": [], - "id": 7781 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "social.daxbau.net"}], - "name": "daxbau.net", - "mainLangs": [], - "id": 37517 - }, - { - "active6": 84, - "score": 20, - "podUrls": [{"host": "social.elaon.de"}], - "name": "elaon.de", - "mainLangs": ["de"], - "id": 30112 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "social.lanham.id.au"}], - "name": "lanham.id.au", - "mainLangs": [], - "id": 48421 - }, - { - "active6": 21, - "score": 20, - "podUrls": [{"host": "social.mbuto.me"}], - "name": "mbuto.me", - "mainLangs": [], - "id": 18258 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "social.sum7.de"}], - "name": "sum7.de", - "mainLangs": ["de"], - "id": 8983 - }, - { - "active6": 176, - "score": 20, - "podUrls": [{"host": "socializer.cc"}], - "name": "socializer.cc", - "mainLangs": [], - "id": 30584 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "spora.com.ua"}], - "name": "spora.com.ua", - "mainLangs": [], - "id": 29583 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "spora.zone"}], - "name": "spora.zone", - "mainLangs": [], - "id": 24735 - }, - { - "active6": 12, - "score": 20, - "podUrls": [{"host": "subvillage.de"}], - "name": "subvillage.de", - "mainLangs": ["de"], - "id": 29359 - }, - { - "active6": 50, - "score": 20, - "podUrls": [{"host": "sysad.org"}], - "name": "sysad.org", - "mainLangs": [], - "id": 45830 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "teki.be"}], - "name": "teki.be", - "mainLangs": [], - "id": 5276 - }, - { - "active6": 4299, - "score": 20, - "podUrls": [{"host": "therealtalk.org"}], - "name": "therealtalk.org", - "mainLangs": [], - "id": 26786 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "thinkopen.net"}], - "name": "thinkopen.net", - "mainLangs": [], - "id": 7366 - }, - { - "active6": 92, - "score": 20, - "podUrls": [{"host": "tippentappen.de"}], - "name": "tippentappen.de", - "mainLangs": ["de"], - "id": 622 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "united.zkp.fr"}], - "name": "united.zkp.fr", - "mainLangs": ["fr"], - "id": 25677 - }, - { - "active6": 0, - "score": 20, - "podUrls": [{"host": "whatsnewz.com"}], - "name": "whatsnewz.com", - "mainLangs": [], - "id": 5842 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "wk3.org"}], - "name": "wk3.org", - "mainLangs": [], - "id": 39292 - }, - { - "active6": 0, - "score": 0, - "podUrls": [{"host": "www.datataffel.dk"}], - "name": "datataffel.dk", - "mainLangs": [], - "id": 35984 - }, - { - "active6": 38, - "score": 20, - "podUrls": [{"host": "www.diasporaix.de"}], - "name": "diasporaix.de", - "mainLangs": ["de"], - "id": 26219 - } -]} +{ + "pods": [ + { + "active6": 10775, + "score": 20, + "podUrls": [ + {"host": "joindiaspora.com"}, + { + "protocol": "http", + "port": 80, + "host": "diasporaaqmjixh5.onion" + } + ], + "name": "JoinDiaspora*", + "mainLangs": ["en"], + "id": 38077 + }, + { + "active6": 7260, + "score": 20, + "podUrls": [{"host": "pod.geraspora.de"}], + "name": "Geraspora", + "mainLangs": ["de"], + "id": 24783 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diasp.org"}], + "name": "diasporg*", + "mainLangs": [], + "id": 12688 + }, + { + "active6": 9039, + "score": 20, + "podUrls": [{"host": "framasphere.org"}], + "name": "Framasphere", + "mainLangs": [], + "id": 38776 + }, + { + "active6": 540, + "score": 20, + "podUrls": [{"host": "nerdpol.ch"}], + "name": "nerdpol.ch*", + "mainLangs": ["de"], + "id": 17343 + }, + { + "active6": 859, + "score": 20, + "podUrls": [{"host": "despora.de"}], + "name": "Despora*", + "mainLangs": ["de"], + "id": 6695 + }, + { + "active6": 626, + "score": 20, + "podUrls": [ + {"host": "sechat.org"}, + { + "protocol": "http", + "port": 80, + "host": "sechatqpscuj2npx.onion" + } + ], + "name": "Sechat*", + "mainLangs": [], + "id": 6524 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "austriapod.at"}], + "name": "austriapod.at", + "mainLangs": ["de"], + "id": 38103 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "berdaguermontes.eu"}], + "name": "berdaguermontes.eu", + "mainLangs": [], + "id": 25432 + }, + { + "active6": 179, + "score": 20, + "podUrls": [{"host": "berlinspora.de"}], + "name": "berlinspora.de", + "mainLangs": ["de"], + "id": 38327 + }, + { + "active6": 56, + "score": 20, + "podUrls": [{"host": "canfly.org"}], + "name": "canfly.org", + "mainLangs": [], + "id": 49516 + }, + { + "active6": 6, + "score": 20, + "podUrls": [{"host": "community.kanalinseln.de"}], + "name": "community.kanalinseln.de", + "mainLangs": ["de"], + "id": 37468 + }, + { + "active6": 38, + "score": -22, + "podUrls": [{"host": "cryptospora.net"}], + "name": "cryptospora.net", + "mainLangs": [], + "id": 46568 + }, + { + "active6": 69, + "score": 20, + "podUrls": [{"host": "d.consumium.org"}], + "name": "d.consumium.org", + "mainLangs": [], + "id": 2107 + }, + { + "active6": 21, + "score": 20, + "podUrls": [{"host": "dia.manuelbichler.at"}], + "name": "dia.manuelbichler.at", + "mainLangs": ["de"], + "id": 14817 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "dia.myocastor.de"}], + "name": "dia.myocastor.de", + "mainLangs": ["de"], + "id": 7190 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "diapod.net"}], + "name": "diapod.net", + "mainLangs": [], + "id": 43611 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diapod.org"}], + "name": "diapod.org", + "mainLangs": [], + "id": 13926 + }, + { + "active6": 146, + "score": 20, + "podUrls": [{"host": "diasp.ca"}], + "name": "diasp.ca", + "mainLangs": [], + "id": 40056 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "diasp.cz"}], + "name": "diasp.cz", + "mainLangs": [], + "id": 21452 + }, + { + "active6": 441, + "score": -22, + "podUrls": [{"host": "diasp.de"}], + "name": "diasp.de", + "mainLangs": ["de"], + "id": 46864 + }, + { + "active6": 1372, + "score": -22, + "podUrls": [{"host": "diasp.eu"}], + "name": "diasp.eu", + "mainLangs": [], + "id": 46423 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diasp.eu.com"}], + "name": "diasp.eu.com", + "mainLangs": [], + "id": 4343 + }, + { + "active6": 199, + "score": 20, + "podUrls": [{"host": "diasp.nl"}], + "name": "diasp.nl", + "mainLangs": ["nl"], + "id": 33262 + }, + { + "active6": 234, + "score": 20, + "podUrls": [{"host": "diaspod.de"}], + "name": "diaspod.de", + "mainLangs": ["de"], + "id": 2553 + }, + { + "active6": 274, + "score": -22, + "podUrls": [{"host": "diaspora-fr.org"}], + "name": "diaspora-fr.org", + "mainLangs": [], + "id": 13909 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "diaspora.alfter.us"}], + "name": "alfter.us", + "mainLangs": ["en"], + "id": 13402 + }, + { + "active6": 30, + "score": 20, + "podUrls": [{"host": "diaspora.bohramt.de"}], + "name": "bohramt.de", + "mainLangs": ["de"], + "id": 8209 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "diaspora.com.ar"}], + "name": "com.ar", + "mainLangs": [], + "id": 22994 + }, + { + "active6": 27, + "score": 20, + "podUrls": [{"host": "diaspora.deadhexagon.com"}], + "name": "deadhexagon.com", + "mainLangs": [], + "id": 16721 + }, + { + "active6": 0, + "score": 12, + "podUrls": [{"host": "diaspora.digi-merc.org"}], + "name": "digi-merc.org", + "mainLangs": [], + "id": 13165 + }, + { + "active6": 49, + "score": 20, + "podUrls": [{"host": "diaspora.digitalismus.org"}], + "name": "digitalismus.org", + "mainLangs": [], + "id": 21515 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diaspora.dorf-post.de"}], + "name": "dorf-post.de", + "mainLangs": ["de"], + "id": 43137 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "diaspora.espiritolivre.org"}], + "name": "espiritolivre.org", + "mainLangs": [], + "id": 8690 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diaspora.fr33.co"}], + "name": "fr33.co", + "mainLangs": [], + "id": 46565 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diaspora.horwood.biz"}], + "name": "horwood.biz", + "mainLangs": [], + "id": 12684 + }, + { + "active6": 102, + "score": 20, + "podUrls": [{"host": "diaspora.hzsogood.net"}], + "name": "hzsogood.net", + "mainLangs": [], + "id": 3651 + }, + { + "active6": 78, + "score": 20, + "podUrls": [{"host": "diaspora.kapper.net"}], + "name": "kapper.net", + "mainLangs": [], + "id": 40765 + }, + { + "active6": 155, + "score": 20, + "podUrls": [{"host": "diaspora.koehn.com"}], + "name": "koehn.com", + "mainLangs": [], + "id": 25812 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diaspora.kosebamse.com"}], + "name": "kosebamse.com", + "mainLangs": [], + "id": 15474 + }, + { + "active6": 3, + "score": 20, + "podUrls": [{"host": "diaspora.lebarjack.com"}], + "name": "lebarjack.com", + "mainLangs": [], + "id": 36540 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diaspora.mazi.tk"}], + "name": "mazi.tk", + "mainLangs": [], + "id": 16191 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "diaspora.microdata.co.uk"}], + "name": "microdata.co.uk", + "mainLangs": ["en"], + "id": 8704 + }, + { + "active6": 2, + "score": 20, + "podUrls": [{"host": "diaspora.moosje.nl"}], + "name": "moosje.nl", + "mainLangs": ["nl"], + "id": 45461 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "diaspora.net.gr"}], + "name": "net.gr", + "mainLangs": [], + "id": 9863 + }, + { + "active6": 278, + "score": 20, + "podUrls": [{"host": "diaspora.permutationsofchaos.com"}], + "name": "permutationsofchaos.com", + "mainLangs": [], + "id": 1513 + }, + { + "active6": 61, + "score": 20, + "podUrls": [{"host": "diaspora.pimpmypony.eu"}], + "name": "pimpmypony.eu", + "mainLangs": [], + "id": 38497 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diaspora.pingupod.de"}], + "name": "pingupod.de", + "mainLangs": ["de"], + "id": 10135 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "diaspora.podzimek.org"}], + "name": "podzimek.org", + "mainLangs": [], + "id": 12139 + }, + { + "active6": 59, + "score": 20, + "podUrls": [{"host": "diaspora.poleni.com"}], + "name": "poleni.com", + "mainLangs": [], + "id": 1154 + }, + { + "active6": 179, + "score": 20, + "podUrls": [{"host": "diaspora.psyco.fr"}], + "name": "psyco.fr", + "mainLangs": ["fr"], + "id": 31397 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diaspora.punkbeer.me"}], + "name": "punkbeer.me", + "mainLangs": [], + "id": 44751 + }, + { + "active6": 28, + "score": 20, + "podUrls": [{"host": "diaspora.raven-ip.com"}], + "name": "raven-ip.com", + "mainLangs": [], + "id": 17410 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diaspora.retrodigital.net"}], + "name": "retrodigital.net", + "mainLangs": [], + "id": 24640 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "diaspora.sceal.ie"}], + "name": "sceal.ie", + "mainLangs": [], + "id": 38240 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "diaspora.schrauger.com"}], + "name": "schrauger.com", + "mainLangs": [], + "id": 25745 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diaspora.slowb.ro"}], + "name": "slowb.ro", + "mainLangs": [], + "id": 24365 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "diaspora.soh.re"}], + "name": "soh.re", + "mainLangs": [], + "id": 39183 + }, + { + "active6": 38, + "score": 20, + "podUrls": [{"host": "diaspora.subsignal.org"}], + "name": "subsignal.org", + "mainLangs": [], + "id": 22108 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "diaspora.trash-talk.de"}], + "name": "trash-talk.de", + "mainLangs": ["de"], + "id": 46672 + }, + { + "active6": 23, + "score": 20, + "podUrls": [{"host": "diaspora.u4u.org"}], + "name": "u4u.org", + "mainLangs": [], + "id": 9278 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diaspora.undernet.uy"}], + "name": "undernet.uy", + "mainLangs": [], + "id": 14710 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diaspora.unixcorn.org"}], + "name": "unixcorn.org", + "mainLangs": [], + "id": 43416 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "diaspora.weenmebrown.com"}], + "name": "weenmebrown.com", + "mainLangs": [], + "id": 37065 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diaspora.xcelor8.com"}], + "name": "xcelor8.com", + "mainLangs": [], + "id": 27412 + }, + { + "active6": 1258, + "score": 20, + "podUrls": [{"host": "diasporabr.com.br"}], + "name": "diasporabr.com.br", + "mainLangs": [], + "id": 18248 + }, + { + "active6": 394, + "score": 20, + "podUrls": [{"host": "diasporabrazil.org"}], + "name": "diasporabrazil.org", + "mainLangs": [], + "id": 42422 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diasporanet.tk"}], + "name": "diasporanet.tk", + "mainLangs": [], + "id": 27962 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diasporapr.tk"}], + "name": "diasporapr.tk", + "mainLangs": [], + "id": 12020 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "diasporausa.com"}], + "name": "diasporausa.com", + "mainLangs": [], + "id": 46740 + }, + { + "active6": 9, + "score": 20, + "podUrls": [{"host": "diasporing.ch"}], + "name": "Diasporing.ch", + "mainLangs": ["de"], + "id": 8471 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "dissociateduse.rs"}], + "name": "dissociateduse.rs", + "mainLangs": [], + "id": 37634 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "distributed.chat"}], + "name": "distributed.chat", + "mainLangs": [], + "id": 43459 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "eat.egregious.ly"}], + "name": "eat.egregious.ly", + "mainLangs": [], + "id": 14227 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "ege.land"}], + "name": "ege.land", + "mainLangs": [], + "id": 7825 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "espora.com.es"}], + "name": "espora.com.es", + "mainLangs": [], + "id": 11247 + }, + { + "active6": 220, + "score": 20, + "podUrls": [{"host": "espora.social"}], + "name": "espora.social", + "mainLangs": [], + "id": 5948 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "failure.net"}], + "name": "failure.net", + "mainLangs": [], + "id": 41690 + }, + { + "active6": 174, + "score": 20, + "podUrls": [{"host": "flokk.no"}], + "name": "flokk.no", + "mainLangs": [], + "id": 45658 + }, + { + "active6": 193, + "score": 20, + "podUrls": [{"host": "freehuman.fr"}], + "name": "freehuman.fr", + "mainLangs": ["fr"], + "id": 21531 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "friendica.tk"}], + "name": "friendica.tk", + "mainLangs": [], + "id": 27402 + }, + { + "active6": 312, + "score": 20, + "podUrls": [{"host": "home.enslaver.net"}], + "name": "home.enslaver.net", + "mainLangs": [], + "id": 13758 + }, + { + "active6": 71, + "score": 20, + "podUrls": [{"host": "idoru.pl"}], + "name": "idoru.pl", + "mainLangs": [], + "id": 40630 + }, + { + "active6": 65, + "score": 20, + "podUrls": [{"host": "iliketoast.net"}], + "name": "iliketoast.net", + "mainLangs": [], + "id": 23287 + }, + { + "active6": 13, + "score": 20, + "podUrls": [{"host": "jons.gr"}], + "name": "jons.gr", + "mainLangs": [], + "id": 41539 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "kapok.se"}], + "name": "kapok.se", + "mainLangs": [], + "id": 32786 + }, + { + "active6": 70, + "score": 20, + "podUrls": [{"host": "karmasphe.re"}], + "name": "karmasphe.re", + "mainLangs": [], + "id": 20368 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "kosmospora.net"}], + "name": "kosmospora.net", + "mainLangs": [], + "id": 46869 + }, + { + "active6": 25, + "score": 20, + "podUrls": [{"host": "laba.mba"}], + "name": "laba.mba", + "mainLangs": [], + "id": 32393 + }, + { + "active6": 147, + "score": 20, + "podUrls": [{"host": "liberdade.digital"}], + "name": "liberdade.digital", + "mainLangs": [], + "id": 40958 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "libertypod.org"}], + "name": "libertypod.org", + "mainLangs": [], + "id": 33200 + }, + { + "active6": 39, + "score": 20, + "podUrls": [{"host": "librenet.co.za"}], + "name": "librenet.co.za", + "mainLangs": [], + "id": 14862 + }, + { + "active6": 177, + "score": 20, + "podUrls": [{"host": "librenet.gr"}], + "name": "librenet.gr", + "mainLangs": [], + "id": 27582 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "londor.be"}], + "name": "londor.be", + "mainLangs": [], + "id": 32281 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "misamigos.online"}], + "name": "misamigos.online", + "mainLangs": [], + "id": 16366 + }, + { + "active6": 663, + "score": 20, + "podUrls": [{"host": "mondiaspora.net"}], + "name": "mondiaspora.net", + "mainLangs": [], + "id": 3365 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "networkwizard.de"}], + "name": "networkwizard.de", + "mainLangs": ["de"], + "id": 47458 + }, + { + "active6": 4, + "score": 20, + "podUrls": [{"host": "nx-pod.de"}], + "name": "nx-pod.de", + "mainLangs": ["de"], + "id": 14678 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "parteidervernunft.com"}], + "name": "parteidervernunft.com", + "mainLangs": [], + "id": 31558 + }, + { + "active6": 37, + "score": 20, + "podUrls": [{"host": "pe.spbstu.ru"}], + "name": "pe.spbstu.ru", + "mainLangs": ["ru"], + "id": 39808 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.4ray.co"}], + "name": "4ray.co", + "mainLangs": [], + "id": 2522 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.8n1.org"}], + "name": "8n1.org", + "mainLangs": [], + "id": 12504 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "pod.alterworld.info"}], + "name": "alterworld.info", + "mainLangs": [], + "id": 1176 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.asap-soft.com"}], + "name": "asap-soft.com", + "mainLangs": [], + "id": 49271 + }, + { + "active6": 1, + "score": 20, + "podUrls": [{"host": "pod.cannyfoxx.me"}], + "name": "cannyfoxx.me", + "mainLangs": [], + "id": 3505 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.comin.dk"}], + "name": "comin.dk", + "mainLangs": [], + "id": 29446 + }, + { + "active6": 11, + "score": 20, + "podUrls": [{"host": "pod.cyberdungeon.de"}], + "name": "cyberdungeon.de", + "mainLangs": ["de"], + "id": 887 + }, + { + "active6": 13, + "score": 14, + "podUrls": [{"host": "pod.dapor.net"}], + "name": "dapor.net", + "mainLangs": [], + "id": 45578 + }, + { + "active6": 4, + "score": 20, + "podUrls": [{"host": "pod.datenknoten.me"}], + "name": "datenknoten.me", + "mainLangs": [], + "id": 34173 + }, + { + "active6": 1, + "score": 20, + "podUrls": [{"host": "pod.diaspora.software"}], + "name": "software", + "mainLangs": [], + "id": 33657 + }, + { + "active6": 22, + "score": 20, + "podUrls": [{"host": "pod.dirkomatik.de"}], + "name": "dirkomatik.de", + "mainLangs": ["de"], + "id": 47570 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.disroot.org"}], + "name": "disroot.org", + "mainLangs": [], + "id": 39828 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "pod.dobs.at"}], + "name": "dobs.at", + "mainLangs": ["de"], + "id": 48725 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.dragondreaming.de"}], + "name": "dragondreaming.de", + "mainLangs": ["de"], + "id": 16107 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.gaialabs.ch"}], + "name": "gaialabs.ch", + "mainLangs": ["de"], + "id": 45384 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.gedankenausbruch.com"}], + "name": "gedankenausbruch.com", + "mainLangs": [], + "id": 6893 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "pod.gleisnetze.de"}], + "name": "gleisnetze.de", + "mainLangs": ["de"], + "id": 31471 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "pod.goodsharing.at"}], + "name": "goodsharing.at", + "mainLangs": ["de"], + "id": 36615 + }, + { + "active6": 58, + "score": 20, + "podUrls": [{"host": "pod.hashtagueule.fr"}], + "name": "hashtagueule.fr", + "mainLangs": ["fr"], + "id": 10296 + }, + { + "active6": 81, + "score": 20, + "podUrls": [{"host": "pod.hfrc.de"}], + "name": "hfrc.de", + "mainLangs": ["de"], + "id": 45746 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "pod.hoizi.net"}], + "name": "hoizi.net", + "mainLangs": [], + "id": 27479 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.infoduv.fr"}], + "name": "infoduv.fr", + "mainLangs": ["fr"], + "id": 26836 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "pod.itabs.nl"}], + "name": "itabs.nl", + "mainLangs": ["nl"], + "id": 15016 + }, + { + "active6": 16, + "score": 20, + "podUrls": [{"host": "pod.jpope.org"}], + "name": "jpope.org", + "mainLangs": [], + "id": 11674 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.kepow.org"}], + "name": "kepow.org", + "mainLangs": [], + "id": 32151 + }, + { + "active6": 60, + "score": 20, + "podUrls": [{"host": "pod.liebeleu.de"}], + "name": "liebeleu.de", + "mainLangs": ["de"], + "id": 29566 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.neikos.me"}], + "name": "neikos.me", + "mainLangs": [], + "id": 9248 + }, + { + "active6": 109, + "score": 20, + "podUrls": [{"host": "pod.nomorestars.com"}], + "name": "nomorestars.com", + "mainLangs": [], + "id": 31958 + }, + { + "active6": 398, + "score": 20, + "podUrls": [{"host": "pod.orkz.net"}], + "name": "orkz.net", + "mainLangs": [], + "id": 41604 + }, + { + "active6": 32, + "score": 20, + "podUrls": [{"host": "pod.ponk.pink"}], + "name": "ponk.pink", + "mainLangs": [], + "id": 14849 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "pod.promedol.com"}], + "name": "promedol.com", + "mainLangs": [], + "id": 21338 + }, + { + "active6": 94, + "score": 20, + "podUrls": [{"host": "pod.psynet.su"}], + "name": "psynet.su", + "mainLangs": [], + "id": 16045 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.readme.is"}], + "name": "readme.is", + "mainLangs": [], + "id": 32854 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.richtig.koeln"}], + "name": "richtig.koeln", + "mainLangs": [], + "id": 38790 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "pod.roocita.com"}], + "name": "roocita.com", + "mainLangs": [], + "id": 47269 + }, + { + "active6": 92, + "score": 20, + "podUrls": [{"host": "pod.ros-it.ch"}], + "name": "ros-it.ch", + "mainLangs": ["de"], + "id": 17574 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "pod.sccn.club"}], + "name": "sccn.club", + "mainLangs": [], + "id": 19070 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "pod.sertelon.fr"}], + "name": "sertelon.fr", + "mainLangs": ["fr"], + "id": 15234 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.shouldit.work"}], + "name": "shouldit.work", + "mainLangs": [], + "id": 47610 + }, + { + "active6": 5, + "score": 20, + "podUrls": [{"host": "pod.storel.li"}], + "name": "storel.li", + "mainLangs": [], + "id": 33181 + }, + { + "active6": 72, + "score": 20, + "podUrls": [{"host": "pod.tchncs.de"}], + "name": "tchncs.de", + "mainLangs": ["de"], + "id": 20115 + }, + { + "active6": 51, + "score": 20, + "podUrls": [{"host": "pod.thomasdalichow.de"}], + "name": "thomasdalichow.de", + "mainLangs": ["de"], + "id": 12001 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "pod.undreaming.org"}], + "name": "undreaming.org", + "mainLangs": [], + "id": 40460 + }, + { + "active6": 1, + "score": 11, + "podUrls": [{"host": "pod.volt.io"}], + "name": "volt.io", + "mainLangs": [], + "id": 19139 + }, + { + "active6": 48, + "score": 20, + "podUrls": [{"host": "podbay.net"}], + "name": "podbay.net", + "mainLangs": [], + "id": 16270 + }, + { + "active6": 354, + "score": 20, + "podUrls": [{"host": "poddery.com"}], + "name": "poddery.com", + "mainLangs": [], + "id": 36667 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "podricing.pw"}], + "name": "podricing.pw", + "mainLangs": [], + "id": 6398 + }, + { + "active6": 88, + "score": 20, + "podUrls": [{"host": "pubpod.alqualonde.org"}], + "name": "pubpod.alqualonde.org", + "mainLangs": [], + "id": 26555 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "realms.the-wizard.co.za"}], + "name": "realms.the-wizard.co.za", + "mainLangs": [], + "id": 7065 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "revreso.de"}], + "name": "revreso.de", + "mainLangs": ["de"], + "id": 41788 + }, + { + "active6": 108, + "score": 20, + "podUrls": [{"host": "ruhrspora.de"}], + "name": "ruhrspora.de", + "mainLangs": ["de"], + "id": 46198 + }, + { + "active6": 431, + "score": 20, + "podUrls": [{"host": "russiandiaspora.org"}], + "name": "russiandiaspora.org", + "mainLangs": [], + "id": 22166 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "shrekislove.us"}], + "name": "shrekislove.us", + "mainLangs": ["en"], + "id": 39003 + }, + { + "active6": 1, + "score": -18, + "podUrls": [{"host": "social.acclaro.digital"}], + "name": "acclaro.digital", + "mainLangs": [], + "id": 33853 + }, + { + "active6": 23, + "score": 20, + "podUrls": [{"host": "social.baldr.io"}], + "name": "baldr.io", + "mainLangs": [], + "id": 7781 + }, + { + "active6": 5, + "score": 20, + "podUrls": [{"host": "social.daxbau.net"}], + "name": "daxbau.net", + "mainLangs": [], + "id": 37517 + }, + { + "active6": 85, + "score": 20, + "podUrls": [{"host": "social.elaon.de"}], + "name": "elaon.de", + "mainLangs": ["de"], + "id": 30112 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "social.lanham.id.au"}], + "name": "lanham.id.au", + "mainLangs": [], + "id": 48421 + }, + { + "active6": 21, + "score": 20, + "podUrls": [{"host": "social.mbuto.me"}], + "name": "mbuto.me", + "mainLangs": [], + "id": 18258 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "social.sum7.de"}], + "name": "sum7.de", + "mainLangs": ["de"], + "id": 8983 + }, + { + "active6": 176, + "score": 20, + "podUrls": [{"host": "socializer.cc"}], + "name": "socializer.cc", + "mainLangs": [], + "id": 30584 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "spora.zone"}], + "name": "spora.zone", + "mainLangs": [], + "id": 24735 + }, + { + "active6": 12, + "score": 20, + "podUrls": [{"host": "subvillage.de"}], + "name": "subvillage.de", + "mainLangs": ["de"], + "id": 29359 + }, + { + "active6": 49, + "score": 20, + "podUrls": [{"host": "sysad.org"}], + "name": "sysad.org", + "mainLangs": [], + "id": 45830 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "teki.be"}], + "name": "teki.be", + "mainLangs": [], + "id": 5276 + }, + { + "active6": 4222, + "score": 20, + "podUrls": [{"host": "therealtalk.org"}], + "name": "therealtalk.org", + "mainLangs": [], + "id": 26786 + }, + { + "active6": 47, + "score": 20, + "podUrls": [{"host": "thinkopen.net"}], + "name": "thinkopen.net", + "mainLangs": [], + "id": 7366 + }, + { + "active6": 92, + "score": 20, + "podUrls": [{"host": "tippentappen.de"}], + "name": "tippentappen.de", + "mainLangs": ["de"], + "id": 622 + }, + { + "active6": 0, + "score": 0, + "podUrls": [{"host": "united.zkp.fr"}], + "name": "united.zkp.fr", + "mainLangs": ["fr"], + "id": 25677 + }, + { + "active6": 0, + "score": 20, + "podUrls": [{"host": "whatsnewz.com"}], + "name": "whatsnewz.com", + "mainLangs": [], + "id": 5842 + }, + { + "active6": 312, + "score": 20, + "podUrls": [{"host": "wk3.org"}], + "name": "wk3.org", + "mainLangs": [], + "id": 39292 + }, + { + "active6": 45, + "score": 20, + "podUrls": [{"host": "www.datataffel.dk"}], + "name": "datataffel.dk", + "mainLangs": [], + "id": 35984 + }, + { + "active6": 37, + "score": 20, + "podUrls": [{"host": "www.diasporaix.de"}], + "name": "diasporaix.de", + "mainLangs": ["de"], + "id": 26219 + } + ], + "timestamp": 1475804650123 +}