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>About the Classifieds | FediLearns</title>
|
|
|
|
|
<meta name="description" content="Learning together, by and for the fediverse">
|
|
|
|
|
|
|
|
|
|
<meta property="og:title" content="About the Classifieds | 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>: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";
|
|
|
|
|
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:08:24 -07:00
|
|
|
margin: 3rem auto 1rem;
|
2026-05-05 14:31:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 650px) {
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 2.4rem;
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h2 {
|
2026-05-05 17:08:24 -07:00
|
|
|
text-align: center;
|
|
|
|
|
margin-bottom: 4rem;
|
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 {
|
|
|
|
|
font-family: "Bebas Neue";
|
|
|
|
|
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/" aria-current="page">about this site</a></li>
|
|
|
|
|
<li><a href="/submit/">submit a listing</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</nav>
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<main id="main">
|
|
|
|
|
<h1 id="about-the-classifieds">About the Classifieds</h1>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
We all have something to share. So let's help others learn.
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
<a href="/submit/">Post a listing</a> for your skill and someone might reach
|
|
|
|
|
out for help! <a href="/">Read the listings</a> and see if there's things you
|
|
|
|
|
want to know.
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<h2 id="why-not-a-hashtag">Why not a hashtag?</h2>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
I... I love fedi, I really do, but we all know that federation has its flaws.
|
|
|
|
|
One such flaw is that discovery can be limited, and looking up a hashtag is
|
|
|
|
|
not really a guarantee that you'll see all the posts under that hashtag. While
|
|
|
|
|
I was looking at this concept, someone told me about the hashtag
|
|
|
|
|
<a href="https://flipping.rocks/tags/knowItTeachIt" target="_blank">#knowItTeachIt</a>
|
|
|
|
|
and of course, I promptly went to check it out. And saw a single post
|
|
|
|
|
from 2023. Apparently there's more in that tag, but my server doesn't
|
|
|
|
|
know that. So yeah. Maybe more than a hashtag, then.
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<h2 id="is-this-paid">Is this paid?</h2>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
Some listings may have a stated rate, whether that is monetary, skill swap, or free.
|
|
|
|
|
If there's no stated rate, free is assumed. Feel free to talk to the person/people
|
|
|
|
|
you reach out to about compensation!
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<h2 id="who-made-this">Who made this?</h2>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
Hi, I'm Lee! I like to make silly little websites. You can find all my contact
|
|
|
|
|
methods on the site linked to my name in the footer, or just
|
|
|
|
|
<a href="https://flipping.rocks/@inherentlee" target="_blank">send me a message
|
|
|
|
|
on fedi</a>.
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<h2 id="colophon">Colophon</h2>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
Built with <a href="https://11ty.dev" target="_blank">Eleventy v3.1.5</a>,
|
|
|
|
|
and <a href="https://declare-ai.org/1.0.0/none.html" target="_blank">without the
|
|
|
|
|
aid of generative AI</a>. Hosted by <a href="https://heckin.technology/" target="_blank">heckin.technology</a>.
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
</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-05 17:08:24 -07:00
|
|
|
<!-- This page `/about/` was built on 2026-05-06T00:08:12.196Z -->
|
2026-05-05 14:31:46 -07:00
|
|
|
</body>
|
|
|
|
|
</html>
|