The bmannconsulting.com website
1--- 2layout: default 3title: Home 4id: home 5permalink: / 6--- 7<style> 8 .callout {padding: 0.25em 0.25em 1em 1em; background: #f5f7ff; border-radius: 25px;} 9 .wrapper { 10 max-width: 46em; 11 } 12 13 a.journal-link { 14 all: unset; 15 cursor: pointer; 16 } 17 a.journal-link::after { 18 all: unset; 19 } 20 21</style> 22# Hi 👋 Welcome to Boris Mann's Homepage 23 24I'm interested in [[Open Source]], community, co-operative models. Pooling capital and collaboration. In Canada I help run the [[CoSocial]] Community Co-op. In Vancouver, I'm a director at [[Z-Space]] and I'm one of the organizers of [[DWebYVR]]. I like to cook & eat and have a [[FoodWiki]]. 25 26The [[Feeds]] page has ways to subscribe, and my [[Boris Mann|About]] page has more of what I'm up to and ways to get in touch. 27 28## [Blog Posts 🖊](../blog/) 29 30 <ul> 31 {% for blog in site.posts limit:3 %} 32 <li class="blog-entry" style="margin-bottom: 5px;"> 33 <a class="internal-link" href="..{{ blog.url }}">{{ blog.title }}</a> <time datetime="blog.date | date_to_xmlschema">{{ blog.date | date: "%B %-d, %Y" }}</time> 34 </li> 35 {% endfor %} 36 </ul> 37 38## [Digital Garden 🌱](../notes/) 39 40{% assign notehtml = '' %} 41{% assign recentnotes = site.notes | sort: 'last_modified_at' | reverse %} 42{% assign notecount = 0 %} 43{% for note in recentnotes %} 44 {% if note.section != 'journal' %} 45 {% assign notehtml = notehtml | append: "<a class='internal-link' href='" | append: note.url | append: "'>" | append: note.title | append: "</a>" %} 46 {% assign notecount = notecount | plus:1 %} 47 {% if notecount < 10 %} 48 {% assign notehtml = notehtml | append: ", " %} 49 {% else %} 50 {% break %} 51 {% endif %} 52 {% endif %} 53{% endfor %} 54 55These are the ten most recently modified local notes: {{ notehtml }}. 56 57## [Journal Entries 📓](../journal/) 58 59{% assign journalposts = site.journals | reverse %} 60 61 {% assign linksposted = 0 %} 62 {% for post in journalposts %} 63 {% if post.link %} 64<p style="padding-bottom: 0.5em;">{{ post.content | strip_html | truncate: 100 }}&nbsp;<a href="{{ post.url }}" class="journal-link" style="font-size: x-small">#</a><br /><a href="{{ post.link }}">{{ post.link }}</a></p> 65 {% assign linksposted = linksposted | plus: 1 %} 66 {% endif %} 67 {% if linksposted >= 5 %}{% break %}{% endif %} 68{% endfor %} 69 70<hr /> 71 72My personal Mastodon account is <a href="https://cosocial.ca/@boris" rel="me">@boris@cosocial.ca</a>. Journal items are cross-posted to <a href="https://toolsforthought.social/@boris" rel="me">@boris@toolsforthought.social</a>. All of my social profiles are [listed at bmann.ca](https://bmann.ca).