All of these sites are run by people on The Fediverse and are about Amateur Radio.
If you want to find Fediverse servers, try Fediverse.Radio.
Navigate the ring
Join the ring
- Contact @M0YNG@mastodon.radio with your site URL
- Add the code to your site
- Change "YOURSITEKEYHERE" to your site key, usually your domain
<nav>
Fediverse.Radio Web Ring<br/>
<a href="https://ring.fediverse.radio/ring.php?site=YOURSITEKEYHERE&direction=previous">← Back</a>
<a href="https://ring.fediverse.radio/ring.php?site=YOURSITEKEYHERE&direction=random">↑ Random</a>
<a href="https://ring.fediverse.radio">↓ Ring Home</a>
<a href="https://ring.fediverse.radio/ring.php?site=YOURSITEKEYHERE&direction=next">Next →</a>
</nav>
Note: the 'site' parameter is only required to locate your site in the ring, so we can find the previous/next site. It's not logged. But you do need to set it, usually to your domain.
The Sites
There are 30 sites
- Fediverse Radio Webring (@)
This site! - M0YNG.uk (@M0YNG@mastodon.radio)
M0YNG is the callsign of a radio amateur in Gloucestershire. This is a smolnet version of their website available via Gopher and Gemini and HTTP. - F1RUM.fr (@F1RUM@mastodon.radio)
My name is Jean-Pierre Morfin Cholat. I am radio amateur and this site groups publications too long to be posted on Mastodon - N3VEM Blog (@N3VEM@mastodon.radio)
Vance Martin, Amateur Extra callsign N3VEM. I am a thirty something (pushing 40…) husband and father, who happens to love ham radio! - Mike Zero Romeo Victor Bravo (@M0RVB@mastodon.radio)
Mike Zero Romeo Victor Bravo - K8VSY amateur radio blog (@k8vsy@mastodon.radio)
musings of an amateur radio enthusiast - KC8JC blog (@KC3JXQ@mastodon.radio)
This is a very simple and sporadically updated blog about my adventures in amateur radio - Marc DO1MJ's blog (@do1mj@mastodon.radio)
In this weblog I write about my experiences, experiments and projects in amateur radio - qrz.is (@michael@mastodon.radio)
Michael Clemens DK1MI - Amateur Radio Weekly Newsletter (@K4HCK@mastodon.radio)
Sent every Saturday, Amateur Radio Weekly is an email newsletter containing links to the most relevant news, projects, technology, and events happening in Ham Radio. - N9DRB (@N9DRB@mastodon.radio)
Devin Berg (N9DRB). - K3LTC.com (@K3LTC@mastodon.radio)
K3LTC, Nate Berry - kb3lyb.com (@markearnest@mstdn.mystikos.org)
KB3LYB, Mark Earnest. Also via ActivityPub - W1CDN (@W1CDN@mastodon.radio)
Ham Radio Adventures from northwestern Minesota. Also via ActivityPub - HB9HOX (@hb9hox@mastodon.radio)
getting my feet wet from home and portable, Deutsch and Englisch - W8EMV - Whiskey Eight Echo Mike Victor (@w8emv@mastodon.radio)
Operating notes from Ed W8EMV in Ann Arbor, Michigan. - WT8P's Notes to Self (@wt8p@mastodon.hams.social)
Writing things down so I don't forget - Le blog de F4IHA (@f4iha@mastodon.radio)
French, obviously - Pablo, M0PQA (@m0pqa@mastodon.radio)
I am using this blog mainly for my self-reference - AE4WX (@AE4WX@mas.to)
An amateur radio blog - Chris Farnham, W1YTQ (@chrisfarnham@mastodon.roundpond.net)
I share my adventures in radio, the outdoors and technology. - DC7IA (@dc7ia@mastodon.radio)
amateur radio · stuff that is not amateur radio - W0RMT Amateur Radio (@bud_t@m.ai6yr.org)
I’ll use this space to share experiences and extend ham radio conversations - KB6NU's Ham Radio Blog (@kb6nu@mastodon.radio)
- g7kse.co.uk (@g7kse@mastodon.radio)
- KC1SRI (@Geojoek@mastodon.hams.social)
- Eric Codes (@k3fnb@mastodon.radio)
- Peter's Home Page (@VE2UWY@mastodon.radio)
Dedicated to world-wide self-aggrandizement since 1994 - QueryBang (@AF0AJC@mastodon.radio)
A rather esoteric mix of topics; some informative or educational, some opinion, and some that are nothing more than stray thoughts. - KQ4MII (@KQ4MII@mastodon.hams.social)
Ring Code
This ring is coded in PHP, because it was already there. The exact code used to run the ring right now is:
<?php
// load in the knwon sites
$ringData = file_get_contents("sites.json");
$ringSites = json_decode($ringData, true);
try {
// check we were given a source site and direction
if ($_GET['direction'] && $_GET['site']) {
// check the site is one we know about
if (array_key_exists($_GET['site'], $ringSites)) {
$currentSite = $ringSites[$_GET['site']];
} else {
throw new Exception('Specified site not known');
}
// try navigating the ring
if ($_GET['direction'] === 'previous') {
$ringSite = nextElement($ringSites, $_GET['site'], true);
} elseif ($_GET['direction'] === 'random') {
$ringSite = $ringSites[array_rand($ringSites, 1)];
} elseif ($_GET['direction'] === 'next') {
$ringSite = nextElement($ringSites, $_GET['site'], false);
} else {
throw new Exception('Direction not specified or not understood');
}
} else {
throw new Exception('Direction or Site not specified');
}
} catch (Exception $e) {
// Let the user know what went wrong
echo "<p>" . $e->getMessage() . "<br/><a href='/'>Maybe try the ring homepage</a>?";
return;
}
// Assuming nothing went wrong, navigate the ring!
header('Location: ' . $ringSite['url']);
echo "Coming from: " . $currentSite["name"] . "</br>";
echo "Going to: " . $ringSite["name"] . " (<a href='" . $ringSite['url'] . "'>" . $ringSite['url'] . "</a>)</br>" . $ringSite["description"];
function nextElement(array $array, $currentKey, $previous)
{
if (!isset($array[$currentKey])) {
return false;
}
$nextElement = false;
// flip the array if we're going backwards
if ($previous) {
$array = array_reverse($array);
}
foreach ($array as $key => $item) {
$nextElement = next($array);
if ($key == $currentKey) {
break;
}
}
if (!$nextElement) {
$nextElement = reset($array);
}
return $nextElement;
}