@rhizomatics/signalk-boat-tech-directory-plugin 1.2.2 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/package.json +1 -1
  2. package/public/404.html +5 -4
  3. package/public/_astro/common.DWLYySiw.css +3 -0
  4. package/public/charts/index.html +13 -9
  5. package/public/contributing/index.html +15 -8
  6. package/public/education/index.html +8 -8
  7. package/public/favicon.svg +10 -0
  8. package/public/images/badge.svg +30 -0
  9. package/public/images/icons/pypi.ico +0 -0
  10. package/public/index-of-terms/index.html +77 -49
  11. package/public/index.html +12 -12
  12. package/public/llms-full.txt +138 -52
  13. package/public/llms-small.txt +24 -9
  14. package/public/llms.txt +12 -8
  15. package/public/news/index.html +8 -8
  16. package/public/open-source-projects/index.html +19 -11
  17. package/public/pagefind/fragment/en_2875c6c.pf_fragment +0 -0
  18. package/public/pagefind/fragment/en_2c2287e.pf_fragment +0 -0
  19. package/public/pagefind/fragment/en_4363a6c.pf_fragment +0 -0
  20. package/public/pagefind/fragment/en_4639db7.pf_fragment +0 -0
  21. package/public/pagefind/fragment/en_5ab54c2.pf_fragment +0 -0
  22. package/public/pagefind/fragment/en_98947e1.pf_fragment +0 -0
  23. package/public/pagefind/fragment/en_e4a3ab9.pf_fragment +0 -0
  24. package/public/pagefind/fragment/en_ff67eba.pf_fragment +0 -0
  25. package/public/pagefind/index/en_bd6823f.pf_index +0 -0
  26. package/public/pagefind/pagefind-entry.json +1 -1
  27. package/public/pagefind/pagefind.en_a246882be9.pf_meta +0 -0
  28. package/public/protocols/index.html +20 -10
  29. package/public/reference/index.html +8 -8
  30. package/public/robots.txt +1 -1
  31. package/public/sitemap-0.xml +1 -1
  32. package/public/sitemap.xml +1 -0
  33. package/public/social/index.html +130 -0
  34. package/public/social-media/index.html +1 -124
  35. package/public/social_media/index.html +1 -0
  36. package/public/vendors/index.html +14 -8
  37. package/public/_astro/common.BVvL3Ez1.css +0 -3
  38. package/public/pagefind/fragment/en_2121df9.pf_fragment +0 -0
  39. package/public/pagefind/fragment/en_61fd815.pf_fragment +0 -0
  40. package/public/pagefind/fragment/en_8a7845c.pf_fragment +0 -0
  41. package/public/pagefind/fragment/en_adb50b1.pf_fragment +0 -0
  42. package/public/pagefind/fragment/en_bcdb7bc.pf_fragment +0 -0
  43. package/public/pagefind/fragment/en_c12327a.pf_fragment +0 -0
  44. package/public/pagefind/fragment/en_c73f33e.pf_fragment +0 -0
  45. package/public/pagefind/fragment/en_e715258.pf_fragment +0 -0
  46. package/public/pagefind/index/en_a1bb12c.pf_index +0 -0
  47. package/public/pagefind/pagefind.en_209d8f63ce.pf_meta +0 -0
@@ -0,0 +1,130 @@
1
+ <!DOCTYPE html><html lang="en" dir="ltr" data-theme="dark" data-has-sidebar class="astro-g5ptsecz"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>Social | Boat Tech Directory</title><link rel="canonical" href="https://boat-tech-directory.rhizomatics.org.uk/@rhizomatics/signalk-boat-tech-directory-plugin/social/"/><link rel="sitemap" href="/@rhizomatics/signalk-boat-tech-directory-plugin/sitemap-index.xml"/><link rel="shortcut icon" href="/@rhizomatics/signalk-boat-tech-directory-plugin/favicon.svg" type="image/svg+xml"/><meta name="generator" content="Astro v7.3.2"/><meta name="generator" content="Starlight v0.42.1"/><meta property="og:title" content="Social"/><meta property="og:type" content="article"/><meta property="og:url" content="https://boat-tech-directory.rhizomatics.org.uk/@rhizomatics/signalk-boat-tech-directory-plugin/social/"/><meta property="og:locale" content="en"/><meta property="og:description" content="Blogs, vlogs, video channels and forums."/><meta property="og:site_name" content="Boat Tech Directory"/><meta name="description" content="Blogs, vlogs, video channels and forums."/><meta property="og:image" content="https://boat-tech-directory.rhizomatics.org.uk/images/social-preview.jpg"/><meta property="og:image:width" content="1536"/><meta property="og:image:height" content="1024"/><meta name="twitter:card" content="summary_large_image"/><meta name="twitter:image" content="https://boat-tech-directory.rhizomatics.org.uk/images/social-preview.jpg"/><script>
2
+ window.StarlightThemeProvider = (() => {
3
+ const storedTheme =
4
+ typeof localStorage !== 'undefined' && localStorage.getItem('starlight-theme');
5
+ const theme =
6
+ storedTheme ||
7
+ (window.matchMedia('(prefers-color-scheme: light)').matches ? 'light' : 'dark');
8
+ document.documentElement.dataset.theme = theme === 'light' ? 'light' : 'dark';
9
+ return {
10
+ updatePickers(theme = storedTheme || 'auto') {
11
+ document.querySelectorAll('starlight-theme-select').forEach((picker) => {
12
+ const select = picker.querySelector('select');
13
+ if (select) select.value = theme;
14
+ /** @type {HTMLTemplateElement | null} */
15
+ const tmpl = document.querySelector(`#theme-icons`);
16
+ const newIcon = tmpl && tmpl.content.querySelector('.' + theme);
17
+ if (newIcon) {
18
+ const oldIcon = picker.querySelector('svg.label-icon');
19
+ if (oldIcon) {
20
+ oldIcon.replaceChildren(...newIcon.cloneNode(true).childNodes);
21
+ }
22
+ }
23
+ });
24
+ },
25
+ };
26
+ })();
27
+ </script><template id="theme-icons"><svg aria-hidden="true" class="light astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M5 12a1 1 0 0 0-1-1H3a1 1 0 0 0 0 2h1a1 1 0 0 0 1-1Zm.64 5-.71.71a1 1 0 0 0 0 1.41 1 1 0 0 0 1.41 0l.71-.71A1 1 0 0 0 5.64 17ZM12 5a1 1 0 0 0 1-1V3a1 1 0 0 0-2 0v1a1 1 0 0 0 1 1Zm5.66 2.34a1 1 0 0 0 .7-.29l.71-.71a1 1 0 1 0-1.41-1.41l-.66.71a1 1 0 0 0 0 1.41 1 1 0 0 0 .66.29Zm-12-.29a1 1 0 0 0 1.41 0 1 1 0 0 0 0-1.41l-.71-.71a1.004 1.004 0 1 0-1.43 1.41l.73.71ZM21 11h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm-2.64 6A1 1 0 0 0 17 18.36l.71.71a1 1 0 0 0 1.41 0 1 1 0 0 0 0-1.41l-.76-.66ZM12 6.5a5.5 5.5 0 1 0 5.5 5.5A5.51 5.51 0 0 0 12 6.5Zm0 9a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm0 3.5a1 1 0 0 0-1 1v1a1 1 0 0 0 2 0v-1a1 1 0 0 0-1-1Z"/></svg><svg aria-hidden="true" class="dark astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21.64 13a1 1 0 0 0-1.05-.14 8.049 8.049 0 0 1-3.37.73 8.15 8.15 0 0 1-8.14-8.1 8.59 8.59 0 0 1 .25-2A1 1 0 0 0 8 2.36a10.14 10.14 0 1 0 14 11.69 1 1 0 0 0-.36-1.05Zm-9.5 6.69A8.14 8.14 0 0 1 7.08 5.22v.27a10.15 10.15 0 0 0 10.14 10.14 9.784 9.784 0 0 0 2.1-.22 8.11 8.11 0 0 1-7.18 4.32v-.04Z"/></svg><svg aria-hidden="true" class="auto astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21 14h-1V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7H3a1 1 0 0 0-1 1v2a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2a1 1 0 0 0-1-1ZM6 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H6V7Zm14 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16v1Z"/></svg></template><link rel="stylesheet" href="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/print.ehPL0gv-.css" media="print"><link rel="stylesheet" href="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/common.DWLYySiw.css"><script type="module" src="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/page.LAbJoB63.js"></script></head><body class="astro-g5ptsecz"><a class="sl-skip-link astro-qb7clj6f" href="#_top">Skip to content</a><div class="page sl-flex astro-yntsjkba"><header class="header astro-yntsjkba"><div class="header astro-by6fddyj"><div class="title-wrapper sl-flex astro-by6fddyj"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/" class="site-title sl-flex astro-6rvad3va"><span class="astro-6rvad3va" translate="no">Boat Tech Directory</span></a></div><div class="sl-flex print:hidden astro-by6fddyj"><site-search class="astro-by6fddyj astro-ac66eqjo" data-translations="{&quot;placeholder&quot;:&quot;Search&quot;}"><button data-open-modal disabled aria-label="Search" aria-keyshortcuts="Control+K" class="astro-ac66eqjo"><svg aria-hidden="true" class="astro-ac66eqjo astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21.71 20.29 18 16.61A9 9 0 1 0 16.61 18l3.68 3.68a.999.999 0 0 0 1.42 0 1 1 0 0 0 0-1.39ZM11 18a7 7 0 1 1 0-14 7 7 0 0 1 0 14Z"/></svg><span class="sl-hidden md:sl-block astro-ac66eqjo" aria-hidden="true">Search</span><kbd class="sl-hidden md:sl-flex astro-ac66eqjo" style="display: none;"><kbd class="astro-ac66eqjo">Ctrl</kbd><kbd class="astro-ac66eqjo">K</kbd></kbd></button><dialog style="padding:0" aria-label="Search" class="astro-ac66eqjo"><div class="dialog-frame sl-flex astro-ac66eqjo"><button data-close-modal class="sl-flex md:sl-hidden astro-ac66eqjo">Cancel</button><div class="search-container astro-ac66eqjo"><div id="starlight__search" class="astro-ac66eqjo"><form id="starlight__search-form" role="search" aria-label="Search" class="astro-ac66eqjo"><input id="starlight__search-input" type="text" autocapitalize="none" enterkeyhint="search" placeholder="Search" title="Search" class="astro-ac66eqjo"><button type="button" id="starlight__search-clear" hidden class="astro-ac66eqjo">Search</button></form><div id="starlight__search-results-area" hidden class="astro-ac66eqjo"><p id="starlight__search-message" role="status" class="astro-ac66eqjo"></p><ol id="starlight__search-results" class="astro-ac66eqjo"></ol></div></div></div></div></dialog></site-search><script>
28
+ (() => {
29
+ const openBtn = document.querySelector('button[data-open-modal]');
30
+ const shortcut = openBtn?.querySelector('kbd');
31
+ if (!openBtn || !(shortcut instanceof HTMLElement)) return;
32
+ const platformKey = shortcut.querySelector('kbd');
33
+ if (platformKey && /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform)) {
34
+ platformKey.textContent = '⌘';
35
+ openBtn.setAttribute('aria-keyshortcuts', 'Meta+K');
36
+ }
37
+ shortcut.style.display = '';
38
+ })();
39
+ </script><script type="module" src="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/Search.astro_astro_type_script_index_0_lang.3ca-UBSH.js"></script></div><div class="sl-hidden md:sl-flex print:hidden right-group astro-by6fddyj"><div class="sl-flex social-icons astro-by6fddyj"><a href="https://github.com/rhizomatics/boat-tech-directory" rel="me" class="sl-flex astro-n2mnl6yq"><span class="sr-only astro-n2mnl6yq">GitHub</span><svg aria-hidden="true" class="astro-n2mnl6yq astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M12 .3a12 12 0 0 0-3.8 23.38c.6.12.83-.26.83-.57L9 21.07c-3.34.72-4.04-1.61-4.04-1.61-.55-1.39-1.34-1.76-1.34-1.76-1.08-.74.09-.73.09-.73 1.2.09 1.83 1.24 1.83 1.24 1.08 1.83 2.81 1.3 3.5 1 .1-.78.42-1.31.76-1.61-2.67-.3-5.47-1.33-5.47-5.93 0-1.31.47-2.38 1.24-3.22-.14-.3-.54-1.52.1-3.18 0 0 1-.32 3.3 1.23a11.5 11.5 0 0 1 6 0c2.28-1.55 3.29-1.23 3.29-1.23.64 1.66.24 2.88.12 3.18a4.65 4.65 0 0 1 1.23 3.22c0 4.61-2.8 5.63-5.48 5.92.42.36.81 1.1.81 2.22l-.01 3.29c0 .31.2.69.82.57A12 12 0 0 0 12 .3Z"/></svg></a></div><starlight-theme-select><label style="--sl-select-width: 6.25em" class="astro-2z5xp7gb"><span class="sr-only astro-2z5xp7gb">Select theme</span><svg aria-hidden="true" class="icon label-icon astro-2z5xp7gb astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21 14h-1V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7H3a1 1 0 0 0-1 1v2a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2a1 1 0 0 0-1-1ZM6 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H6V7Zm14 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16v1Z"/></svg><select autocomplete="off" class="astro-2z5xp7gb"><option value="dark" class="astro-2z5xp7gb">Dark</option><option value="light" class="astro-2z5xp7gb">Light</option><option value="auto" selected class="astro-2z5xp7gb">Auto</option></select><svg aria-hidden="true" class="icon caret astro-2z5xp7gb astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z"/></svg></label></starlight-theme-select><script>
40
+ StarlightThemeProvider.updatePickers();
41
+ </script><script type="module">var e=`starlight-theme`,t=e=>e===`auto`||e===`dark`||e===`light`?e:`auto`,n=()=>t(typeof localStorage<`u`&&localStorage.getItem(e));function r(t){typeof localStorage<`u`&&localStorage.setItem(e,t===`light`||t===`dark`?t:``)}var i=()=>matchMedia(`(prefers-color-scheme: light)`).matches?`light`:`dark`;function a(e){StarlightThemeProvider.updatePickers(e),document.documentElement.dataset.theme=e===`auto`?i():e,r(e)}matchMedia(`(prefers-color-scheme: light)`).addEventListener(`change`,()=>{n()===`auto`&&a(`auto`)});var o=class extends HTMLElement{constructor(){super(),a(n()),this.querySelector(`select`)?.addEventListener(`change`,e=>{e.currentTarget instanceof HTMLSelectElement&&a(t(e.currentTarget.value))})}};customElements.define(`starlight-theme-select`,o);</script><script type="module">var e=class extends HTMLElement{constructor(){super();let e=this.querySelector(`select`);e&&(e.addEventListener(`change`,e=>{e.currentTarget instanceof HTMLSelectElement&&(window.location.pathname=e.currentTarget.value)}),window.addEventListener(`pageshow`,t=>{if(!t.persisted)return;let n=e.querySelector(`option[selected]`)?.index;n!==e.selectedIndex&&(e.selectedIndex=n??0)}))}};customElements.define(`starlight-lang-select`,e);</script></div></div></header><nav class="sidebar print:hidden astro-yntsjkba" aria-label="Main"><button popovertarget="starlight__sidebar" class="sl-menu-button sl-flex md:sl-hidden print:hidden astro-r2osgdlg"><svg aria-hidden="true" class="open-menu astro-r2osgdlg astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M3 8h18a1 1 0 1 0 0-2H3a1 1 0 0 0 0 2Zm18 8H3a1 1 0 0 0 0 2h18a1 1 0 0 0 0-2Zm0-5H3a1 1 0 0 0 0 2h18a1 1 0 0 0 0-2Z"/></svg><svg aria-hidden="true" class="close-menu astro-r2osgdlg astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="m13.41 12 6.3-6.29a1.004 1.004 0 1 0-1.42-1.42L12 10.59l-6.29-6.3a1.004 1.004 0 0 0-1.42 1.42l6.3 6.29-6.3 6.29a1 1 0 0 0 0 1.42.998.998 0 0 0 1.42 0l6.29-6.3 6.29 6.3a.999.999 0 0 0 1.42 0 1 1 0 0 0 0-1.42L13.41 12Z"/></svg><span class="sr-only astro-r2osgdlg">Menu</span></button><script type="module">var e=class extends HTMLElement{constructor(){super();let e=matchMedia(`(min-width: 50em)`),t=()=>{this.popover=e.matches?null:`auto`};t(),e.addEventListener(`change`,()=>t()),this.addEventListener(`toggle`,({newState:e})=>this.trapFocus(e===`open`))}trapFocus(e){document.querySelectorAll(`.main-frame, .sl-skip-link`).forEach(t=>{t.toggleAttribute(`inert`,e)})}};customElements.define(`sl-sidebar-pane`,e);</script><sl-sidebar-pane popover id="starlight__sidebar" class="sidebar-pane astro-yntsjkba"><div class="sidebar-content sl-flex astro-yntsjkba"><sl-sidebar-state-persist data-hash="0xizxmh" class="astro-ipdry5cl"><script aria-hidden="true">
42
+ (() => {
43
+ try {
44
+ if (!matchMedia('(min-width: 50em)').matches) return;
45
+ /** @type {HTMLElement | null} */
46
+ const target = document.querySelector('sl-sidebar-state-persist');
47
+ const state = JSON.parse(sessionStorage.getItem('sl-sidebar-state') || '0');
48
+ if (!target || !state || target.dataset.hash !== state.hash) return;
49
+ window._starlightScrollRestore = state.scroll;
50
+ customElements.define(
51
+ 'sl-sidebar-restore',
52
+ class SidebarRestore extends HTMLElement {
53
+ connectedCallback() {
54
+ try {
55
+ const idx = parseInt(this.dataset.index || '');
56
+ const details = this.closest('details');
57
+ if (details && typeof state.open[idx] === 'boolean') details.open = state.open[idx];
58
+ } catch {}
59
+ }
60
+ }
61
+ );
62
+ } catch {}
63
+ })();
64
+ </script><ul class="top-level astro-wv7whodv"><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Home</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/social/" aria-current="page" class="large astro-wv7whodv"><span class="astro-wv7whodv">Social</span></a><ul class="page-toc astro-wv7whodv"><li class="depth-3 astro-wv7whodv"><a href="#blogs" class="astro-wv7whodv">Blogs</a></li><li class="depth-3 astro-wv7whodv"><a href="#vlogs" class="astro-wv7whodv">Vlogs</a></li><li class="depth-3 astro-wv7whodv"><a href="#forums" class="astro-wv7whodv">Forums</a></li></ul></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/charts/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Charts and Data</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/open-source-projects/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Open Source Projects</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/protocols/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Protocols</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/vendors/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Vendors</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/news/" class="large astro-wv7whodv"><span class="astro-wv7whodv">News</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/education/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Education</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/reference/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Reference</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/index-of-terms/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Index</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/contributing/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Contributing</span></a></li></ul><script aria-hidden="true">
65
+ (() => {
66
+ const scroller = document.getElementById('starlight__sidebar');
67
+ if (!window._starlightScrollRestore || !scroller) return;
68
+ scroller.scrollTop = window._starlightScrollRestore;
69
+ delete window._starlightScrollRestore;
70
+ })();
71
+ </script></sl-sidebar-state-persist><div class="md:sl-hidden astro-wv7whodv"><div class="mobile-preferences sl-flex astro-p4azlveh"><div class="social-icons astro-p4azlveh"><a href="https://github.com/rhizomatics/boat-tech-directory" rel="me" class="sl-flex astro-n2mnl6yq"><span class="sr-only astro-n2mnl6yq">GitHub</span><svg aria-hidden="true" class="astro-n2mnl6yq astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M12 .3a12 12 0 0 0-3.8 23.38c.6.12.83-.26.83-.57L9 21.07c-3.34.72-4.04-1.61-4.04-1.61-.55-1.39-1.34-1.76-1.34-1.76-1.08-.74.09-.73.09-.73 1.2.09 1.83 1.24 1.83 1.24 1.08 1.83 2.81 1.3 3.5 1 .1-.78.42-1.31.76-1.61-2.67-.3-5.47-1.33-5.47-5.93 0-1.31.47-2.38 1.24-3.22-.14-.3-.54-1.52.1-3.18 0 0 1-.32 3.3 1.23a11.5 11.5 0 0 1 6 0c2.28-1.55 3.29-1.23 3.29-1.23.64 1.66.24 2.88.12 3.18a4.65 4.65 0 0 1 1.23 3.22c0 4.61-2.8 5.63-5.48 5.92.42.36.81 1.1.81 2.22l-.01 3.29c0 .31.2.69.82.57A12 12 0 0 0 12 .3Z"/></svg></a></div><starlight-theme-select><label style="--sl-select-width: 6.25em" class="astro-2z5xp7gb"><span class="sr-only astro-2z5xp7gb">Select theme</span><svg aria-hidden="true" class="icon label-icon astro-2z5xp7gb astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21 14h-1V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7H3a1 1 0 0 0-1 1v2a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2a1 1 0 0 0-1-1ZM6 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H6V7Zm14 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16v1Z"/></svg><select autocomplete="off" class="astro-2z5xp7gb"><option value="dark" class="astro-2z5xp7gb">Dark</option><option value="light" class="astro-2z5xp7gb">Light</option><option value="auto" selected class="astro-2z5xp7gb">Auto</option></select><svg aria-hidden="true" class="icon caret astro-2z5xp7gb astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z"/></svg></label></starlight-theme-select><script>
72
+ StarlightThemeProvider.updatePickers();
73
+ </script></div></div></div></sl-sidebar-pane></nav><div class="main-frame astro-yntsjkba"><script type="module">var e=document.getElementById(`starlight__sidebar`),t=e?.querySelector(`sl-sidebar-state-persist`),n=`sl-sidebar-state`,r=()=>{let r=[],i=t?.dataset.hash||``;try{let e=sessionStorage.getItem(n),t=JSON.parse(e||`{}`);Array.isArray(t.open)&&t.hash===i&&(r=t.open)}catch{}return{hash:i,open:r,scroll:e?.scrollTop||0}},i=e=>{try{sessionStorage.setItem(n,JSON.stringify(e))}catch{}},a=()=>i(r()),o=(e,t)=>{let n=r();n.open[t]=e,i(n)};t?.addEventListener(`click`,e=>{if(!(e.target instanceof Element))return;let t=e.target.closest(`summary`)?.closest(`details`);if(!t)return;let n=t.querySelector(`sl-sidebar-restore`),r=parseInt(n?.dataset.index||``);isNaN(r)||o(!t.open,r)}),addEventListener(`visibilitychange`,()=>{document.visibilityState===`hidden`&&a()});</script><div class="lg:sl-flex astro-lrzkfocr"><div class="main-pane astro-lrzkfocr"><main data-pagefind-body class="astro-g5ptsecz" lang="en" dir="ltr"><div class="content-panel astro-a7po4psb"><div class="sl-container astro-a7po4psb"><h1 id="_top" class="astro-bebwqqxs">Social</h1></div></div><div class="content-panel astro-a7po4psb"><div class="sl-container astro-a7po4psb"><div class="sl-markdown-content"><!-- Generated from ../../../../README.md by scripts/sync-readme.mjs — do not edit directly. -->
74
+ <div class="sl-heading-wrapper level-h3"><h3 id="blogs">Blogs</h3><a class="sl-anchor-link" href="#blogs"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore="">Section titled “Blogs”</span></a></div>
75
+ <p>Personal sites for sailors and their boats with their tech projects. These are all reasonably live as of 2026.</p>
76
+ <ul>
77
+ <li id="agile4life"><a href="https://agile4life.blog/tag/technical/">Agile4Life</a> - Jeanneau Sun Odyssey 49. Spanish/French family. Boat electronics, electrics, RasPi, and generally sailing posts.</li>
78
+ <li id="bergie"><a href="https://bergie.iki.fi">Bergie</a> - Baltic sailor, boat projects and SignalK plugin developer (<a href="https://github.com/meri-imperiumi">meri-imperiumi</a>) and <a href="https://handbook.lille-oe.de">boat handbook with checklists</a>.</li>
79
+ <li id="boathackers"><a href="https://boathackers.com">BoatHackers</a> - Leopard 45, projects with Home Assistant, Starlink, NMEA2000, Victron.</li>
80
+ <li id="coelcanth"><a href="https://www.coelacanth.ch">coelcanth</a> - Hutting 40, Swiss owned, cruises Baltic and North Sea. Cruising blog posts, plus DIY hardware projects and beautifully produced <a href="https://www.youtube.com/@sy.coelacanth">videos</a>.</li>
81
+ <li id="catalina-320-log"><a href="https://www.yachtslog.com">Catalina 320 Log</a> - Raspberry Pi, NMEA, SignalK, VBA.</li>
82
+ <li id="cricalix"><a href="https://www.cricalix.net">Cricalix</a> - Ireland, Victoria 34, NMEA, Python, Solar, Shipmodul Miniplex.</li>
83
+ <li id="hacking-family"><a href="https://hackingfamily.com/Cruise_Info/Equipment/Equipment.htm">Hacking Family</a> - Long term world cruisers on Wauquiez-designed catamaran with advice on electronics, software, mapping.</li>
84
+ <li id="lille-ø"><a href="https://lille-oe.de/boat/">Lille Ø</a> - German owner (English language site), Amigo 40, open source software and hardware projects, LoRa, videos.</li>
85
+ <li id="navigation-mac--co"><a href="https://www.navigation-mac.fr">Navigation Mac &#x26; Co</a> - French, with English translation. News and articles, focus on weather data, macOS and iPad navigation.</li>
86
+ <li id="nick-hayward"><a href="https://www.nick-hayward.co.uk/category/narrowboat/">Nick Hayward</a> - Narrowboat projects including Home Assistant, ESPHome, Victron.</li>
87
+ <li id="ole-w-saastad"><a href="https://www.homelinux.no">Ole W. Saastad</a> - Raspberry Pi boat integration.</li>
88
+ <li id="pyssel"><a href="https://pysselilivet.blogspot.com">Pyssel</a> - Boat projects and news, including Home Assistant, OpenPlotter, ESP32.</li>
89
+ <li id="project-bob"><a href="https://www.projectbob.xyz">Project Bob</a> - Autonomous boat circumnavigation project.</li>
90
+ <li id="seabits"><a href="https://seabits.com">Seabits</a> - Pacific North West, Kristen 50 and Symbol Pilothouse motor yachts, SignalK, dashboards, Victron.</li>
91
+ <li id="sy-bockra"><a href="https://corbin39.org/wp-content/uploads/2025/06/BOCKRA-nav-system-notes-Spring-2025-DS-06-06-25.pdf">SY Bockra</a> - 1981 Corbin 39, OpenCPN, Open Boat Projects, AvNav. One-off summary document of experiences.</li>
92
+ <li id="sv-sabado"><a href="https://svsabado.com">SV Sabado</a> - US Lagoon 42. Blog articles, technical docs and videos, some Home Assistant, ESP Home and SignalK material. Some material only for paid subscribers.</li>
93
+ <li id="sy-sea-jade-boatstuff"><img src="../images/icons/github.ico" width="16" height="16"> <a href="https://sy-sea-jade.github.io/boatstuff/">SY Sea Jade Boatstuff</a> - Checklists, equipment choices, passage planning templates and other tabular data.</li>
94
+ <li id="the-low-cost-sailor"><a href="https://www.thelowcostsailor.com">The Low Cost Sailor</a> - Boat tech news and articles. English, French, Spanish. Also <img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@TheLowCostSailor">Spanish</a> and <img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@lowcostsailor">English</a> YouTube channels.</li>
95
+ <li id="trouper"><a href="https://trouper.uk">Trouper</a> - Swan 43, English Channel. Electronics upgrades and eBay finds.</li>
96
+ <li id="zapped-myself"><a href="https://zappedmyself.com/projects/nmea2000/">Zapped Myself</a> - NMEA2000, AIS, ESP32 projects.</li>
97
+ </ul>
98
+ <div class="sl-heading-wrapper level-h3"><h3 id="vlogs">Vlogs</h3><a class="sl-anchor-link" href="#vlogs"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore="">Section titled “Vlogs”</span></a></div>
99
+ <p>Video channels from YouTube and elsewhere for boat tech projects.</p>
100
+ <ul>
101
+ <li id="8-bit-sailing"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@8bitsailing/">8-bit Sailing</a> - Raspberry Pi, OpenPlotter and Raymarine.</li>
102
+ <li id="boating-with-the-baileys"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@BoatingwiththeBaileys">Boating with the Baileys</a> - Electrical and electronics projects on a 2000s Bavaria 36, including SignalK, KIP, Node-RED, OpenPlotter and SensESP.</li>
103
+ <li id="boats-and-bits"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@boatsandbits">Boats and Bits</a> - DIY boat tech, Raymarine networking, electrics, 3D printing.</li>
104
+ <li id="diy-onboard"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@DIYonboard-e4i">DIY Onboard</a> - Raspberry Pi and OpenPlotter.</li>
105
+ <li id="gary-woodruff"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@garrywoodruff960">Gary Woodruff</a> - Boat projects and HowTo guides for boat electrics and electronics, focus on Lowrance equipment.</li>
106
+ <li id="out-chasing-stars"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@OutChasingStars">Out Chasing Stars</a> - OpenCPN and general boat electrics, electronics.</li>
107
+ <li id="pacific-yacht-systems"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@PacificYachtSystems">Pacific Yacht Systems</a> - Last active in 2023, large back catalogue of instructional videos on marine electrics, electronics and networking.</li>
108
+ <li id="raspberry4sailing"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@Sir-Real">Raspberry4Sailing</a> - OpenPlotter, SignalK, KIP projects on Raspberry Pi.</li>
109
+ <li id="smart-boat-innovations"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@SmartBoatInnovations">Smart Boat Innovations</a> - Raspberry Pi, HomeAssistant and SignalK boat projects.</li>
110
+ <li id="surf-n-turf"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/playlist?list=PLK_IzlFMWDRA">Surf n Turf</a> - Tutorials on OpenCPN and SignalK and general boat life.</li>
111
+ <li id="sv-apres"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/playlist?list=PLqHa5JFKHBLwxeCuc6uaa5TzAXVeqTyiD">SV Apres</a> - OpenPlotter, NMEA2000 and general boat tech.</li>
112
+ <li id="the-florida-captain"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@TheFloridaCaptain">The Florida Captain</a> - Open source boat network and apps.</li>
113
+ <li id="tom-seahorse"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@Tom-seahorse/videos">Tom Seahorse</a> - UK. Catamaran. Raspberry Pi, OpenCPN, Home Assistant.</li>
114
+ </ul>
115
+ <div class="sl-heading-wrapper level-h3"><h3 id="forums">Forums</h3><a class="sl-anchor-link" href="#forums"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore="">Section titled “Forums”</span></a></div>
116
+ <p><em>All active as of 2026</em></p>
117
+ <ul>
118
+ <li id="boatdesignnet"><a href="https://www.boatdesign.net/forums/onboard-electronics-controls/">boatdesign.net</a> - Electronics and Controls forum.</li>
119
+ <li id="boat-electrical-and-electronic-qa"><img src="../images/icons/facebook.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/5844662375630348">Boat Electrical and Electronic Q&#x26;A</a> - Private Facebook group, >70k members, avg post per day.</li>
120
+ <li id="nmea-2000-support-group"><img src="../images/icons/facebook.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/380510566227511/">NMEA 2000 Support Group</a> - Public Facebook group.</li>
121
+ <li id="nmea-2000-technical-forum"><img src="../images/icons/facebook.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/699562237256639/">NMEA 2000 Technical Forum</a> - Private Facebook group.</li>
122
+ <li id="opencpn-users"><img src="../images/icons/facebook.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/2405863179652854/">OpenCPN Users</a> - Private Facebook group, >12k members, dozen or two posts a month.</li>
123
+ <li id="openmarine"><a href="https://forum.openmarine.net">OpenMarine</a> - Marine electronics and networking, focus on Macarthur HAT, PyPilot, OpenPlotter and Node RED.</li>
124
+ <li id="panbo"><a href="https://panbo.com/marineelectronicsforum/">Panbo</a> - Marine electronics and networking.</li>
125
+ <li id="raspberry-pi-for-boats"><img src="../images/icons/facebook.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/1666364153609573/">Raspberry Pi for Boats</a> - Private Facebook group, >17k members, couple dozen posts per month.</li>
126
+ <li id="segeln-forum-boot--technik"><a href="https://www.segeln-forum.de/board/194-boot-technik/">Segeln-Forum Boot &#x26; Technik</a> - German language sailboat forum.</li>
127
+ <li id="signalk-community"><a href="https://signalk.org/community/">SignalK Community</a> - Discord and GitHub Discussions.</li>
128
+ <li id="signalk-google-group"><a href="https://groups.google.com/g/signalk">SignalK Google Group</a> - Active as of end 2025.</li>
129
+ <li id="the-hull-truth"><a href="https://www.thehulltruth.com/marine-electronics-forum-19/">The Hull Truth</a> - Marine electronics forum.</li>
130
+ </ul></div><footer class="sl-flex astro-ddtxxk7k"><div class="meta sl-flex astro-ddtxxk7k"></div><div class="pagination-links print:hidden astro-b5raizh3" dir="ltr"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/" rel="prev" class="astro-b5raizh3"><svg aria-hidden="true" class="astro-b5raizh3 astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1.5rem;"><path d="M17 11H9.41l3.3-3.29a1.004 1.004 0 1 0-1.42-1.42l-5 5a1 1 0 0 0-.21.33 1 1 0 0 0 0 .76 1 1 0 0 0 .21.33l5 5a1.002 1.002 0 0 0 1.639-.325 1 1 0 0 0-.219-1.095L9.41 13H17a1 1 0 0 0 0-2Z"/></svg><span class="astro-b5raizh3">Previous<br class="astro-b5raizh3"><span class="link-title astro-b5raizh3">Home</span></span></a><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/charts/" rel="next" class="astro-b5raizh3"><svg aria-hidden="true" class="astro-b5raizh3 astro-hkc32dio" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1.5rem;"><path d="M17.92 11.62a1.001 1.001 0 0 0-.21-.33l-5-5a1.003 1.003 0 1 0-1.42 1.42l3.3 3.29H7a1 1 0 0 0 0 2h7.59l-3.3 3.29a1.002 1.002 0 0 0 .325 1.639 1 1 0 0 0 1.095-.219l5-5a1 1 0 0 0 .21-.33 1 1 0 0 0 0-.76Z"/></svg><span class="astro-b5raizh3">Next<br class="astro-b5raizh3"><span class="link-title astro-b5raizh3">Charts and Data</span></span></a></div></footer></div></div></main></div></div></div></div></body></html>
@@ -1,124 +1 @@
1
- <!DOCTYPE html><html lang="en" dir="ltr" data-theme="dark" data-has-sidebar class="astro-vdxcvpsm"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>Social Media | Boat Tech Directory</title><link rel="canonical" href="https://boat-tech-directory.rhizomatics.org.uk/@rhizomatics/signalk-boat-tech-directory-plugin/social-media/"/><link rel="sitemap" href="/@rhizomatics/signalk-boat-tech-directory-plugin/sitemap-index.xml"/><link rel="shortcut icon" href="/@rhizomatics/signalk-boat-tech-directory-plugin/favicon.svg" type="image/svg+xml"/><meta name="generator" content="Astro v7.2.0"/><meta name="generator" content="Starlight v0.41.7"/><meta property="og:title" content="Social Media"/><meta property="og:type" content="article"/><meta property="og:url" content="https://boat-tech-directory.rhizomatics.org.uk/@rhizomatics/signalk-boat-tech-directory-plugin/social-media/"/><meta property="og:locale" content="en"/><meta property="og:description" content="Blogs, vlogs, video channels and forums."/><meta property="og:site_name" content="Boat Tech Directory"/><meta name="twitter:card" content="summary_large_image"/><meta name="description" content="Blogs, vlogs, video channels and forums."/><script>
2
- window.StarlightThemeProvider = (() => {
3
- const storedTheme =
4
- typeof localStorage !== 'undefined' && localStorage.getItem('starlight-theme');
5
- const theme =
6
- storedTheme ||
7
- (window.matchMedia('(prefers-color-scheme: light)').matches ? 'light' : 'dark');
8
- document.documentElement.dataset.theme = theme === 'light' ? 'light' : 'dark';
9
- return {
10
- updatePickers(theme = storedTheme || 'auto') {
11
- document.querySelectorAll('starlight-theme-select').forEach((picker) => {
12
- const select = picker.querySelector('select');
13
- if (select) select.value = theme;
14
- /** @type {HTMLTemplateElement | null} */
15
- const tmpl = document.querySelector(`#theme-icons`);
16
- const newIcon = tmpl && tmpl.content.querySelector('.' + theme);
17
- if (newIcon) {
18
- const oldIcon = picker.querySelector('svg.label-icon');
19
- if (oldIcon) {
20
- oldIcon.replaceChildren(...newIcon.cloneNode(true).childNodes);
21
- }
22
- }
23
- });
24
- },
25
- };
26
- })();
27
- </script><template id="theme-icons"><svg aria-hidden="true" class="light astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M5 12a1 1 0 0 0-1-1H3a1 1 0 0 0 0 2h1a1 1 0 0 0 1-1Zm.64 5-.71.71a1 1 0 0 0 0 1.41 1 1 0 0 0 1.41 0l.71-.71A1 1 0 0 0 5.64 17ZM12 5a1 1 0 0 0 1-1V3a1 1 0 0 0-2 0v1a1 1 0 0 0 1 1Zm5.66 2.34a1 1 0 0 0 .7-.29l.71-.71a1 1 0 1 0-1.41-1.41l-.66.71a1 1 0 0 0 0 1.41 1 1 0 0 0 .66.29Zm-12-.29a1 1 0 0 0 1.41 0 1 1 0 0 0 0-1.41l-.71-.71a1.004 1.004 0 1 0-1.43 1.41l.73.71ZM21 11h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm-2.64 6A1 1 0 0 0 17 18.36l.71.71a1 1 0 0 0 1.41 0 1 1 0 0 0 0-1.41l-.76-.66ZM12 6.5a5.5 5.5 0 1 0 5.5 5.5A5.51 5.51 0 0 0 12 6.5Zm0 9a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm0 3.5a1 1 0 0 0-1 1v1a1 1 0 0 0 2 0v-1a1 1 0 0 0-1-1Z"/></svg><svg aria-hidden="true" class="dark astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21.64 13a1 1 0 0 0-1.05-.14 8.049 8.049 0 0 1-3.37.73 8.15 8.15 0 0 1-8.14-8.1 8.59 8.59 0 0 1 .25-2A1 1 0 0 0 8 2.36a10.14 10.14 0 1 0 14 11.69 1 1 0 0 0-.36-1.05Zm-9.5 6.69A8.14 8.14 0 0 1 7.08 5.22v.27a10.15 10.15 0 0 0 10.14 10.14 9.784 9.784 0 0 0 2.1-.22 8.11 8.11 0 0 1-7.18 4.32v-.04Z"/></svg><svg aria-hidden="true" class="auto astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21 14h-1V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7H3a1 1 0 0 0-1 1v2a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2a1 1 0 0 0-1-1ZM6 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H6V7Zm14 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16v1Z"/></svg></template><link rel="stylesheet" href="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/print.ehPL0gv-.css" media="print"><link rel="stylesheet" href="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/common.BVvL3Ez1.css"><script type="module" src="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/page.LAbJoB63.js"></script></head><body class="astro-vdxcvpsm"><a class="sl-skip-link astro-vxeigawq" href="#_top">Skip to content</a><div class="page sl-flex astro-gqpr5s5a"><header class="header astro-gqpr5s5a"><div class="header astro-nczgtkxc"><div class="title-wrapper sl-flex astro-nczgtkxc"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/" class="site-title sl-flex astro-clw6ags5"><span class="astro-clw6ags5" translate="no">Boat Tech Directory</span></a></div><div class="sl-flex print:hidden astro-nczgtkxc"><site-search class="astro-nczgtkxc astro-ac66eqjo" data-translations="{&quot;placeholder&quot;:&quot;Search&quot;}"><button data-open-modal disabled aria-label="Search" aria-keyshortcuts="Control+K" class="astro-ac66eqjo"><svg aria-hidden="true" class="astro-ac66eqjo astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21.71 20.29 18 16.61A9 9 0 1 0 16.61 18l3.68 3.68a.999.999 0 0 0 1.42 0 1 1 0 0 0 0-1.39ZM11 18a7 7 0 1 1 0-14 7 7 0 0 1 0 14Z"/></svg><span class="sl-hidden md:sl-block astro-ac66eqjo" aria-hidden="true">Search</span><kbd class="sl-hidden md:sl-flex astro-ac66eqjo" style="display: none;"><kbd class="astro-ac66eqjo">Ctrl</kbd><kbd class="astro-ac66eqjo">K</kbd></kbd></button><dialog style="padding:0" aria-label="Search" class="astro-ac66eqjo"><div class="dialog-frame sl-flex astro-ac66eqjo"><button data-close-modal class="sl-flex md:sl-hidden astro-ac66eqjo">Cancel</button><div class="search-container astro-ac66eqjo"><div id="starlight__search" class="astro-ac66eqjo"><form id="starlight__search-form" role="search" aria-label="Search" class="astro-ac66eqjo"><input id="starlight__search-input" type="text" autocapitalize="none" enterkeyhint="search" placeholder="Search" title="Search" class="astro-ac66eqjo"><button type="button" id="starlight__search-clear" hidden class="astro-ac66eqjo">Search</button></form><div id="starlight__search-results-area" hidden class="astro-ac66eqjo"><p id="starlight__search-message" role="status" class="astro-ac66eqjo"></p><ol id="starlight__search-results" class="astro-ac66eqjo"></ol></div></div></div></div></dialog></site-search><script>
28
- (() => {
29
- const openBtn = document.querySelector('button[data-open-modal]');
30
- const shortcut = openBtn?.querySelector('kbd');
31
- if (!openBtn || !(shortcut instanceof HTMLElement)) return;
32
- const platformKey = shortcut.querySelector('kbd');
33
- if (platformKey && /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform)) {
34
- platformKey.textContent = '⌘';
35
- openBtn.setAttribute('aria-keyshortcuts', 'Meta+K');
36
- }
37
- shortcut.style.display = '';
38
- })();
39
- </script><script type="module" src="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/Search.astro_astro_type_script_index_0_lang.3ca-UBSH.js"></script></div><div class="sl-hidden md:sl-flex print:hidden right-group astro-nczgtkxc"><div class="sl-flex social-icons astro-nczgtkxc"><a href="https://github.com/rhizomatics/boat-tech-directory" rel="me" class="sl-flex astro-cg55etiy"><span class="sr-only astro-cg55etiy">GitHub</span><svg aria-hidden="true" class="astro-cg55etiy astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M12 .3a12 12 0 0 0-3.8 23.38c.6.12.83-.26.83-.57L9 21.07c-3.34.72-4.04-1.61-4.04-1.61-.55-1.39-1.34-1.76-1.34-1.76-1.08-.74.09-.73.09-.73 1.2.09 1.83 1.24 1.83 1.24 1.08 1.83 2.81 1.3 3.5 1 .1-.78.42-1.31.76-1.61-2.67-.3-5.47-1.33-5.47-5.93 0-1.31.47-2.38 1.24-3.22-.14-.3-.54-1.52.1-3.18 0 0 1-.32 3.3 1.23a11.5 11.5 0 0 1 6 0c2.28-1.55 3.29-1.23 3.29-1.23.64 1.66.24 2.88.12 3.18a4.65 4.65 0 0 1 1.23 3.22c0 4.61-2.8 5.63-5.48 5.92.42.36.81 1.1.81 2.22l-.01 3.29c0 .31.2.69.82.57A12 12 0 0 0 12 .3Z"/></svg></a></div><starlight-theme-select><label style="--sl-select-width: 6.25em" class="astro-r2p65idu"><span class="sr-only astro-r2p65idu">Select theme</span><svg aria-hidden="true" class="icon label-icon astro-r2p65idu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21 14h-1V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7H3a1 1 0 0 0-1 1v2a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2a1 1 0 0 0-1-1ZM6 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H6V7Zm14 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16v1Z"/></svg><select autocomplete="off" class="astro-r2p65idu"><option value="dark" class="astro-r2p65idu">Dark</option><option value="light" class="astro-r2p65idu">Light</option><option value="auto" selected class="astro-r2p65idu">Auto</option></select><svg aria-hidden="true" class="icon caret astro-r2p65idu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z"/></svg></label></starlight-theme-select><script>
40
- StarlightThemeProvider.updatePickers();
41
- </script><script type="module">var e=`starlight-theme`,t=e=>e===`auto`||e===`dark`||e===`light`?e:`auto`,n=()=>t(typeof localStorage<`u`&&localStorage.getItem(e));function r(t){typeof localStorage<`u`&&localStorage.setItem(e,t===`light`||t===`dark`?t:``)}var i=()=>matchMedia(`(prefers-color-scheme: light)`).matches?`light`:`dark`;function a(e){StarlightThemeProvider.updatePickers(e),document.documentElement.dataset.theme=e===`auto`?i():e,r(e)}matchMedia(`(prefers-color-scheme: light)`).addEventListener(`change`,()=>{n()===`auto`&&a(`auto`)});var o=class extends HTMLElement{constructor(){super(),a(n()),this.querySelector(`select`)?.addEventListener(`change`,e=>{e.currentTarget instanceof HTMLSelectElement&&a(t(e.currentTarget.value))})}};customElements.define(`starlight-theme-select`,o);</script><script type="module">var e=class extends HTMLElement{constructor(){super();let e=this.querySelector(`select`);e&&(e.addEventListener(`change`,e=>{e.currentTarget instanceof HTMLSelectElement&&(window.location.pathname=e.currentTarget.value)}),window.addEventListener(`pageshow`,t=>{if(!t.persisted)return;let n=e.querySelector(`option[selected]`)?.index;n!==e.selectedIndex&&(e.selectedIndex=n??0)}))}};customElements.define(`starlight-lang-select`,e);</script></div></div></header><nav class="sidebar print:hidden astro-gqpr5s5a" aria-label="Main"><starlight-menu-button class="print:hidden astro-vvx7mffu"><button aria-expanded="false" aria-label="Menu" aria-controls="starlight__sidebar" class="sl-flex md:sl-hidden astro-vvx7mffu"><svg aria-hidden="true" class="open-menu astro-vvx7mffu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M3 8h18a1 1 0 1 0 0-2H3a1 1 0 0 0 0 2Zm18 8H3a1 1 0 0 0 0 2h18a1 1 0 0 0 0-2Zm0-5H3a1 1 0 0 0 0 2h18a1 1 0 0 0 0-2Z"/></svg><svg aria-hidden="true" class="close-menu astro-vvx7mffu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="m13.41 12 6.3-6.29a1.004 1.004 0 1 0-1.42-1.42L12 10.59l-6.29-6.3a1.004 1.004 0 0 0-1.42 1.42l6.3 6.29-6.3 6.29a1 1 0 0 0 0 1.42.998.998 0 0 0 1.42 0l6.29-6.3 6.29 6.3a.999.999 0 0 0 1.42 0 1 1 0 0 0 0-1.42L13.41 12Z"/></svg></button></starlight-menu-button><script type="module">var e=class extends HTMLElement{btn=this.querySelector(`button`);constructor(){super(),this.btn.addEventListener(`click`,()=>this.toggleExpanded());let e=this.closest(`nav`);e&&e.addEventListener(`keyup`,e=>this.closeOnEscape(e)),matchMedia(`(min-width: 50em)`).addEventListener(`change`,()=>this.setExpanded(!1))}setExpanded(e){this.setAttribute(`aria-expanded`,String(e)),document.body.toggleAttribute(`data-mobile-menu-expanded`,e),document.querySelectorAll(`.main-frame, .sl-skip-link`).forEach(t=>{t.toggleAttribute(`inert`,e)})}toggleExpanded(){this.setExpanded(this.getAttribute(`aria-expanded`)!==`true`)}closeOnEscape(e){e.code===`Escape`&&(this.setExpanded(!1),this.btn.focus())}};customElements.define(`starlight-menu-button`,e);</script><div id="starlight__sidebar" class="sidebar-pane astro-gqpr5s5a"><div class="sidebar-content sl-flex astro-gqpr5s5a"><sl-sidebar-state-persist data-hash="070u86e" class="astro-f5yvicm7"><script aria-hidden="true">
42
- (() => {
43
- try {
44
- if (!matchMedia('(min-width: 50em)').matches) return;
45
- /** @type {HTMLElement | null} */
46
- const target = document.querySelector('sl-sidebar-state-persist');
47
- const state = JSON.parse(sessionStorage.getItem('sl-sidebar-state') || '0');
48
- if (!target || !state || target.dataset.hash !== state.hash) return;
49
- window._starlightScrollRestore = state.scroll;
50
- customElements.define(
51
- 'sl-sidebar-restore',
52
- class SidebarRestore extends HTMLElement {
53
- connectedCallback() {
54
- try {
55
- const idx = parseInt(this.dataset.index || '');
56
- const details = this.closest('details');
57
- if (details && typeof state.open[idx] === 'boolean') details.open = state.open[idx];
58
- } catch {}
59
- }
60
- }
61
- );
62
- } catch {}
63
- })();
64
- </script><ul class="top-level astro-wv7whodv"><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Home</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/social-media/" aria-current="page" class="large astro-wv7whodv"><span class="astro-wv7whodv">Social Media</span></a><ul class="page-toc astro-wv7whodv"><li class="depth-3 astro-wv7whodv"><a href="#blogs" class="astro-wv7whodv">Blogs</a></li><li class="depth-3 astro-wv7whodv"><a href="#vlogs" class="astro-wv7whodv">Vlogs</a></li><li class="depth-3 astro-wv7whodv"><a href="#forums" class="astro-wv7whodv">Forums</a></li></ul></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/charts/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Charts and Data</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/open-source-projects/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Open Source Projects</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/protocols/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Protocols</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/vendors/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Vendors</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/news/" class="large astro-wv7whodv"><span class="astro-wv7whodv">News</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/education/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Education</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/reference/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Reference</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/index-of-terms/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Index</span></a></li><li class="astro-wv7whodv"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/contributing/" class="large astro-wv7whodv"><span class="astro-wv7whodv">Contributing</span></a></li></ul><script aria-hidden="true">
65
- (() => {
66
- const scroller = document.getElementById('starlight__sidebar');
67
- if (!window._starlightScrollRestore || !scroller) return;
68
- scroller.scrollTop = window._starlightScrollRestore;
69
- delete window._starlightScrollRestore;
70
- })();
71
- </script></sl-sidebar-state-persist><div class="md:sl-hidden astro-wv7whodv"><div class="mobile-preferences sl-flex astro-b5gddk54"><div class="social-icons astro-b5gddk54"><a href="https://github.com/rhizomatics/boat-tech-directory" rel="me" class="sl-flex astro-cg55etiy"><span class="sr-only astro-cg55etiy">GitHub</span><svg aria-hidden="true" class="astro-cg55etiy astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M12 .3a12 12 0 0 0-3.8 23.38c.6.12.83-.26.83-.57L9 21.07c-3.34.72-4.04-1.61-4.04-1.61-.55-1.39-1.34-1.76-1.34-1.76-1.08-.74.09-.73.09-.73 1.2.09 1.83 1.24 1.83 1.24 1.08 1.83 2.81 1.3 3.5 1 .1-.78.42-1.31.76-1.61-2.67-.3-5.47-1.33-5.47-5.93 0-1.31.47-2.38 1.24-3.22-.14-.3-.54-1.52.1-3.18 0 0 1-.32 3.3 1.23a11.5 11.5 0 0 1 6 0c2.28-1.55 3.29-1.23 3.29-1.23.64 1.66.24 2.88.12 3.18a4.65 4.65 0 0 1 1.23 3.22c0 4.61-2.8 5.63-5.48 5.92.42.36.81 1.1.81 2.22l-.01 3.29c0 .31.2.69.82.57A12 12 0 0 0 12 .3Z"/></svg></a></div><starlight-theme-select><label style="--sl-select-width: 6.25em" class="astro-r2p65idu"><span class="sr-only astro-r2p65idu">Select theme</span><svg aria-hidden="true" class="icon label-icon astro-r2p65idu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21 14h-1V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7H3a1 1 0 0 0-1 1v2a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2a1 1 0 0 0-1-1ZM6 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H6V7Zm14 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16v1Z"/></svg><select autocomplete="off" class="astro-r2p65idu"><option value="dark" class="astro-r2p65idu">Dark</option><option value="light" class="astro-r2p65idu">Light</option><option value="auto" selected class="astro-r2p65idu">Auto</option></select><svg aria-hidden="true" class="icon caret astro-r2p65idu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z"/></svg></label></starlight-theme-select><script>
72
- StarlightThemeProvider.updatePickers();
73
- </script></div></div></div></div></nav><div class="main-frame astro-gqpr5s5a"><script type="module">var e=document.getElementById(`starlight__sidebar`),t=e?.querySelector(`sl-sidebar-state-persist`),n=`sl-sidebar-state`,r=()=>{let r=[],i=t?.dataset.hash||``;try{let e=sessionStorage.getItem(n),t=JSON.parse(e||`{}`);Array.isArray(t.open)&&t.hash===i&&(r=t.open)}catch{}return{hash:i,open:r,scroll:e?.scrollTop||0}},i=e=>{try{sessionStorage.setItem(n,JSON.stringify(e))}catch{}},a=()=>i(r()),o=(e,t)=>{let n=r();n.open[t]=e,i(n)};t?.addEventListener(`click`,e=>{if(!(e.target instanceof Element))return;let t=e.target.closest(`summary`)?.closest(`details`);if(!t)return;let n=t.querySelector(`sl-sidebar-restore`),r=parseInt(n?.dataset.index||``);isNaN(r)||o(!t.open,r)}),addEventListener(`visibilitychange`,()=>{document.visibilityState===`hidden`&&a()});</script><div class="lg:sl-flex astro-abfeecmu"><div class="main-pane astro-abfeecmu"><main data-pagefind-body class="astro-vdxcvpsm" lang="en" dir="ltr"><div class="content-panel astro-oil7k7jf"><div class="sl-container astro-oil7k7jf"><h1 id="_top" class="astro-2sm4b3ln">Social Media</h1></div></div><div class="content-panel astro-oil7k7jf"><div class="sl-container astro-oil7k7jf"><div class="sl-markdown-content"><!-- Generated from ../../../../README.md by scripts/sync-readme.mjs — do not edit directly. -->
74
- <div class="sl-heading-wrapper level-h3"><h3 id="blogs">Blogs</h3><a class="sl-anchor-link" href="#blogs"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore="">Section titled “Blogs”</span></a></div>
75
- <p>Personal sites for sailors and their boats with their tech projects. These are all reasonably live as of 2026.</p>
76
- <ul>
77
- <li id="bergie"><a href="https://bergie.iki.fi">Bergie</a> - Baltic sailor, boat projects and SignalK plugin developer (<a href="https://github.com/meri-imperiumi">meri-imperiumi</a>) and <a href="https://handbook.lille-oe.de">boat handbook with checklists</a>.</li>
78
- <li id="boathackers"><a href="https://boathackers.com">BoatHackers</a> - Leopard 45, projects with Home Assistant, Starlink, NMEA2000, Victron.</li>
79
- <li id="coelcanth"><a href="https://www.coelacanth.ch">coelcanth</a> - Hutting 40, Swiss owned, cruises Baltic and North Sea. Cruising blog posts, plus DIY hardware projects and beautifully produced <a href="https://www.youtube.com/@sy.coelacanth">videos</a>.</li>
80
- <li id="catalina-320-log"><a href="https://www.yachtslog.com">Catalina 320 Log</a> - Raspberry Pi, NMEA, SignalK, VBA.</li>
81
- <li id="cricalix"><a href="https://www.cricalix.net">Cricalix</a> - Ireland, Victoria 34, NMEA, Python, Solar, Shipmodul Miniplex.</li>
82
- <li id="hacking-family"><a href="https://hackingfamily.com/Cruise_Info/Equipment/Equipment.htm">Hacking Family</a> - Long term world cruisers on Wauquiez-designed catamaran with advice on electronics, software, mapping.</li>
83
- <li id="lille-ø"><a href="https://lille-oe.de/boat/">Lille Ø</a> - German owner (English language site), Amigo 40, open source software and hardware projects, LoRa, videos.</li>
84
- <li id="navigation-mac--co"><a href="https://www.navigation-mac.fr">Navigation Mac &#x26; Co</a> - French, with English translation. News and articles, focus on weather data, macOS and iPad navigation.</li>
85
- <li id="nick-hayward"><a href="https://www.nick-hayward.co.uk/category/narrowboat/">Nick Hayward</a> - Narrowboat projects including Home Assistant, ESPHome, Victron.</li>
86
- <li id="ole-w-saastad"><a href="https://www.homelinux.no">Ole W. Saastad</a> - Raspberry Pi boat integration.</li>
87
- <li id="pyssel"><a href="https://pysselilivet.blogspot.com">Pyssel</a> - Boat projects and news, including Home Assistant, OpenPlotter, ESP32.</li>
88
- <li id="project-bob"><a href="https://www.projectbob.xyz">Project Bob</a> - Autonomous boat circumnavigation project.</li>
89
- <li id="seabits"><a href="https://seabits.com">Seabits</a> - Pacific North West, Kristen 50 and Symbol Pilothouse motor yachts, SignalK, dashboards, Victron.</li>
90
- <li id="sy-bockra"><a href="https://corbin39.org/wp-content/uploads/2025/06/BOCKRA-nav-system-notes-Spring-2025-DS-06-06-25.pdf">SY Bockra</a> - 1981 Corbin 39, OpenCPN, Open Boat Projects, AvNav. One-off summary document of experiences.</li>
91
- <li id="sy-sea-jade-boatstuff"><img src="../images/icons/github.ico" width="16" height="16"> <a href="https://sy-sea-jade.github.io/boatstuff/">SY Sea Jade Boatstuff</a> - Checklists, equipment choices, passage planning templates and other tabular data.</li>
92
- <li id="the-low-cost-sailor"><a href="https://www.thelowcostsailor.com">The Low Cost Sailor</a> - Boat tech news and articles. English, French, Spanish. Also <img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@TheLowCostSailor">Spanish</a> and <img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@lowcostsailor">English</a> YouTube channels.</li>
93
- <li id="zapped-myself"><a href="https://zappedmyself.com/projects/nmea2000/">Zapped Myself</a> - NMEA2000, AIS, ESP32 projects.</li>
94
- </ul>
95
- <div class="sl-heading-wrapper level-h3"><h3 id="vlogs">Vlogs</h3><a class="sl-anchor-link" href="#vlogs"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore="">Section titled “Vlogs”</span></a></div>
96
- <p>Video channels from YouTube and elsewhere for boat tech projects.</p>
97
- <ul>
98
- <li id="8-bit-sailing"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@8bitsailing/">8-bit Sailing</a> - Raspberry Pi, OpenPlotter and Raymarine.</li>
99
- <li id="boating-with-the-baileys"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@BoatingwiththeBaileys">Boating with the Baileys</a> - Electrical and electronics projects on a 2000s Bavaria 36, including SignalK, KIP, Node-RED, OpenPlotter and SensESP.</li>
100
- <li id="boats-and-bits"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@boatsandbits">Boats and Bits</a> - DIY boat tech, Raymarine networking, electrics, 3D printing.</li>
101
- <li id="diy-onboard"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@DIYonboard-e4i">DIY Onboard</a> - Raspberry Pi and OpenPlotter.</li>
102
- <li id="gary-woodruff"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@garrywoodruff960">Gary Woodruff</a> - Boat projects and HowTo guides for boat electrics and electronics, focus on Lowrance equipment.</li>
103
- <li id="out-chasing-stars"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@OutChasingStars">Out Chasing Stars</a> - OpenCPN and general boat electrics, electronics.</li>
104
- <li id="pacific-yacht-systems"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@PacificYachtSystems">Pacific Yacht Systems</a> - Last active in 2023, large back catalogue of instructional videos on marine electrics, electronics and networking.</li>
105
- <li id="raspberry-for-sailing"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@Sir-Real">Raspberry for Sailing</a> - OpenPlotter, SignalK, KIP projects on Raspberry Pi.</li>
106
- <li id="smart-boat-innovations"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@SmartBoatInnovations">Smart Boat Innovations</a> - Raspberry Pi, HomeAssistant and SignalK boat projects.</li>
107
- <li id="sv-apres"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/playlist?list=PLqHa5JFKHBLwxeCuc6uaa5TzAXVeqTyiD">SV Apres</a> - OpenPlotter, NMEA2000 and general boat tech.</li>
108
- <li id="the-florida-captain"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@TheFloridaCaptain">The Florida Captain</a> - Open source boat network and apps.</li>
109
- <li id="tom-seahorse"><img src="../images/icons/youtube.ico" width="16" height="16"> <a href="https://www.youtube.com/@Tom-seahorse/videos">Tom Seahorse</a> - UK. Catamaran. Raspberry Pi, OpenCPN, Home Assistant.</li>
110
- </ul>
111
- <div class="sl-heading-wrapper level-h3"><h3 id="forums">Forums</h3><a class="sl-anchor-link" href="#forums"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore="">Section titled “Forums”</span></a></div>
112
- <p><em>All active as of 2026</em></p>
113
- <ul>
114
- <li id="boatdesignnet"><a href="https://www.boatdesign.net/forums/onboard-electronics-controls/">boatdesign.net</a> - Electronics and Controls forum.</li>
115
- <li id="boat-electrical-and-electronic-qa"><img src="../images/icons/facebook.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/5844662375630348">Boat Electrical and Electronic Q&#x26;A</a> - Private Facebook group, >70k members, avg post per day.</li>
116
- <li id="nmea-2000-support-group"><img src="../images/icons/facebook.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/380510566227511/">NMEA 2000 Support Group</a> - Public Facebook group.</li>
117
- <li id="nmea-2000-technical-forum"><img src="../images/icons/facebook.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/699562237256639/">NMEA 2000 Technical Forum</a> - Private Facebook group.</li>
118
- <li id="opencpn-users"><img src="../images/icons/facebook.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/2405863179652854/">OpenCPN Users</a> - Private Facebook group, >12k members, dozen or two posts a month.</li>
119
- <li id="openmarine"><a href="https://forum.openmarine.net">OpenMarine</a> - Marine electronics and networking, focus on Macarthur HAT, PyPilot, OpenPlotter and Node RED.</li>
120
- <li id="panbo"><a href="https://panbo.com/marineelectronicsforum/">Panbo</a> - Marine electronics and networking.</li>
121
- <li id="raspberry-pi-for-boats"><img src="../images/icons/facebook.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/1666364153609573/">Raspberry Pi for Boats</a> - Private Facebook group, >17k members, couple dozen posts per month.</li>
122
- <li id="signalk-google-group"><a href="https://groups.google.com/g/signalk">SignalK Google Group</a> - Active as of end 2025.</li>
123
- <li id="the-hull-truth"><a href="https://www.thehulltruth.com/marine-electronics-forum-19/">The Hull Truth</a> - Marine electronics forum.</li>
124
- </ul></div><footer class="sl-flex astro-xhxjzfa7"><div class="meta sl-flex astro-xhxjzfa7"></div><div class="pagination-links print:hidden astro-jgq3vlii" dir="ltr"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/" rel="prev" class="astro-jgq3vlii"><svg aria-hidden="true" class="astro-jgq3vlii astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1.5rem;"><path d="M17 11H9.41l3.3-3.29a1.004 1.004 0 1 0-1.42-1.42l-5 5a1 1 0 0 0-.21.33 1 1 0 0 0 0 .76 1 1 0 0 0 .21.33l5 5a1.002 1.002 0 0 0 1.639-.325 1 1 0 0 0-.219-1.095L9.41 13H17a1 1 0 0 0 0-2Z"/></svg><span class="astro-jgq3vlii">Previous<br class="astro-jgq3vlii"><span class="link-title astro-jgq3vlii">Home</span></span></a><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/charts/" rel="next" class="astro-jgq3vlii"><svg aria-hidden="true" class="astro-jgq3vlii astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1.5rem;"><path d="M17.92 11.62a1.001 1.001 0 0 0-.21-.33l-5-5a1.003 1.003 0 1 0-1.42 1.42l3.3 3.29H7a1 1 0 0 0 0 2h7.59l-3.3 3.29a1.002 1.002 0 0 0 .325 1.639 1 1 0 0 0 1.095-.219l5-5a1 1 0 0 0 .21-.33 1 1 0 0 0 0-.76Z"/></svg><span class="astro-jgq3vlii">Next<br class="astro-jgq3vlii"><span class="link-title astro-jgq3vlii">Charts and Data</span></span></a></div></footer></div></div></main></div></div></div></div></body></html>
1
+ <!doctype html><title>Redirecting to: /social/</title><meta http-equiv="refresh" content="0;url=/social/"><meta name="robots" content="noindex"><link rel="canonical" href="https://boat-tech-directory.rhizomatics.org.uk/social/"><body> <a href="/social/">Redirecting from <code>/@rhizomatics/signalk-boat-tech-directory-plugin/social-media/</code> to <code>/social/</code></a></body>
@@ -0,0 +1 @@
1
+ <!doctype html><title>Redirecting to: /social/</title><meta http-equiv="refresh" content="0;url=/social/"><meta name="robots" content="noindex"><link rel="canonical" href="https://boat-tech-directory.rhizomatics.org.uk/social/"><body> <a href="/social/">Redirecting from <code>/@rhizomatics/signalk-boat-tech-directory-plugin/social_media/</code> to <code>/social/</code></a></body>