Files
fedilearns/_site/daily/2026-05-01/index.html

762 lines
17 KiB
HTML
Raw Normal View History

2026-05-05 14:31:46 -07:00
<!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 1st, 2026 | FediLearns</title>
<meta name="description" content="Learning together, by and for the fediverse">
<meta property="og:title" content="May 1st, 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">
2026-05-05 20:20:07 -07:00
<meta property="og:image" content="/favicon.ico">
<meta property="og:image:alt" content="a newspaper icon with the fediverse logo, an interconnected rainbow pentagon, superimposed.">
2026-05-05 14:31:46 -07:00
<meta name="generator" content="Eleventy v3.1.5">
2026-05-06 09:02:12 -07:00
<style>.listings {
2026-05-05 14:31:46 -07:00
columns: 3;
}
@media (max-width: 1200px) {
2026-05-06 09:02:12 -07:00
.listings {
2026-05-05 14:31:46 -07:00
columns: 2;
}
}
@media (max-width: 650px) {
2026-05-06 09:02:12 -07:00
.listings {
2026-05-05 14:31:46 -07:00
columns: 1;
}
}
/* jump links */
#jump-links {
padding-bottom: 1rem;
margin-bottom: 1rem;
border-bottom: solid var(--color-pink);
}
#jump-links h2,
#jump-links li {
2026-05-05 17:14:05 -07:00
font-family: "Bebas Neue", sans-serif;
2026-05-05 14:31:46 -07:00
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 {
2026-05-05 17:08:24 -07:00
text-align: left;
2026-05-05 14:31:46 -07:00
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;
}
2026-05-06 09:02:12 -07:00
section > h2 {
background-color: var(--color-gray);
font-size: 2rem;
text-align: center;
margin: 5rem 0 1rem;
}
2026-05-05 14:31:46 -07:00
: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;
2026-05-05 17:14:05 -07:00
font-family: "Fraunces", serif;
2026-05-05 14:31:46 -07:00
font-weight: 300;
}
main {
padding-bottom: 2rem;
}
@media (max-width: 1050px) {
body {
width: 85%
}
}
@media (max-width: 650px) {
body {
width: 92%;
}
}
2026-05-05 17:08:24 -07:00
h1, h2, h3 {
2026-05-05 14:31:46 -07:00
font-weight: 400;
}
h1 {
text-align: center;
font-size: 3rem;
2026-05-05 17:14:05 -07:00
margin: 3rem auto;
2026-05-05 14:31:46 -07:00
}
@media (max-width: 650px) {
h1 {
font-size: 2.4rem;
margin-top: 1rem;
}
}
2026-05-06 08:28:25 -07:00
h2 {
margin-bottom: .5rem;
}
2026-05-05 14:31:46 -07:00
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 {
2026-05-05 17:14:05 -07:00
font-family: "Bebas Neue", sans-serif;
2026-05-05 14:31:46 -07:00
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-1st-2026">May 1st, 2026</h1>
2026-05-06 08:28:25 -07:00
2026-05-06 09:02:12 -07:00
<section>
<h2 id="offers">Offers</h2>
<div class="listings">
2026-05-05 14:31:46 -07:00
<div class="category">
<div class="category-title">
<h2 id="animals-and-the-outdoors">animals and the outdoors</h2>
<p>touchin&#39; grass</p>
</div>
2026-05-06 08:28:25 -07:00
2026-05-05 14:31:46 -07:00
<div class="listing">
2026-05-05 20:20:07 -07:00
<h3 id="home-gardening-including-low-spoons">🌿Home gardening - including low spoons 🪴🧑🏼‍🦽</h3>
2026-05-05 14:31:46 -07:00
<p class="blurb">
<strong>
2026-05-05 20:20:07 -07:00
<a href="https://zeroes.ca/@NilaJones" target="_blank">@NilaJones@zeroes.ca</a>
offers:</strong> Want to grow a few herbs or flowers on your balcony? Or enough food to feed your family for a year? Something in between? I&#39;ve been doing and teaching organic gardening for a long long time, and I love to answer questions or brainstorm together 🌿
2026-05-05 14:31:46 -07:00
</p>
<p class="listed-on">
listed on <time datetime="2026-05-01">May 1, 2026</time>
</p>
</div>
<div class="listing">
2026-05-05 20:20:07 -07:00
<h3 id="dog-training">Dog training</h3>
2026-05-05 14:31:46 -07:00
<p class="blurb">
<strong>
2026-05-05 20:20:07 -07:00
<a href="https://sunny.garden/@Goodworkdog" target="_blank">@Goodworkdog@sunny.garden</a>
offers:</strong> I can advise you on animal behavior, enrichment, problem solving, multi-pet homes, dog sports, and changes in home life. I have multiple certifications. I cant offer veterinary advice, but I will tell you when to see a vet instead of a trainer.
2026-05-05 14:31:46 -07:00
</p>
<p class="listed-on">
listed on <time datetime="2026-05-01">May 1, 2026</time>
</p>
</div>
</div>
<div class="category">
<div class="category-title">
<h2 id="art-and-crafts">art and crafts</h2>
<p>makin&#39; stuff</p>
</div>
2026-05-06 08:28:25 -07:00
2026-05-05 14:31:46 -07:00
<p>No listings.</p>
</div>
<div class="category">
<div class="category-title">
<h2 id="beauty-and-health">beauty and health</h2>
<p>feelin&#39; good</p>
</div>
2026-05-06 08:28:25 -07:00
2026-05-05 14:31:46 -07:00
<div class="listing">
<h3 id="making-the-respirator-and-masking-experience-better">Making the Respirator and Masking Experience Better</h3>
<p class="blurb">
<strong>
<a href="https://kind.social/@Texan_Reverend" target="_blank">@Texan_Reverend@kind.social</a>
offers:</strong> Are you interested in a mask or respirator to protect you from wildfire smoke, pathogens, construction dust, or allergens? Are people close to you asking that you mask up, but it&#39;s uncomfortable or hard to get in the habit? I can help with... Finding models of a good size and shape. Adjustments to achieve a good fit and seal. Safe and effective modifications. Fun and engaging decorations. Learning more about how respirators work and how they&#39;re tested.
</p>
<p class="listed-on">
listed on <time datetime="2026-05-01">May 1, 2026</time>
</p>
</div>
</div>
<div class="category">
<div class="category-title">
<h2 id="business">business</h2>
<p>makin&#39; money</p>
</div>
2026-05-06 08:28:25 -07:00
2026-05-05 14:31:46 -07:00
<div class="listing">
<h3 id="answers-to-your-silly-marketing-questions">Answers to Your Silly Marketing Questions</h3>
<p class="blurb">
<strong>
<a href="https://hachyderm.io/@mariyadelano" target="_blank">@mariyadelano@hachyderm.io</a>
offers:</strong> I want to answer marketing questions that you have been too afraid to ask. The sillier your question, the better! Examples for inspiration... why would I want to collect peoples emails for a list? Why do SEO blogs look like that? How did LinkedIn posts become this particular kind of cringe? Why does nobody think my website is the coolest thing since sliced bread? Be brave and maybe we will all learn something.
</p>
<p class="listed-on">
listed on <time datetime="2026-05-01">May 1, 2026</time>
</p>
</div>
</div>
<div class="category">
<div class="category-title">
<h2 id="food-and-drink">food and drink</h2>
<p>good eatin&#39;</p>
</div>
2026-05-06 08:28:25 -07:00
2026-05-05 14:31:46 -07:00
<p>No listings.</p>
</div>
<div class="category">
<div class="category-title">
2026-05-05 17:14:05 -07:00
<h2 id="history-science-and-languages">history science and languages</h2>
2026-05-05 14:31:46 -07:00
<p>book learnin&#39;</p>
</div>
2026-05-06 08:28:25 -07:00
2026-05-05 14:31:46 -07:00
<div class="listing">
2026-05-05 20:20:07 -07:00
<h3 id="ask-a-math-teacher">Ask a math teacher</h3>
2026-05-05 14:31:46 -07:00
<p class="blurb">
<strong>
2026-05-05 20:20:07 -07:00
<a href="https://chaosfem.tw/@TonyaMarie" target="_blank">@TonyaMarie@chaosfem.tw</a>
offers:</strong> Need help with your kid&#39;s homework? Going back to school? Retired teacher will help with your math questions up through basic college level!
2026-05-05 14:31:46 -07:00
</p>
<p class="listed-on">
listed on <time datetime="2026-05-01">May 1, 2026</time>
</p>
</div>
<div class="listing">
2026-05-05 20:20:07 -07:00
<h3 id="pure-math-q-and-a">pure math Q&amp;A</h3>
2026-05-05 14:31:46 -07:00
<p class="blurb">
<strong>
2026-05-05 20:20:07 -07:00
<a href="https://kolektiva.social/@AdrianRiskin" target="_blank">@AdrianRiskin@kolektiva.social</a>
offers:</strong> I am happy to help with K-12 math, undergraduate pure math, e.g. college algebra, precalc, calc, discrete, intro to proof, abstract algebra, number theory, analysis, etc. Also graduate level graph theory.
2026-05-05 14:31:46 -07:00
</p>
<p class="listed-on">
listed on <time datetime="2026-05-01">May 1, 2026</time>
</p>
</div>
</div>
<div class="category">
<div class="category-title">
<h2 id="interpersonal-and-life">interpersonal and life</h2>
<p>better livin&#39;</p>
</div>
2026-05-06 08:28:25 -07:00
2026-05-05 14:31:46 -07:00
<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&#39;</p>
</div>
2026-05-06 08:28:25 -07:00
2026-05-05 14:31:46 -07:00
<div class="listing">
<h3 id="learn-lockpicking-with-alice">Learn Lockpicking with Alice</h3>
<p class="blurb">
<strong>
<a href="https://lgbtqia.space/@alice" target="_blank">@alice@lgbtqia.space</a>
offers:</strong> I&#39;ve been an expert at opening things in unconventional ways for many years, and I&#39;m always happy to talk locks, lockpicking/bypassing, and other security-related topics. I have short lessons under the #LearnLockpickingWithAlice hashtag on Fedi.
</p>
<p class="listed-on">
listed on <time datetime="2026-05-01">May 1, 2026</time>
</p>
</div>
</div>
<div class="category">
<div class="category-title">
<h2 id="repair-and-diy">repair and diy</h2>
<p>fixin&#39; stuff</p>
</div>
2026-05-06 08:28:25 -07:00
2026-05-05 14:31:46 -07:00
<p>No listings.</p>
</div>
<div class="category">
<div class="category-title">
<h2 id="technology">technology</h2>
<p>computer touchin&#39;</p>
</div>
2026-05-06 08:28:25 -07:00
2026-05-05 14:31:46 -07:00
<div class="listing">
<h3 id="mobile-device-hacking-advice">Mobile device hacking advice</h3>
<p class="blurb">
<strong>
<a href="https://based.zone/@rpgwaiter" target="_blank">@rpgwaiter@based.zone</a>
offers:</strong> I&#39;ve been exploiting/reverse engineering mobile devices for over 10 years. I&#39;m always happy to discuss tooling, techniques, or anything else related to hacking mobile devices. Want to know how a certain app works? I have experience in everything from mitm traffic capture to memory hacking with Frida and static binary analysis, feel free to ask!
</p>
<p class="listed-on">
listed on <time datetime="2026-05-01">May 1, 2026</time>
</p>
</div>
<div class="listing">
<h3 id="what-the-hell-is-c">what the hell is C?</h3>
<p class="blurb">
<strong>
<a href="https://sweet.succubi.services/twinkle" target="_blank">@twinkle@sweet.succubi.services</a>
offers:</strong> Have you wanted to get into programming but don&#39;t know where to start? Do you know a programming language already but feel like you don&#39;t get Why Things Are Like This? I myself started out with the C programming language-- and I&#39;d love to pass on the knowledge to more people, because I think a good programming lesson is rare nowadays!
</p>
<p class="listed-on">
listed on <time datetime="2026-05-01">May 1, 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&#39;</p>
</div>
2026-05-06 08:28:25 -07:00
2026-05-05 14:31:46 -07:00
<p>No listings.</p>
</div>
</div>
2026-05-06 09:02:12 -07:00
</section>
<section>
<h2 id="requests">Requests</h2>
<div class="listings">
<div class="category">
<div class="category-title">
<h2 id="animals-and-the-outdoors-2">animals and the outdoors</h2>
<p>touchin&#39; grass</p>
</div>
<p>No listings.</p>
</div>
<div class="category">
<div class="category-title">
<h2 id="art-and-crafts-2">art and crafts</h2>
<p>makin&#39; stuff</p>
</div>
<p>No listings.</p>
</div>
<div class="category">
<div class="category-title">
<h2 id="beauty-and-health-2">beauty and health</h2>
<p>feelin&#39; good</p>
</div>
<p>No listings.</p>
</div>
<div class="category">
<div class="category-title">
<h2 id="business-2">business</h2>
<p>makin&#39; money</p>
</div>
<p>No listings.</p>
</div>
<div class="category">
<div class="category-title">
<h2 id="food-and-drink-2">food and drink</h2>
<p>good eatin&#39;</p>
</div>
<p>No listings.</p>
</div>
<div class="category">
<div class="category-title">
<h2 id="history-science-and-languages-2">history science and languages</h2>
<p>book learnin&#39;</p>
</div>
<p>No listings.</p>
</div>
<div class="category">
<div class="category-title">
<h2 id="interpersonal-and-life-2">interpersonal and life</h2>
<p>better livin&#39;</p>
</div>
<p>No listings.</p>
</div>
<div class="category">
<div class="category-title">
<h2 id="miscellany-and-more-2">miscellany and more</h2>
<p>leaves me guessin&#39;</p>
</div>
<p>No listings.</p>
</div>
<div class="category">
<div class="category-title">
<h2 id="repair-and-diy-2">repair and diy</h2>
<p>fixin&#39; stuff</p>
</div>
<p>No listings.</p>
</div>
<div class="category">
<div class="category-title">
<h2 id="technology-2">technology</h2>
<p>computer touchin&#39;</p>
</div>
<p>No listings.</p>
</div>
<div class="category">
<div class="category-title">
<h2 id="writing-editing-and-literature-2">writing editing and literature</h2>
<p>wordsmithin&#39;</p>
</div>
<p>No listings.</p>
</div>
</div>
</section>
2026-05-05 14:31:46 -07:00
</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>
2026-05-05 17:08:24 -07:00
<a href="https://heckin.technology/inherentlee/fedilearns" target="_blank">source code</a>
2026-05-05 14:31:46 -07:00
</li>
</ul>
</footer>
2026-05-06 09:02:12 -07:00
<!-- This page `/daily/2026-05-01/` was built on 2026-05-06T15:59:49.564Z -->
2026-05-05 14:31:46 -07:00
</body>
</html>