2026-05-06 07:42:37 -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" >
2026-05-09 07:02:14 -07:00
< link rel = "alternate" type = "application/atom+xml" href = "/feed.xml" title = "FediLearns" >
2026-05-06 07:42:37 -07:00
< title > May 6th, 2026 | FediLearns</ title >
< meta name = "description" content = "Learning together, by and for the fediverse" >
< meta property = "og:title" content = "May 6th, 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 property = "og:image" content = "/favicon.ico" >
< meta property = "og:image:alt" content = "a newspaper icon with the fediverse logo, an interconnected rainbow pentagon, superimposed." >
< meta name = "generator" content = "Eleventy v3.1.5" >
2026-05-06 09:02:12 -07:00
< style >. listings {
2026-05-06 07:42:37 -07:00
columns : 3 ;
}
@ media ( max-width : 1200px ) {
2026-05-06 09:02:12 -07:00
. listings {
2026-05-06 07:42:37 -07:00
columns : 2 ;
}
}
@ media ( max-width : 650px ) {
2026-05-06 09:02:12 -07:00
. listings {
2026-05-06 07:42:37 -07:00
columns : 1 ;
}
}
/* jump links */
# jump-links {
padding-bottom : 1 rem ;
margin-bottom : 1 rem ;
border-bottom : solid var ( -- color - pink );
}
# jump-links h2 ,
# jump-links li {
font-family : "Bebas Neue" , sans-serif ;
font-size : 1.3 rem ;
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 : .25 rem ;
margin-bottom : .5 rem ;
}
/* 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.5 s ;
}
@ 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 : 4 rem ;
font-family : "Bebas Neue" ;
margin : 0 ;
}
. category-title p {
text-align : right ;
font-weight : bold ;
margin : 0 ;
}
/* individual listings */
2026-05-06 09:27:56 -07:00
. listing ,
. request {
2026-05-06 07:42:37 -07:00
margin-bottom : 1 rem ;
}
2026-05-06 09:27:56 -07:00
. listing strong ,
. request strong {
2026-05-06 07:42:37 -07:00
font-weight : bold ;
}
. blurb {
margin-bottom : .5 rem ;
}
. listed-on {
font-size : .85 rem ;
text-align : right ;
}
2026-05-06 09:27:56 -07:00
/* Requests page */
. title {
background-color : var ( -- color - gray );
padding : .25 rem ;
margin-bottom : .5 rem ;
display : flex ;
justify-content : space-between ;
flex-flow : row wrap ;
}
. title h2 {
text-transform : capitalize ;
margin : 0 ;
}
. title p {
font-family : "Bebas Neue" , sans-serif ;
font-size : 1.5 rem ;
margin : 0 ;
text-align : right ;
margin-left : auto ;
}
2026-05-06 09:02:12 -07:00
section > h2 {
background-color : var ( -- color - gray );
font-size : 2 rem ;
text-align : center ;
margin : 5 rem 0 1 rem ;
}
2026-05-06 07:42:37 -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 : 1400 px ;
margin : 0 auto ;
font-family : "Fraunces" , serif ;
font-weight : 300 ;
}
main {
padding-bottom : 2 rem ;
}
@ media ( max-width : 1050px ) {
body {
width : 85 %
}
}
@ media ( max-width : 650px ) {
body {
width : 92 % ;
}
}
2026-05-08 16:55:54 -07:00
p , h1 , h2 , h3 , h4 , h5 , h6 {
overflow-wrap : break-word ;
}
2026-05-06 07:42:37 -07:00
h1 , h2 , h3 {
font-weight : 400 ;
}
h1 {
text-align : center ;
font-size : 3 rem ;
margin : 3 rem auto ;
}
@ media ( max-width : 650px ) {
h1 {
font-size : 2.4 rem ;
margin-top : 1 rem ;
}
}
2026-05-06 08:28:25 -07:00
h2 {
margin-bottom : .5 rem ;
}
2026-05-06 07:42:37 -07:00
h3 {
text-transform : capitalize ;
margin-bottom : .5 rem ;
}
p {
margin-bottom : 1 rem ;
}
a {
color : var ( -- color - cyan );
text-decoration-thickness : .1 rem ;
transition : text - decoration-thickness .5 s ;
border-radius : .05 rem ;
}
a : visited {
color : var ( -- color - pink );
}
@ media ( any-hover : hover ) {
a : hover {
text-decoration-thickness : .2 rem ;
}
}
a : focus-visible {
outline : solid var ( -- color - pink );
}
a : visited : focus-visible {
outline-color : var ( -- color - cyan );
}
main ul {
margin-left : 1 rem ;
margin-bottom : 1 rem ;
}
main li {
margin-left : 1 rem ;
}
/* iframe is on submission page */
iframe {
margin : 2 rem 0 ;
}
2026-05-08 16:50:59 -07:00
. teal {
color : var ( -- color - cyan );
}
2026-05-06 07:42:37 -07:00
nav {
padding : .25 rem 0 1 rem ;
}
footer {
padding : 1 rem 0 ;
}
nav ul ,
footer ul {
list-style : none ;
display : flex ;
flex-flow : column ;
text-align : center ;
gap : .2 rem ;
}
header ,
nav li ,
footer li {
font-family : "Bebas Neue" , sans-serif ;
font-size : 1.3 rem ;
}
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 >
2026-05-06 09:27:56 -07:00
< li >< a href = "/requests/" > requests for help</ a ></ li >
2026-05-06 07:42:37 -07:00
</ ul >
</ nav >
</ header >
< main id = "main" >
< h1 id = "may-6th-2026" > May 6th, 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-06 07:42:37 -07:00
< div class = "category" >
< div class = "category-title" >
< h2 id = "animals-and-the-outdoors" > animals and the outdoors</ h2 >
< p > touchin' grass</ p >
</ div >
2026-05-06 08:28:25 -07:00
2026-05-06 07:42:37 -07:00
< p > No listings.</ p >
</ div >
< div class = "category" >
< div class = "category-title" >
< h2 id = "art-and-crafts" > art and crafts</ h2 >
< p > makin' stuff</ p >
</ div >
2026-05-06 08:28:25 -07:00
2026-05-06 07:42:37 -07:00
< div class = "listing" >
< h3 id = "data-visualization-advice" > Data visualization advice</ h3 >
< p class = "blurb" >
< strong >
2026-05-08 16:50:59 -07:00
2026-05-06 07:42:37 -07:00
< a href = "https://datavis.social/@janeadams" target = "_blank" > @janeadams@datavis.social</ a >
2026-05-08 16:50:59 -07:00
2026-05-06 07:42:37 -07:00
offers:</ strong > Not sure how to answer a question with a chart? Confused about when to use a box plot versus a bar chart? Don’ t get why everyone hates pie charts so much? Need advice on choosing an interactive visualization code library? Want some compelling graphs for your zine? I can offer sync video calls (evenings ET) or async feedback and advice for any not-for-profit visual encoding tasks!
</ p >
< p class = "listed-on" >
listed on < time datetime = "2026-05-06" > May 6, 2026</ time >
</ p >
</ div >
< div class = "listing" >
< h3 id = "digital-illustration" > Digital Illustration</ h3 >
< p class = "blurb" >
< strong >
2026-05-08 16:50:59 -07:00
2026-05-06 07:42:37 -07:00
< a href = "https://mastodon.art/@madgeface" target = "_blank" > @madgeface@mastodon.art</ a >
2026-05-08 16:50:59 -07:00
2026-05-06 07:42:37 -07:00
offers:</ strong > Do you need a diagram to illustrate a concept? I can help make something from scratch or improve your diagram. Currently working in Affinity but I also know Adobe Creative Suite and am willing to learn other open-source software.
</ p >
< p >< strong > Suggested rate:</ strong > negotiable and open to trade</ p >
< p class = "listed-on" >
listed on < time datetime = "2026-05-06" > May 6, 2026</ time >
</ p >
</ div >
2026-05-06 14:44:00 -07:00
< div class = "listing" >
< h3 id = "learning-to-produce-music" > Learning To Produce Music</ h3 >
< p class = "blurb" >
< strong >
2026-05-08 16:50:59 -07:00
2026-05-06 14:44:00 -07:00
< a href = "https://dragonscave.space/@ZBennoui" target = "_blank" > @ZBennoui@dragonscave.space</ a >
2026-05-08 16:50:59 -07:00
2026-05-06 14:44:00 -07:00
offers:</ strong > I' ve been producing music for about 15 years now and would love to help anyone I can. I' ve primarily taught fellow blind / low vision people, but open to working with anyone really. I use Ableton Live, Reaper, Logic, and have worked with ProTools in the past.
</ p >
< p >< strong > Suggested rate:</ strong > If the person I' m helping is in a position to pay, I think 50 USD an hour is a pretty good baseline rate, but I' m happy to help out anybody for free, especially if we' re not going too in depth. It all depends</ p >
< p class = "listed-on" >
listed on < time datetime = "2026-05-06" > May 6, 2026</ time >
</ p >
</ div >
2026-05-06 07:42:37 -07:00
</ div >
< div class = "category" >
< div class = "category-title" >
< h2 id = "beauty-and-health" > beauty and health</ h2 >
< p > feelin' good</ p >
</ div >
2026-05-06 08:28:25 -07:00
2026-05-06 07:42:37 -07:00
< p > No listings.</ p >
</ div >
< div class = "category" >
< div class = "category-title" >
< h2 id = "business" > business</ h2 >
< p > makin' money</ p >
</ div >
2026-05-06 08:28:25 -07:00
2026-05-06 07:42:37 -07:00
< 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 >
2026-05-06 08:28:25 -07:00
2026-05-06 07:42:37 -07:00
< p > No listings.</ p >
</ div >
< div class = "category" >
< div class = "category-title" >
< h2 id = "history-science-and-languages" > history science and languages</ h2 >
< p > book learnin' </ p >
</ div >
2026-05-06 08:28:25 -07:00
2026-05-06 07:42:37 -07:00
2026-05-06 10:51:42 -07:00
< div class = "listing" >
< h3 id = "academic-philosophy-of-science-and-mathematics" > Academic Philosophy of Science and Mathematics</ h3 >
< p class = "blurb" >
< strong >
2026-05-08 16:50:59 -07:00
2026-05-06 10:51:42 -07:00
< a href = "https://freeradical.zone/@zillion" target = "_blank" > @zillion@freeradical.zone</ a >
2026-05-08 16:50:59 -07:00
2026-05-06 10:51:42 -07:00
offers:</ strong > Philosophy of Science and Mathematics. Philosophical logic. Discussion, suggested reading, commenting on papers
</ p >
< p class = "listed-on" >
listed on < time datetime = "2026-05-06" > May 6, 2026</ time >
</ p >
</ div >
2026-05-06 07:42:37 -07:00
</ div >
< div class = "category" >
< div class = "category-title" >
< h2 id = "interpersonal-and-life" > interpersonal and life</ h2 >
< p > better livin' </ p >
</ div >
2026-05-06 08:28:25 -07:00
2026-05-06 07:42:37 -07:00
< div class = "listing" >
< h3 id = "reading-tarot-for-personal-introspection" > Reading Tarot for Personal Introspection</ h3 >
< p class = "blurb" >
< strong >
2026-05-08 16:50:59 -07:00
2026-05-06 07:42:37 -07:00
< a href = "https://pagan.plus/@syd" target = "_blank" > @syd@pagan.plus</ a >
2026-05-08 16:50:59 -07:00
2026-05-06 07:42:37 -07:00
offers:</ strong > Interested in tarot? Have a deck you don' t know what to do with? I can talk you through the basics of reading tarot for personal insight, including the tarot journaling practice I used to learn the card meanings and a simple three card spread for routine readings.
</ p >
< p class = "listed-on" >
listed on < time datetime = "2026-05-06" > May 6, 2026</ time >
</ p >
</ div >
</ div >
< div class = "category" >
< div class = "category-title" >
< h2 id = "miscellany-and-more" > miscellany and more</ h2 >
< p > leaves me guessin' </ p >
</ div >
2026-05-06 08:28:25 -07:00
2026-05-06 07:42:37 -07:00
< 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 >
2026-05-06 08:28:25 -07:00
2026-05-06 07:42:37 -07:00
< p > No listings.</ p >
</ div >
< div class = "category" >
< div class = "category-title" >
< h2 id = "technology" > technology</ h2 >
< p > computer touchin' </ p >
</ div >
2026-05-06 08:28:25 -07:00
2026-05-06 07:42:37 -07:00
< p > No listings.</ p >
</ div >
< div class = "category" >
< div class = "category-title" >
< h2 id = "writing-editing-and-literature" > writing editing and literature</ h2 >
< p > wordsmithin' </ p >
</ div >
2026-05-06 08:28:25 -07:00
2026-05-06 10:45:33 -07:00
< div class = "listing" >
2026-05-06 11:08:22 -07:00
< h3 id = "technical-editing" > Technical editing</ h3 >
2026-05-06 10:45:33 -07:00
< p class = "blurb" >
< strong >
2026-05-08 16:50:59 -07:00
2026-05-06 10:45:33 -07:00
< a href = "https://freeradical.zone/@zillion" target = "_blank" > @zillion@freeradical.zone</ a >
2026-05-08 16:50:59 -07:00
2026-05-06 11:08:22 -07:00
offers:</ strong > Physics, mathematics, logic, popularizing science. Help with formatting mathematics in HTML, MathJax, AMS-LaTeX. I can also copy edit your short story or novel to enforce formal spelling and punctuation—I don' t care if you don' t, but, if you do, lmk
2026-05-06 10:45:33 -07:00
</ p >
< p >< strong > Suggested rate:</ strong > I might want to charge a token amount if the project is long or complicated.</ p >
< p class = "listed-on" >
listed on < time datetime = "2026-05-06" > May 6, 2026</ time >
</ p >
</ div >
2026-05-06 07:42:37 -07:00
< div class = "listing" >
< h3 id = "writer-available-for-coaching-and-advising" > writer available for coaching and advising</ h3 >
< p class = "blurb" >
< strong >
2026-05-08 16:50:59 -07:00
2026-05-06 07:42:37 -07:00
< a href = "https://mastodon.art/@madgeface" target = "_blank" > @madgeface@mastodon.art</ a >
2026-05-08 16:50:59 -07:00
2026-05-06 07:42:37 -07:00
offers:</ strong > I' m a technical writer, writing coach, and editor who is happy to help if you' re stuck with writing something (from fiction to biz comms to books). Don' t turn to AI - turn to me.
</ p >
< p >< strong > Suggested rate:</ strong > Sliding scale/rates/trade negotiable depending on what the ask is</ p >
< p class = "listed-on" >
listed on < time datetime = "2026-05-06" > May 6, 2026</ time >
</ p >
</ div >
</ 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' 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' 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' good</ p >
</ div >
< p > No listings.</ p >
</ div >
< div class = "category" >
< div class = "category-title" >
< h2 id = "business-2" > business</ h2 >
< p > makin' 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' </ 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' </ 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' </ 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' </ 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' stuff</ p >
</ div >
< p > No listings.</ p >
</ div >
< div class = "category" >
< div class = "category-title" >
< h2 id = "technology-2" > technology</ h2 >
< p > computer touchin' </ 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' </ p >
</ div >
< p > No listings.</ p >
</ div >
</ div >
</ section >
2026-05-06 07:42:37 -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 >
2026-05-06 09:27:56 -07:00
< a href = "https://heckin.technology/inherentlee/fedilearns" target = "_blank" > source code</ a >
2026-05-06 07:42:37 -07:00
</ li >
< li >
2026-05-06 09:27:56 -07:00
< a href = "/feed.xml" > RSS</ a >
2026-05-06 07:42:37 -07:00
</ li >
</ ul >
</ footer >
2026-05-09 07:10:35 -07:00
<!-- This page `/daily/2026-05-06/` was built on 2026-05-09T14:09:34.770Z -->
2026-05-06 07:42:37 -07:00
</ body >
</ html >