587 lines
16 KiB
HTML
587 lines
16 KiB
HTML
<!doctype html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||
|
||
|
||
|
||
|
||
<title>May 2nd, 2026 | FediLearns</title>
|
||
<meta name="description" content="Learning together, by and for the fediverse">
|
||
|
||
<meta property="og:title" content="May 2nd, 2026 | FediLearns">
|
||
<meta property="og:type" content="website">
|
||
<meta property="og:description" content="Learning together, by and for the fediverse">
|
||
<meta property="og:site_name" content="FediLearns">
|
||
|
||
<meta name="generator" content="Eleventy v3.1.5">
|
||
|
||
|
||
|
||
|
||
|
||
<style>#listings {
|
||
columns: 3;
|
||
}
|
||
|
||
@media (max-width: 1200px) {
|
||
#listings {
|
||
columns: 2;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 650px) {
|
||
#listings {
|
||
columns: 1;
|
||
}
|
||
}
|
||
|
||
/* jump links */
|
||
#jump-links {
|
||
padding-bottom: 1rem;
|
||
margin-bottom: 1rem;
|
||
border-bottom: solid var(--color-pink);
|
||
}
|
||
|
||
#jump-links h2,
|
||
#jump-links li {
|
||
font-family: "Bebas Neue", sans-serif;
|
||
font-size: 1.3rem;
|
||
font-weight: normal;
|
||
}
|
||
|
||
#jump-links * {
|
||
display: inline;
|
||
}
|
||
|
||
#jump-links a {
|
||
text-decoration: none;
|
||
}
|
||
|
||
#jump-links li {
|
||
list-style: none;
|
||
margin: 0;
|
||
}
|
||
|
||
#jump-links li:not(:last-child)::after {
|
||
content: "..." / "";
|
||
}
|
||
|
||
/* categories */
|
||
|
||
.category {
|
||
break-inside: avoid;
|
||
}
|
||
|
||
.category-title {
|
||
background-color: var(--color-gray);
|
||
padding: .25rem;
|
||
margin-bottom: .5rem;
|
||
}
|
||
|
||
/* references highlighting */
|
||
/* drawn from https://aarontgrogg.com/blog/2012/05/18/pure-css-highlight-for-link-target/ */
|
||
.category-title:has(h2:target) {
|
||
animation: hilite 2.5s;
|
||
}
|
||
|
||
@keyframes hilite {
|
||
0% {background-color: var(--color-gray);}
|
||
10% {background-color: var(--color-cyan-flipped);}
|
||
100% {background-color: var(--color-gray);}
|
||
}
|
||
|
||
/* remove animation for reduced motion viewers */
|
||
@media (prefers-reduced-motion: reduce) {
|
||
.category-title:has(h2:target) {
|
||
animation: none;
|
||
color: var(--color-cyan);
|
||
}
|
||
}
|
||
|
||
.category-title h2 {
|
||
text-align: left;
|
||
scroll-margin-top: 4rem;
|
||
font-family: "Bebas Neue";
|
||
margin: 0;
|
||
}
|
||
|
||
.category-title p {
|
||
text-align: right;
|
||
font-weight: bold;
|
||
margin: 0;
|
||
}
|
||
|
||
/* individual listings */
|
||
|
||
.listing {
|
||
margin-bottom: 1rem;
|
||
}
|
||
|
||
.listing strong {
|
||
font-weight: bold;
|
||
}
|
||
|
||
.blurb {
|
||
margin-bottom: .5rem;
|
||
}
|
||
|
||
.listed-on {
|
||
font-size: .85rem;
|
||
text-align: right;
|
||
}
|
||
:root {
|
||
color-scheme: light dark;
|
||
|
||
--color-dark: #2e303e;
|
||
--color-dark-alt: #3c3f52;
|
||
--color-light: #ebeeef;
|
||
--color-light-alt: #dbe1e3;
|
||
--color-cyan-dark: #18737b;
|
||
--color-cyan-light: #25b0bc;
|
||
--color-pink-dark: #94195d;
|
||
--color-pink-light: #ee9fcb;
|
||
|
||
--color-text: light-dark(var(--color-dark), var(--color-light));
|
||
--color-bg: light-dark(var(--color-light), var(--color-dark));
|
||
--color-gray: light-dark(var(--color-light-alt), var(--color-dark-alt));
|
||
--color-cyan: light-dark(var(--color-cyan-dark), var(--color-cyan-light));
|
||
--color-cyan-flipped: light-dark(var(--color-cyan-light), var(--color-cyan-dark));
|
||
--color-pink: light-dark(var(--color-pink-dark), var(--color-pink-light));
|
||
}
|
||
|
||
* {
|
||
box-sizing: border-box;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
|
||
body {
|
||
color: var(--color-text);
|
||
background-color: var(--color-bg);
|
||
width: 65%;
|
||
max-width: 1400px;
|
||
margin: 0 auto;
|
||
font-family: "Fraunces", serif;
|
||
font-weight: 300;
|
||
}
|
||
|
||
main {
|
||
padding-bottom: 2rem;
|
||
}
|
||
|
||
@media (max-width: 1050px) {
|
||
body {
|
||
width: 85%
|
||
}
|
||
}
|
||
|
||
@media (max-width: 650px) {
|
||
body {
|
||
width: 92%;
|
||
}
|
||
}
|
||
|
||
h1, h2, h3 {
|
||
font-weight: 400;
|
||
}
|
||
|
||
h1 {
|
||
text-align: center;
|
||
font-size: 3rem;
|
||
margin: 3rem auto;
|
||
}
|
||
|
||
@media (max-width: 650px) {
|
||
h1 {
|
||
font-size: 2.4rem;
|
||
margin-top: 1rem;
|
||
}
|
||
}
|
||
|
||
h3 {
|
||
text-transform: capitalize;
|
||
margin-bottom: .5rem;
|
||
}
|
||
|
||
p {
|
||
margin-bottom: 1rem;
|
||
}
|
||
|
||
a {
|
||
color: var(--color-cyan);
|
||
text-decoration-thickness: .1rem;
|
||
transition: text-decoration-thickness .5s;
|
||
border-radius: .05rem;
|
||
}
|
||
|
||
a:visited {
|
||
color: var(--color-pink);
|
||
}
|
||
|
||
@media (any-hover: hover) {
|
||
a:hover {
|
||
text-decoration-thickness: .2rem;
|
||
}
|
||
}
|
||
|
||
a:focus-visible {
|
||
outline: solid var(--color-pink);
|
||
}
|
||
|
||
a:visited:focus-visible {
|
||
outline-color: var(--color-cyan);
|
||
}
|
||
|
||
main ul {
|
||
margin-left: 1rem;
|
||
margin-bottom: 1rem;
|
||
}
|
||
|
||
main li {
|
||
margin-left: 1rem;
|
||
}
|
||
|
||
/* iframe is on submission page */
|
||
iframe {
|
||
margin: 2rem 0;
|
||
}
|
||
nav {
|
||
padding: .25rem 0 1rem;
|
||
}
|
||
|
||
footer {
|
||
padding: 1rem 0;
|
||
}
|
||
|
||
nav ul,
|
||
footer ul {
|
||
list-style: none;
|
||
display: flex;
|
||
flex-flow: column;
|
||
text-align: center;
|
||
gap: .2rem;
|
||
}
|
||
|
||
header,
|
||
nav li,
|
||
footer li {
|
||
font-family: "Bebas Neue", sans-serif;
|
||
font-size: 1.3rem;
|
||
}
|
||
|
||
header {
|
||
border-bottom: solid var(--color-pink);
|
||
}
|
||
|
||
footer {
|
||
border-top: solid var(--color-pink);
|
||
}
|
||
|
||
a[aria-current="page"] {
|
||
text-decoration: line-through;
|
||
color: rgb(from var(--color-pink) r g b / 65%);
|
||
}
|
||
|
||
/* Skip link */
|
||
#skip {
|
||
-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
|
||
clip-path: polygon(0 0, 0 0, 0 0, 0 0);
|
||
}
|
||
|
||
#skip:focus-visible {
|
||
-webkit-clip-path: none;
|
||
clip-path: none;
|
||
}</style>
|
||
|
||
|
||
<script type="module"></script>
|
||
|
||
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
||
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fraunces:opsz,wght@9..144,100..900&display=swap" rel="stylesheet">
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<nav>
|
||
<ul>
|
||
<li><a id="skip" href="#main">skip to content</a></li>
|
||
<li><a href="/">home page</a></li>
|
||
<li><a href="/about/">about this site</a></li>
|
||
<li><a href="/submit/">submit a listing</a></li>
|
||
</ul>
|
||
</nav>
|
||
</header>
|
||
|
||
|
||
<main id="main">
|
||
<h1 id="may-2nd-2026">May 2nd, 2026</h1>
|
||
|
||
|
||
|
||
|
||
<div id="listings">
|
||
|
||
<div class="category">
|
||
<div class="category-title">
|
||
<h2 id="animals-and-the-outdoors">animals and the outdoors</h2>
|
||
<p>touchin' grass</p>
|
||
</div>
|
||
|
||
|
||
<div class="listing">
|
||
<h3 id="intimacy-with-plants-discovering-their-unique-features">Intimacy with Plants - Discovering Their Unique Features</h3>
|
||
<p class="blurb">
|
||
<strong>
|
||
<a href="https://thicc.horse/@taq" target="_blank">@taq@thicc.horse</a>
|
||
offers:</strong> Not focused on plant care or identification, but building curiosity and awareness of the features of plants which help with identification. Enjoy walks more by taking the time to explore the differences in each plant. Leaf shape, texture, size and growth patterns, symmetries. Soon you'll be recognizing old friends from across the street!
|
||
</p>
|
||
|
||
<p class="listed-on">
|
||
listed on <time datetime="2026-05-02">May 2, 2026</time>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
|
||
<div class="category">
|
||
<div class="category-title">
|
||
<h2 id="art-and-crafts">art and crafts</h2>
|
||
<p>makin' stuff</p>
|
||
</div>
|
||
|
||
|
||
<div class="listing">
|
||
<h3 id="i-can-help-you-get-started-with-recording-music">I can help you get started with recording music</h3>
|
||
<p class="blurb">
|
||
<strong>
|
||
<a href="https://kind.social/@JessicatheVIArtist" target="_blank">@JessicatheVIArtist@kind.social</a>
|
||
offers:</strong> If you're just starting out with a digital audio workstation, I can help you understand concepts. How do I record myself, what are takes, and how do I make myself sound good? What the heck are pre- and post-fader sends, and what on earth is MIDI?? I can also help you understand synthesis if you've got a hardware or software synth you'd like to tame. What are oscillators, filters, envelopes and LFOs and how do I create a whole new sound? If you've got a website or app you're developing, I can also offer feedback on its accessibility to screen reader users.
|
||
</p>
|
||
|
||
<p class="listed-on">
|
||
listed on <time datetime="2026-05-02">May 2, 2026</time>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="listing">
|
||
<h3 id="art-design-critique-and-encouragement">Art/design critique and encouragement</h3>
|
||
<p class="blurb">
|
||
<strong>
|
||
<a href="https://kind.social/@moss" target="_blank">@moss@kind.social</a>
|
||
offers:</strong> I am a visual jack of all trades, pretty experienced in some. Creative critique & external support is a really great way to grow as an artist or designer (those titles used here in the broadest sense possible). Whether you’re starting a project, stuck on a piece and trying to discern next steps, or it’s a finished project you want to reflect on, I’m happy to give whatever balance of kind constructive critique &/or positive reinforcement you need. My best mediums are in no particular order: fountain pens & ink, photography, lighting & production design, analog/irl interaction design, visual narratives, and installation/themed environments. I’ve taken classes in & enjoyed digital painting, game design, neon art, ceramics and many more. I’m less skilled in audio, software, & film/video. I also enjoy creative research, as well as brainstorming how to make your interests adaptive and accessible for different kinds of disabilities & health challenges. (I have limited spoons so please check in with me on my bandwidth/timelines, and I’d love to swap skills, especially if you’re looking for a lot of support!)
|
||
</p>
|
||
|
||
<p class="listed-on">
|
||
listed on <time datetime="2026-05-02">May 2, 2026</time>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
|
||
<div class="category">
|
||
<div class="category-title">
|
||
<h2 id="beauty-and-health">beauty and health</h2>
|
||
<p>feelin' good</p>
|
||
</div>
|
||
|
||
<p>No listings.</p>
|
||
|
||
|
||
</div>
|
||
|
||
<div class="category">
|
||
<div class="category-title">
|
||
<h2 id="business">business</h2>
|
||
<p>makin' money</p>
|
||
</div>
|
||
|
||
<p>No listings.</p>
|
||
|
||
|
||
</div>
|
||
|
||
<div class="category">
|
||
<div class="category-title">
|
||
<h2 id="food-and-drink">food and drink</h2>
|
||
<p>good eatin'</p>
|
||
</div>
|
||
|
||
|
||
<div class="listing">
|
||
<h3 id="how-do-i-make-this-without-meat-dairy-eggs">How do I make this without meat/dairy/eggs?!</h3>
|
||
<p class="blurb">
|
||
<strong>
|
||
<a href="https://zeroes.ca/@cthulku" target="_blank">@cthulku@zeroes.ca</a>
|
||
offers:</strong> I am a food dork with a couple decades' experience with both vegan and vegetarian (ovo-lacto) cookery, and I quite enjoy finding ways to make normally omnivorous dishes vegetarian. While I'm not one to build a homebrew Beyond burger, I have experience with a wide range of vegan proteins and preparations, as well as techniques and tips that I've picked up over the years, to make something that may not fool an omnivore, but will still be delicious! I'm thinking of more of a Q&A type service, rather than any kind of structured lesson, but every journey begins with a single step and all that.
|
||
</p>
|
||
|
||
<p class="listed-on">
|
||
listed on <time datetime="2026-05-02">May 2, 2026</time>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="listing">
|
||
<h3 id="how-to-drink-wine">How To Drink Wine</h3>
|
||
<p class="blurb">
|
||
<strong>
|
||
<a href="https://mas.to/@liferstate" target="_blank">@lifertate@mas.to</a>
|
||
offers:</strong> If you've ever felt intimidated by the supermarket wine aisle, or wanted something better but not known where to start, I can help. Like food, wine tells stories about geography, history, politics. I can advise you on food pairings, lesser known regions/grape varieties, how to get a good deal, and what *not* to buy. Don't ask an app what you should drink - ask me! Unlike the people in the app, I know what I'm about and I will not bullshit you.
|
||
</p>
|
||
|
||
<p class="listed-on">
|
||
listed on <time datetime="2026-05-02">May 2, 2026</time>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
|
||
<div class="category">
|
||
<div class="category-title">
|
||
<h2 id="history-science-and-languages">history science and languages</h2>
|
||
<p>book learnin'</p>
|
||
</div>
|
||
|
||
|
||
<div class="listing">
|
||
<h3 id="applied-statistics">Applied statistics</h3>
|
||
<p class="blurb">
|
||
<strong>
|
||
<a href="https://sfba.social/@minmi" target="_blank">@minmi@sfba.social</a>
|
||
offers:</strong> I am happy to answer any questions about statistics and data analysis. Whether it’s homework, curiosity, trying to understand a study or run an analysis, happy to share what I know!
|
||
</p>
|
||
|
||
<p class="listed-on">
|
||
listed on <time datetime="2026-05-02">May 2, 2026</time>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
|
||
<div class="category">
|
||
<div class="category-title">
|
||
<h2 id="interpersonal-and-life">interpersonal and life</h2>
|
||
<p>better livin'</p>
|
||
</div>
|
||
|
||
<p>No listings.</p>
|
||
|
||
|
||
</div>
|
||
|
||
<div class="category">
|
||
<div class="category-title">
|
||
<h2 id="miscellany-and-more">miscellany and more</h2>
|
||
<p>leaves me guessin'</p>
|
||
</div>
|
||
|
||
<p>No listings.</p>
|
||
|
||
|
||
</div>
|
||
|
||
<div class="category">
|
||
<div class="category-title">
|
||
<h2 id="repair-and-diy">repair and diy</h2>
|
||
<p>fixin' stuff</p>
|
||
</div>
|
||
|
||
|
||
<div class="listing">
|
||
<h3 id="how-to-mend-things">How To Mend Things</h3>
|
||
<p class="blurb">
|
||
<strong>
|
||
<a href="https://neuromatch.social/@iris" target="_blank">@iris@neuromatch.social</a>
|
||
offers:</strong> I attempt to fix everything, some of it succeeds. Bring me (virtually) your thing that is damaged and we can assess whether it is, or can shortly be, within your capabilities (and current inventory of tools and materials) to fix it. Examples: favorite mug cracked, zipper broke, office chair sinking, backpack falling apart.
|
||
</p>
|
||
|
||
<p class="listed-on">
|
||
listed on <time datetime="2026-05-02">May 2, 2026</time>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
|
||
<div class="category">
|
||
<div class="category-title">
|
||
<h2 id="technology">technology</h2>
|
||
<p>computer touchin'</p>
|
||
</div>
|
||
|
||
|
||
<div class="listing">
|
||
<h3 id="nvda-screen-reader-basics-to-advanced">NVDA screen reader basics to advanced</h3>
|
||
<p class="blurb">
|
||
<strong>
|
||
<a href="https://dragonscave.space/@x0" target="_blank">@x0@dragonscave.space</a>
|
||
offers:</strong> I'm a blind Windows user who has been cutting my teeth on Non-Visual Desktop Access (NVDA) for over a decade. I use it to do everything from file management to web apps to development. If you're just getting started with screen readers, or know your way around the basics and want to take your usage to the next level, I can help! I'll happily teach a sighted person who is picking up NVDA for proper accessibility testing as well, you never know if your app or website works right with a screen reader until you drive it with one.
|
||
</p>
|
||
|
||
<p class="listed-on">
|
||
listed on <time datetime="2026-05-02">May 2, 2026</time>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
|
||
<div class="category">
|
||
<div class="category-title">
|
||
<h2 id="writing-editing-and-literature">writing editing and literature</h2>
|
||
<p>wordsmithin'</p>
|
||
</div>
|
||
|
||
|
||
<div class="listing">
|
||
<h3 id="scientific-paper-editing">Scientific paper editing</h3>
|
||
<p class="blurb">
|
||
<strong>
|
||
<a href="https://neuromatch.social/@SRLevine" target="_blank">@SRLevine@neuromatch.social</a>
|
||
offers:</strong> Do you have all of the information/data/figures, but an awkwardly worded paper? Do you need help getting it ready for submission? Would you otherwise turn to AI? Happy to help, particularly in field (organic chemistry, chemical biology), but should be able to mange most of chemistry & biology. Can also help with qualifying exam papers, etc.
|
||
</p>
|
||
|
||
<p class="listed-on">
|
||
listed on <time datetime="2026-05-02">May 2, 2026</time>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
|
||
</div>
|
||
|
||
|
||
</main>
|
||
|
||
<footer>
|
||
<ul>
|
||
<li>
|
||
maintained by <a href="https://leecat.art" target="_blank">lee</a>
|
||
</li>
|
||
<li>
|
||
<a href="/daily/">Listings by day</a>
|
||
</li>
|
||
<li>
|
||
<a href="/feed.xml">RSS</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://heckin.technology/inherentlee/fedilearns" target="_blank">source code</a>
|
||
</li>
|
||
</ul>
|
||
</footer>
|
||
|
||
|
||
<!-- This page `/daily/2026-05-02/` was built on 2026-05-06T00:13:55.640Z -->
|
||
</body>
|
||
</html>
|