Add initial snapshot of https://2025.fossy.us/
This commit is contained in:
commit
ab088ad878
175 changed files with 59301 additions and 0 deletions
53
README.md
Normal file
53
README.md
Normal file
|
|
@ -0,0 +1,53 @@
|
||||||
|
# Mirror of https://2025.fossy.us
|
||||||
|
|
||||||
|
Generated with:
|
||||||
|
|
||||||
|
```
|
||||||
|
cd ..
|
||||||
|
wget --mirror --convert-links --adjust-extension --page-requisites --no-parent https://2025.fossy.us/
|
||||||
|
cd 2025.fossy.us
|
||||||
|
```
|
||||||
|
|
||||||
|
Note that the schedule page will need manual updates to allow visitors to switch between days.
|
||||||
|
|
||||||
|
You may then want to remove the dashboard links, since the login won't work, as well as the link to buy tickets.
|
||||||
|
|
||||||
|
```
|
||||||
|
find -name '*.html' -print0 | xargs -0 sed -i 's|.*Dashboard</a>||g'
|
||||||
|
find -name '*.html' -print0 | xargs -0 sed -i 's|.*Get your ticket!.*||' attend/tickets/index.html
|
||||||
|
rm dashboard.html
|
||||||
|
rm -rf tickets/
|
||||||
|
rm -rf account/
|
||||||
|
```
|
||||||
|
|
||||||
|
Add the "archived" banner:
|
||||||
|
|
||||||
|
```
|
||||||
|
find -name '*.html' -print0 | xargs -0 sed -i 's|<header class="clearfix d-print-none">|<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">|'
|
||||||
|
```
|
||||||
|
|
||||||
|
You'll also need to make some tweaks to the schedule index page to ensure the tabs work. See this [commit](https://f.sfconservancy.org/Conservancy/2024.fossy.us/commit/cc39ae64532b0c07116045ada85495f0d71e1423).
|
||||||
|
|
||||||
|
On the web server:
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone https://f.sfconservancy.org/Conservancy/2025.fossy.us.git
|
||||||
|
sudo mv 2025.fossy.us/ /var/www/
|
||||||
|
sudo chown -R www-data:www-data /var/www/2025.fossy.us/
|
||||||
|
sudo cp /etc/apache2/sites-available/420-2024.fossy.us.conf /etc/apache2/sites-available/420-2025.fossy.us.conf
|
||||||
|
sudo sed -i 's/2024/2025/g' /etc/apache2/sites-available/420-2025.fossy.us.conf
|
||||||
|
sudo a2ensite 420-2025.fossy.us
|
||||||
|
```
|
||||||
|
|
||||||
|
After setting up the 2025 DNS and pointing the 2025 to the archive server, create an HTTPS certificate. You may need to comment out the certificate configuration temporarily:
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo certbot certonly --verbose --domains 2025.fossy.us --agree-tos --email=sysadmin@sfconservancy.org
|
||||||
|
```
|
||||||
|
|
||||||
|
If you need to update the web server with changes from the repository:
|
||||||
|
|
||||||
|
```
|
||||||
|
cd /var/www/2025.fossy.us
|
||||||
|
sudo -u www-data git pull
|
||||||
|
```
|
||||||
275
about/index.html
Normal file
275
about/index.html
Normal file
|
|
@ -0,0 +1,275 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | About FOSSY</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | About FOSSY">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/about/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | About FOSSY" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item active dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About <span class="sr-only">(current)</span>
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item active" href="index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title"></h1>
|
||||||
|
<p class="lead"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 content text-page" style="max-width: 45rem">
|
||||||
|
<h1 class="page-title">About FOSSY</h1>
|
||||||
|
|
||||||
|
<h3>FOSS is back in Portland, OR - July 31 - August 3rd at Portland State University!</h3>
|
||||||
|
<figure class="tc">
|
||||||
|
<img src="https://sfconservancy.org/img/psu-smsu.jpg" alt="Exterior photograph of PSU SMSU" >
|
||||||
|
<figcaption class="tc mt2">Portland State Memorial Union (CC-BY 2.0)</figcaption>
|
||||||
|
</figure>
|
||||||
|
|
||||||
|
<p>Software Freedom Conservancy is so proud to announce that we are hosting our third
|
||||||
|
community oriented conference this summer. FOSSY (Free and Open Source
|
||||||
|
Yearly) is focused on the creation and impact of free and open source software,
|
||||||
|
uplifting contributors of all experience. We are also mindful of having a safe
|
||||||
|
environment for all. In this new time of conferences, we will be focused on
|
||||||
|
potentially contagious disease safety and making sure all attendees feel safe participating as much as
|
||||||
|
they feel comfortable.</p>
|
||||||
|
|
||||||
|
<p>Taking place in Portland, OR, FOSSY is a community focused
|
||||||
|
event that invites local community, as well as the wider internet and global
|
||||||
|
communities we have formed over the years. Whether you are a long time
|
||||||
|
contributing member of a free software project, a recent graduate of a
|
||||||
|
coding bootcamp or university, or just have an interest in the possibilities
|
||||||
|
that free and open source software bring, FOSSY will have something for
|
||||||
|
you.</p>
|
||||||
|
|
||||||
|
<p>For this third year we are running a conference of this scale, we are having
|
||||||
|
several tracks with talks over four days. With tracks for community building,
|
||||||
|
development and legal and licensing issues, our conference will provide ample
|
||||||
|
learning and networking opportunities for contributors of all levels of
|
||||||
|
experience. There will be hands-on workshops, lightning talks and
|
||||||
|
traditional 40 minute talks.</p>
|
||||||
|
|
||||||
|
<p>As we look to the future of conferences, we are excited to focus on using
|
||||||
|
free software to run a conference and will seek to help reduce the amount of
|
||||||
|
proprietary software that is treated as default.</p>
|
||||||
|
|
||||||
|
<p>If you are interested in sponsoring our conference, please see our <a href="https://sfconservancy.org/docs/2025-prospectus.pdf">Sponsorship Prospectus</a> or contact us at <a href="mailto:conference@sfconservancy.org">conference@sfconservancy.org</a>.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
282
attend/code-of-conduct.html
Normal file
282
attend/code-of-conduct.html
Normal file
|
|
@ -0,0 +1,282 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Code of Conduct</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Code of Conduct">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/attend/code-of-conduct/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Code of Conduct" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="code-of-conduct.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item active dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="code-of-conduct.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend <span class="sr-only">(current)</span>
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item active" href="code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="code-of-conduct.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title"></h1>
|
||||||
|
<p class="lead"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 content text-page" style="max-width: 45rem">
|
||||||
|
<h1 class="page-title">Code of Conduct</h1>
|
||||||
|
|
||||||
|
<h2>tl;dr</h2>
|
||||||
|
|
||||||
|
<p>FOSSY is dedicated to providing a harassment-free conference experience for everyone; regardless of
|
||||||
|
gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, national
|
||||||
|
origin, race, or religion or lack thereof. This code applies to everyone -- including attendees, speakers,
|
||||||
|
volunteers and staff. We do not tolerate harassment of conference participants in any form.</p>
|
||||||
|
|
||||||
|
<p>You can find our Code of Conduct team wearing <b>blue hats</b>, or you can disclose any concerns by email to conference@sfconservancy.org</p>
|
||||||
|
|
||||||
|
<h2>Details</h2>
|
||||||
|
|
||||||
|
<p>Please do not include sexualized imagery, off-color jokes or other materials that attendees may deem offensive
|
||||||
|
in your slides or spoken remarks. If you aren’t sure if something you intend to show or state is potentially offensive,
|
||||||
|
please contact us for help in reviewing your presentation materials.</p>
|
||||||
|
|
||||||
|
<p>Be kind to others. Do not insult or put down other participants. Behave professionally. Remember that sexist,
|
||||||
|
racist, or exclusionary jokes are not appropriate for FOSSY.</p>
|
||||||
|
|
||||||
|
<p>Harassment will not be tolerated at FOSSY. Harassment includes offensive verbal comments related to
|
||||||
|
gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, national
|
||||||
|
origin, race, religion or lack thereof, sexual images in public spaces, deliberate intimidation, stalking, following, harassing
|
||||||
|
photography or recording without permission, sustained disruption of talks or other parts of the event, inappropriate
|
||||||
|
physical contact, and unwelcome sexual attention.</p>
|
||||||
|
|
||||||
|
<p>Just as we will ask any audience member to cease their behavior and to leave if they are not respectful of you,
|
||||||
|
we will also ask that you stop presenting should there be offensive or inappropriate material in your slides or
|
||||||
|
presentation. This code applies to everyone -- including attendees, speakers, volunteers and staff.</p>
|
||||||
|
|
||||||
|
<p>Participants asked to stop any harassing behavior are expected to comply immediately. If they do not stop
|
||||||
|
immediately or their behavior constitutes a potential physical danger to other participants, they may be ejected
|
||||||
|
from the event without a refund. This will be at the discretion of FOSSY's response team.</p>
|
||||||
|
|
||||||
|
<p>If you believe that someone is violating the code of conduct during FOSSY, or have any other concerns,
|
||||||
|
please contact our response team immediately by emailing <a href="mailto:conference@sfconservancy.org">conference@sfconservancy.org</a>.</p>
|
||||||
|
|
||||||
|
<p>Conference staff can help you contact emergency services, local police and/or provide an escort to your hotel.</p>
|
||||||
|
|
||||||
|
<h2>Credits</h2>
|
||||||
|
|
||||||
|
<p>We borrowed heavily from the <a href="http://seagl.org/code_of_conduct.html">SeaGL</a> and <a href="https://2018.northbaypython.org/code-of-conduct">North Bay Python</a> Codes of Conduct which are based on <a href="http://geekfeminism.wikia.com/wiki/Conference_anti-harassment/Policy">this template</a> and include many of the <a href="https://us.pycon.org/2018/about/code-of-conduct/">variations used by PyCon</a>, all of which are available under the Creative Commons
|
||||||
|
Zero License. Please feel free to use any of this language for your own Code of Conduct.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="code-of-conduct.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
282
attend/code-of-conduct/index.html
Normal file
282
attend/code-of-conduct/index.html
Normal file
|
|
@ -0,0 +1,282 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Code of Conduct</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Code of Conduct">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/attend/code-of-conduct/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Code of Conduct" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="../code-of-conduct.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item active dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="../code-of-conduct.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend <span class="sr-only">(current)</span>
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item active" href="../code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="../code-of-conduct.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title"></h1>
|
||||||
|
<p class="lead"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 content text-page" style="max-width: 45rem">
|
||||||
|
<h1 class="page-title">Code of Conduct</h1>
|
||||||
|
|
||||||
|
<h2>tl;dr</h2>
|
||||||
|
|
||||||
|
<p>FOSSY is dedicated to providing a harassment-free conference experience for everyone; regardless of
|
||||||
|
gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, national
|
||||||
|
origin, race, or religion or lack thereof. This code applies to everyone -- including attendees, speakers,
|
||||||
|
volunteers and staff. We do not tolerate harassment of conference participants in any form.</p>
|
||||||
|
|
||||||
|
<p>You can find our Code of Conduct team wearing <b>blue hats</b>, or you can disclose any concerns by email to conference@sfconservancy.org</p>
|
||||||
|
|
||||||
|
<h2>Details</h2>
|
||||||
|
|
||||||
|
<p>Please do not include sexualized imagery, off-color jokes or other materials that attendees may deem offensive
|
||||||
|
in your slides or spoken remarks. If you aren’t sure if something you intend to show or state is potentially offensive,
|
||||||
|
please contact us for help in reviewing your presentation materials.</p>
|
||||||
|
|
||||||
|
<p>Be kind to others. Do not insult or put down other participants. Behave professionally. Remember that sexist,
|
||||||
|
racist, or exclusionary jokes are not appropriate for FOSSY.</p>
|
||||||
|
|
||||||
|
<p>Harassment will not be tolerated at FOSSY. Harassment includes offensive verbal comments related to
|
||||||
|
gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, national
|
||||||
|
origin, race, religion or lack thereof, sexual images in public spaces, deliberate intimidation, stalking, following, harassing
|
||||||
|
photography or recording without permission, sustained disruption of talks or other parts of the event, inappropriate
|
||||||
|
physical contact, and unwelcome sexual attention.</p>
|
||||||
|
|
||||||
|
<p>Just as we will ask any audience member to cease their behavior and to leave if they are not respectful of you,
|
||||||
|
we will also ask that you stop presenting should there be offensive or inappropriate material in your slides or
|
||||||
|
presentation. This code applies to everyone -- including attendees, speakers, volunteers and staff.</p>
|
||||||
|
|
||||||
|
<p>Participants asked to stop any harassing behavior are expected to comply immediately. If they do not stop
|
||||||
|
immediately or their behavior constitutes a potential physical danger to other participants, they may be ejected
|
||||||
|
from the event without a refund. This will be at the discretion of FOSSY's response team.</p>
|
||||||
|
|
||||||
|
<p>If you believe that someone is violating the code of conduct during FOSSY, or have any other concerns,
|
||||||
|
please contact our response team immediately by emailing <a href="mailto:conference@sfconservancy.org">conference@sfconservancy.org</a>.</p>
|
||||||
|
|
||||||
|
<p>Conference staff can help you contact emergency services, local police and/or provide an escort to your hotel.</p>
|
||||||
|
|
||||||
|
<h2>Credits</h2>
|
||||||
|
|
||||||
|
<p>We borrowed heavily from the <a href="http://seagl.org/code_of_conduct.html">SeaGL</a> and <a href="https://2018.northbaypython.org/code-of-conduct">North Bay Python</a> Codes of Conduct which are based on <a href="http://geekfeminism.wikia.com/wiki/Conference_anti-harassment/Policy">this template</a> and include many of the <a href="https://us.pycon.org/2018/about/code-of-conduct/">variations used by PyCon</a>, all of which are available under the Creative Commons
|
||||||
|
Zero License. Please feel free to use any of this language for your own Code of Conduct.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="../code-of-conduct.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
260
attend/health-and-safety/index.html
Normal file
260
attend/health-and-safety/index.html
Normal file
|
|
@ -0,0 +1,260 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Health and Safety Guidelines</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Health and Safety Guidelines">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/attend/health-and-safety/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Health and Safety Guidelines" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item active dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend <span class="sr-only">(current)</span>
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item active" href="index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title"></h1>
|
||||||
|
<p class="lead"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 content text-page" style="max-width: 45rem">
|
||||||
|
<h1 class="page-title">FOSSY 2025 Health and Safety Guidelines</h1>
|
||||||
|
|
||||||
|
<p>Our attendees' health and safety have been a top priority for us. Our goal with this policy is to balance our limited resources as a small non-profit while being mindful of our attendees and their families. We are aiming to provide a welcoming and safer environment for people who are immunocompromised, disabled, elderly, have support needs, or are caregivers for children, and those of us who share households with or caretake for people in those groups.</p>
|
||||||
|
<p>There are two outdoor gathering locations and air filtration units within each of the track talk rooms. Hand sanitizer will be available for all attendees.</p>
|
||||||
|
<p>We value all of our attendees and want everyone to feel welcome to participate in any way they can. In turn, we ask that you, as attendees, respect your fellow attendees and do what you can to create an environment that is safe and welcoming to all.</p>
|
||||||
|
|
||||||
|
<h3>Masks</h3>
|
||||||
|
<p>Face coverings will be strongly encouraged but not required at FOSSY this year.
|
||||||
|
However, the Software Freedom Conservancy staff and any person working at the Registration desk or participating in the Code of Conduct committee will be wearing masks (Exceptions will be given when staff members are presenting).</p>
|
||||||
|
|
||||||
|
<p>We will be distributing masks so long as our supplies last, but attendees should plan to provide their own masks should we run out.</p>
|
||||||
|
|
||||||
|
<h3>Rapid Testing</h3>
|
||||||
|
|
||||||
|
<p>We highly encourage attendees to do a rapid test before traveling and each day of the event. Unfortunately providing free, rapid onsite testing for all attendees is not feasible, but if purchasing your own tests is a financial hardship, please contact us and we will help you acquire some.</p>
|
||||||
|
|
||||||
|
<h3>Attendance</h3>
|
||||||
|
|
||||||
|
<p>Individuals should not attend the event if they are COVID-positive, are exhibiting symptoms of a potentially contagious disease (as defined by the CDC), or have been exposed, within 7 days prior to the event, to someone who was COVID-positive or showed symptoms of a potentially contagious disease.</p>
|
||||||
|
<p>If you are feeling sick or exhibiting symptoms of a potentially contagious disease or test positive for COVID-19, prior to the start of the conference, or on any day of the conference, please contact us at conference@sfconservancy.org, and we will issue you a refund. Please also let us know if you need help figuring out any logistics should you be sick.</p>
|
||||||
|
<p>These guidelines may change based on health and safety recommendations at the time of the event. We are committing, however, to only make changes in the direction of greater safety.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
315
attend/terms-and-conditions/index.html
Normal file
315
attend/terms-and-conditions/index.html
Normal file
|
|
@ -0,0 +1,315 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Terms and Conditions</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Terms and Conditions">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/attend/terms-and-conditions/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Terms and Conditions" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item active dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend <span class="sr-only">(current)</span>
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item active" href="index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title"></h1>
|
||||||
|
<p class="lead"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 content text-page" style="max-width: 45rem">
|
||||||
|
<h1 class="page-title">Terms and Conditions</h1>
|
||||||
|
<p><em>This document was forked from the <a href="https://github.com/northbaypython/website/blob/master/pinaxcon/templates/static_pages/terms_and_conditions.md">North Bay Python Terms and Conditions</a>.</em></p>
|
||||||
|
|
||||||
|
<p>These Terms and Conditions apply to all attendees who have registered for FOSSY 2025.</p>
|
||||||
|
|
||||||
|
<h2>Registration</h2>
|
||||||
|
|
||||||
|
<p>Registering for the event does not guarantee your ticket until it has been paid for in full. To secure your ticket, pay the registration invoice as soon as possible.</p>
|
||||||
|
|
||||||
|
<h2>Cancellation Policy</h2>
|
||||||
|
|
||||||
|
<p><strong>Cancellations made prior to July 21st, 2025</strong>: Incur a cancellation fee of 50% of the ticket cost, which will be deducted from any registration fee paid. The balance will be refunded.</p>
|
||||||
|
|
||||||
|
<p><strong>Cancellations made after July 22nd, 2025</strong>: No refund.</p>
|
||||||
|
|
||||||
|
<h2>Substitutions</h2>
|
||||||
|
|
||||||
|
<p>You may substitute another person, however you must contact us with this person's details.</p>
|
||||||
|
|
||||||
|
<h2>Privacy Notice</h2>
|
||||||
|
|
||||||
|
<p>In the course of registering for the event and related events, personal information will be collected about attendees such as their name, contact details, etc. This information is required to facilitate registration to the event, for catering requirements, and for organizers or their agents to contact particular attendees as and when required in respect of the event. Attendees who do not disclose this personal information will be unable to complete registration at the event and will therefore not be able to attend.</p>
|
||||||
|
|
||||||
|
<p>Personal information will only be disclosed to Software Freedom Conservancy and Government agencies where organizers believe disclosure is appropriate for legal compliance and law enforcement; to facilitate court proceedings; to enforce our terms and conditions; or to protect the rights, property, or safety of the event, our attendees, or others. Software Freedom Conservancy will not sell your personal information to third parties and will not use your personal information to send promotional material from any of our affiliated partners and/or sponsors.</p>
|
||||||
|
|
||||||
|
<p>From time to time event organizers update their information and website practices. Please regularly review this page for the most recent information about the event privacy practices.</p>
|
||||||
|
|
||||||
|
<p>All personal information will be kept private and used only for event registration purposes, statistics for future events, and convenience for future event registration.</p>
|
||||||
|
|
||||||
|
<h2>Discrimination and Anti-Social Behavior</h2>
|
||||||
|
|
||||||
|
<p>FOSSY is proud to support people from all walks of life, especially underrepresented groups like women and people of color, and will not tolerate in any fashion any intimidation, harassment, and/or any abusive, discriminatory or derogatory behavior by any attendees of the event and/or related events.</p>
|
||||||
|
|
||||||
|
<p>Examples of these behaviors and measures the event organizers may take are set out in the <a href="../code-of-conduct.html">Code of Conduct</a>. By registering for and attending FOSSY, you agree to this Code of Conduct.</p>
|
||||||
|
|
||||||
|
<h2>Talk Recordings</h2>
|
||||||
|
|
||||||
|
<p>Event organizers may provide recordings of talks (audio and/or video) given at the event. This service is provided on a best-effort basis only. Any recordings will be released as and when they are ready, which may be some time after the conclusion of the event, and the recordings may be of varying quality.</p>
|
||||||
|
|
||||||
|
<h2>Photography and Audio Video Recording</h2>
|
||||||
|
|
||||||
|
<p>This applies to all attendees of FOSSY and related events, including staff who are designated as official photographers and audio and video recorders.</p>
|
||||||
|
|
||||||
|
<p>Do not photograph, video or audio record anyone without their express permission.</p>
|
||||||
|
|
||||||
|
<p>Attendees will have a way to visibly signal their preference for photography at the conference. You agree to consider and act according to these preferences:</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>Opt-in: Photography always okay</li>
|
||||||
|
<li>Permission required: Ask before photographing</li>
|
||||||
|
<li>Opt-out: Photographs are never okay, don't ask</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>Attendees who are not visibly signaling their preference should be asked for permission before photographing. There is no prior opt-in for audio or video recordings. You must always ask before recording.</p>
|
||||||
|
|
||||||
|
<p>The event may have one or more staff taking photographs and/or audio or video recordings during the event. These staff will respect attendees' preferences regarding photography and recordings.</p>
|
||||||
|
|
||||||
|
<p>The only exception is for recordings of talks given at the event where attendees who ask questions of the presenter may be included in the talk recording.</p>
|
||||||
|
|
||||||
|
<p>If Software Freedom Conservancy chooses to publish photographs and recordings taken by event staff, we will publish them under a Creative Commons license. Conservancy further reserves the right to use those photographs and recordings in promotional materials to promote its activities and/or the use of free and open source software.</p>
|
||||||
|
|
||||||
|
<p>If there is a violation of this policy, event organizers will request that the photograph be removed from any sites where it was posted and deleted from the devices. In the event that this request is ignored or further violations occur, the participants violating this policy may be sanctioned or expelled from the conference without a refund or banned from future Conservancy events.</p>
|
||||||
|
|
||||||
|
<h2>Media</h2>
|
||||||
|
|
||||||
|
<p>There are a limited number of Media Passes available to media personnel. Media Passes are free of charge, and entitle media personnel to attend the event with all the entitlements of a Discount registration. Please note, due to the limited numbers of Media Passes available, all Media Passes will need to be approved by the event organizers.</p>
|
||||||
|
|
||||||
|
<p>Any media attending the event are required to identify themselves as "media" to attendees prior to speaking on the record with any attendees of the event. It is the responsibility of the media to introduce themselves to the persons they wish to interview and to arrange any interviews with those persons. The event organizers will not make introductions or arrange interviews on behalf of media.</p>
|
||||||
|
|
||||||
|
<h2>Smoke-free</h2>
|
||||||
|
|
||||||
|
<p>All event venues including the social event venues are smoke-free. If attendees wish to smoke during the event and/or related events, they must do so in signed areas. Please consider others and refrain from smoking directly outside the venues' entrances.</p>
|
||||||
|
|
||||||
|
<h2>Health and Safety</h2>
|
||||||
|
|
||||||
|
<p>Presenters are responsible for ensuring that sessions they lead meet local health and safety requirements.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
272
attend/tickets/index.html
Normal file
272
attend/tickets/index.html
Normal file
|
|
@ -0,0 +1,272 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Tickets</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Tickets">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/attend/tickets/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Tickets" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item active dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend <span class="sr-only">(current)</span>
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item active" href="index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title"></h1>
|
||||||
|
<p class="lead"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 content text-page" style="max-width: 45rem">
|
||||||
|
<h1 class="page-title">Tickets</h1>
|
||||||
|
|
||||||
|
<p>Tickets to FOSSY are tiered to be inclusive for all folks.
|
||||||
|
Registration includes:
|
||||||
|
<ul>
|
||||||
|
<li>All of the talks and workshops</li>
|
||||||
|
<li>Light breakfast Friday - Sunday</li>
|
||||||
|
<li>Refreshments every afternoon</li>
|
||||||
|
<li>A social event and light dinner Thursday evening to network with speakers and other attendees!</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
<p>We are also looking for volunteers to help with registration, set up and take-down, and many other opportunities if you'd like to donate your time instead of money to attend our conference.
|
||||||
|
Volunteers will receive a code for free conference registration. Please see our <a href="../volunteer.html">Volunteer page</a> for more information</p>
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Community Member</h3>
|
||||||
|
<p><strong>$300</strong> - For all community members</p>
|
||||||
|
|
||||||
|
<h3>Professional</h3>
|
||||||
|
<p><strong>$600</strong> - Your professional status will be indicated with a special lanyard or
|
||||||
|
other badge indicator</p>
|
||||||
|
|
||||||
|
<h3>Ultra Professional</h3>
|
||||||
|
<p><strong>$1000</strong> - comes with high-five from conference staff! Thanks for your generosity!</p>
|
||||||
|
|
||||||
|
<h3>Student or Reduced fare</h3>
|
||||||
|
<p><strong>$35</strong> - for students or anyone else for whom money is tight, this price is full attendance</p>
|
||||||
|
|
||||||
|
<p>If you have any financial hardship from this ticket price, please reach out to
|
||||||
|
us at <a href="mailto:conference@sfconservancy.org">conference@sfconservancy.org</a>. Please reach out, even if you are not sure if your situation qualifies as we'd like to help as many people as possible.</p>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
254
attend/volunteer.html
Normal file
254
attend/volunteer.html
Normal file
|
|
@ -0,0 +1,254 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Volunteering</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Volunteering">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/attend/volunteer/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Volunteering" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="volunteer.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item active dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="volunteer.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend <span class="sr-only">(current)</span>
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item active" href="volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="volunteer.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title"></h1>
|
||||||
|
<p class="lead"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 content text-page" style="max-width: 45rem">
|
||||||
|
<p>Running FOSSY will take a lot of help from people like you! Volunteers receive free admission for all 4 days of the conference. Volunteers at the registration table will be required to wear masks according to our Health and Safety policy</p>
|
||||||
|
|
||||||
|
<p>Here are some areas we need volunteers:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Set up</li>
|
||||||
|
<li>Take down and Cleanup</li>
|
||||||
|
<li>Room host (assisting speakers in setup, etc)</li>
|
||||||
|
<li>Registration/welcome table</li>
|
||||||
|
<li>Photographer (please give level of experience)</li>
|
||||||
|
<li>Code of Conduct Team (training required)</li>
|
||||||
|
<li>Team Leader (run a group of above mentioned volunteers - please list any experience with this)</li>
|
||||||
|
<li>Any other ideas you might have or want to do!</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>Please fill out the form <a href="https://nextcloud.sfconservancy.org/apps/forms/s/sBbLeC34gNiDBZCENTokXXL2">here</a> and we'll email you to let you know where you're assigned.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="volunteer.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
254
attend/volunteer/index.html
Normal file
254
attend/volunteer/index.html
Normal file
|
|
@ -0,0 +1,254 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Volunteering</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Volunteering">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/attend/volunteer/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Volunteering" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="../volunteer.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item active dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="../volunteer.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend <span class="sr-only">(current)</span>
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item active" href="../volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="../volunteer.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title"></h1>
|
||||||
|
<p class="lead"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 content text-page" style="max-width: 45rem">
|
||||||
|
<p>Running FOSSY will take a lot of help from people like you! Volunteers receive free admission for all 4 days of the conference. Volunteers at the registration table will be required to wear masks according to our Health and Safety policy</p>
|
||||||
|
|
||||||
|
<p>Here are some areas we need volunteers:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Set up</li>
|
||||||
|
<li>Take down and Cleanup</li>
|
||||||
|
<li>Room host (assisting speakers in setup, etc)</li>
|
||||||
|
<li>Registration/welcome table</li>
|
||||||
|
<li>Photographer (please give level of experience)</li>
|
||||||
|
<li>Code of Conduct Team (training required)</li>
|
||||||
|
<li>Team Leader (run a group of above mentioned volunteers - please list any experience with this)</li>
|
||||||
|
<li>Any other ideas you might have or want to do!</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>Please fill out the form <a href="https://nextcloud.sfconservancy.org/apps/forms/s/sBbLeC34gNiDBZCENTokXXL2">here</a> and we'll email you to let you know where you're assigned.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="../volunteer.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
251
call-for-proposals/index.html
Normal file
251
call-for-proposals/index.html
Normal file
|
|
@ -0,0 +1,251 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Call for Proposals</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Call for Proposals">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/call-for-proposals/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Call for Proposals" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item active dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program <span class="sr-only">(current)</span>
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item active" href="index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title"></h1>
|
||||||
|
<p class="lead"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 content text-page" style="max-width: 45rem">
|
||||||
|
<h1 class="page-title">Call for Proposals</h1>
|
||||||
|
|
||||||
|
<h3><b>Our call for proposals is open until May 5, 2025 (AoE)</b></h3>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
|
||||||
|
<p>SFC will be hosting the third edition of our community oriented conference July 31 - August 3rd in Portland, Oregon, in the United States. The event will focus on the creation and impact of free and open source software, uplifting contributors of all experience. We will have 5 rooms with 13+ tracks of talks over 4 days, and many of the tracks will be community-run, similar to the DevRooms at FOSDEM or the miniconfs at LinuxConfAU. You can view the list of tracks you can submit proposals to <a href="../pages/tracks/index.html">here</a>.</p>
|
||||||
|
|
||||||
|
<p>To submit a talk you must first register an account (see button below), to make a speaker profile and then select the track you want to submit to along with some additional information. If you have any questions please don't hesitate to email us at conference@sfconservancy.org.</p>
|
||||||
|
|
||||||
|
<p class="mv4"><a href="../speaker/create/index.html"><button type="button" class="btn btn-primary btn-lg">Create a speaker profile</button></a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
245
credits/index.html
Normal file
245
credits/index.html
Normal file
|
|
@ -0,0 +1,245 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Credits</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Credits">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/credits/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Credits" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title"></h1>
|
||||||
|
<p class="lead"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 content text-page" style="max-width: 45rem">
|
||||||
|
<h1 class="page-title">Credits</h1>
|
||||||
|
|
||||||
|
<h2>This website</h2>
|
||||||
|
<p>This site is based on Symposion and Registrasion (sic) Django apps, originally created by James Tauber and Chris Neugebauer respectively and extended by many others. The site is based on Linux Australia's <a href="https://gitlab.com/laconfdev/symposion_app">Everything Open codebase</a>. We'd like to thank Joel Addison and Sae Ra Germaine from Linux Australia and Chris Neugebauer for their guidance. See our <a href="https://k.sfconservancy.org/symposion_app">source code</a>.</p>
|
||||||
|
|
||||||
|
<p>Software development and operational support by <a href="https://www.sturm.com.au/">Sturm Software Engineering</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
284
index.html
Normal file
284
index.html
Normal file
|
|
@ -0,0 +1,284 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Home</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Home">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Home" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title"></h1>
|
||||||
|
<p class="lead"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 content text-page">
|
||||||
|
<header class="pt2-ns pb4">
|
||||||
|
<div class="flex-ns center">
|
||||||
|
<div class="mr4 dark-green sans-serif" style="flex-grow: 1">
|
||||||
|
<h1 class="f-subheadline f-headline-ns b lh-solid tracked-tight mv0">FOSSY 2025</h1>
|
||||||
|
<h2 class="f3 f2-ns b lh-solid mt0 mb3">July 31st - August 3rd 2025 — Portland State University</h2>
|
||||||
|
<h3 class="f4 f4-ns b lh-title mv2 mv3-ns">The third Free and Open Source Software Yearly conference</h3>
|
||||||
|
</div>
|
||||||
|
<div class="lh-solid mt4 mt0-ns" style="font-size: 10rem; max-width: 250px;"><img class="db" src="static/build/img/conservancy_logo_tall_mono.svg" style="max-height: 180px" alt="Software Freedom Conservancy"></div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section id="content">
|
||||||
|
<h1 class="f3 mt0 mb4">You can view the streams <a href="https://restreamer.opensignalpdx.org/">here</a> and find the streaming information for the conference on the <a href="streaming/index.html">streaming page</a>.</h1>
|
||||||
|
|
||||||
|
<p>FOSS is back in Portland, Oregon at the <a href="https://www.openstreetmap.org/way/40487771">Smith Memorial Student Union</a> at Portland State University!!</p>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="flex-ns">
|
||||||
|
<div class="mw6">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<p>Software Freedom Conservancy is so proud to announce that we are again hosting a
|
||||||
|
community oriented conference this coming summer. FOSSY (Free and Open Source Software
|
||||||
|
Yearly) is focused on the creation and impact of free and open source software,
|
||||||
|
uplifting contributors of all experience.</p>
|
||||||
|
|
||||||
|
|
||||||
|
<h3><b><a href="attend/tickets/index.html">Registration Open Now!</a></b></h3>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<p>We are excited to focus on using free software to run a conference and will seek to help reduce the amount of proprietary software that is treated as default.</p>
|
||||||
|
|
||||||
|
<p>If you are interested in sponsoring our conference, please see our <a href="https://sfconservancy.org/static/docs/2025-prospectus.pdf">Sponsorship Prospectus</a> or contact us at <a href="mailto:conference@sfconservancy.org">conference@sfconservancy.org</a>.</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<figure class="fr pa0 mt4 mt2-ns mr0 ml0 ml4-ns mb4">
|
||||||
|
<img src="static/build/img/psu-smsu.jpg" alt="Aerial photograph of the Portland State University">
|
||||||
|
<figcaption class="tc mt2">Portland State University's <a href="https://www.openstreetmap.org/way/40487771#map=19/45.51182/-122.68430">Smith Memorial Student Union</a>
|
||||||
|
<p>1825 SW Broadway, Portland, OR 97201 (CC-BY 3.0)</p></figcaption>
|
||||||
|
</figure>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
301
pages/tracks/index.html
Normal file
301
pages/tracks/index.html
Normal file
|
|
@ -0,0 +1,301 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Tracks</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Tracks">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/pages/tracks/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Tracks" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item active dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program <span class="sr-only">(current)</span>
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item active" href="index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title"></h1>
|
||||||
|
<p class="lead"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 content text-page" style="max-width: 45rem">
|
||||||
|
<h1 class="page-title">Tracks</h1>
|
||||||
|
|
||||||
|
<p>We welcome proposals from speakers and people who are excited to give their first talk. We want seasoned professionals and volunteers, as well as fresh perspectives from new entrants. Everyone has something of value to share!</p>
|
||||||
|
|
||||||
|
<h3>Databases</h3>
|
||||||
|
<p>Database are everywhere from embedded devices to large data centers!
|
||||||
|
This track is designed for a general audience of developers, sysadmins, DBAs and open source users to cover experiences, tools and technical details of how you use databases.</p>
|
||||||
|
|
||||||
|
<h3>Distros</h3>
|
||||||
|
<p>Come talk about what you have found for distros with specific use cases or pro tips. What new developments are happening? Tell us all about how you use your favorite distro!</p>
|
||||||
|
|
||||||
|
<h3>FOSS in Daily Life</h3>
|
||||||
|
<p>How are you using FOSS in your "everyday" life? Are there places where you find it's easier or harder to get the people around you to respect and appreciate software freedom? What areas of software are we missing in our pursuit of software freedom for all? Talks in this track can be very personal, and it's a great place to share about the particular free programs you use and why, any hacks you've found or deployed to make things work better for you, and what you feel like you are still missing -- sharing may inspire others, and we hope there can be dialog in this track so people may leave with new free solutions for their daily routines.</p>
|
||||||
|
|
||||||
|
<h3>FOSS in and for Education</h3>
|
||||||
|
<p>Educational institutions have a long and impactful history in the development of multiple open initiatives. In addition to free and open source software, colleges and universities have played significant roles in producing and propagating a variety of other open educational resources, such as open content, textbooks and courses, open access journals, open data, and science and research. Institutions of higher education play an essential role across several free and open source communities.
|
||||||
|
|
||||||
|
As adopters, campuses occupy a unique space in--and provide a unique perspective for--the use of free and open source software at the enterprise level, often in conjunction with government and research institutions. At the same time, campus constituencies--students, staff, and faculty--provide yet another perspective as independent desktop and mobile end users.
|
||||||
|
|
||||||
|
Higher education is also fertile ground for development, educating the next generation of developers while often actively creating and managing their own projects and communities of practice. The FOSS For Education Community Track would provide sessions dedicated to using, developing, and managing open resources within academic environments, from multi-institutional consortia to departmental projects. The track organizers would emphasize presentations and topics highlighting the common principles, practices, benefits, challenges, and models spanning the variety of open initiatives impacting teaching and learning environments and campus administration.</p>
|
||||||
|
|
||||||
|
<h3>Libre Graphics</h3>
|
||||||
|
<p>Artists and designers using free, open source software these days have
|
||||||
|
many different options to help bring their creations to life. Long standing projects
|
||||||
|
like Blender, Gimp, Krita, Inkscape, and Scribus provide a wide gamut of tools, but there
|
||||||
|
are also many other custom built tools in the wild for graphics, audio, video, and interaction.
|
||||||
|
This track will explore different ways art software users and developers make and use various open source tools and pipelines to create artwork and share it with the world.</p>
|
||||||
|
|
||||||
|
<h3>Licensing / Legal</h3>
|
||||||
|
<p>This is the track for proposals related to best practices around licensing and management of licensing information, discussions of recent licensing controversies and news, developments in relevant laws around the world, run-downs of important patent litigation, and the like. We'd especially welcome talks from participants from throughout the copyleft world — developers, strategists, enforcement organizations, scholars and critics -- to discuss the day-to-day details of using copyleft licensing, obstacles facing copyleft and the future of copyleft as a strategy to advance and defend software freedom for users and developers around the world.</p>
|
||||||
|
|
||||||
|
<h3>Linux Kernel</h3>
|
||||||
|
<p>We've been working on this program for over thirty years, and it's still not finished. Join us to find out about some of the latest developments in this small hobby project.</p>
|
||||||
|
|
||||||
|
<h3>Let's Control our Mobile Devices</h3>
|
||||||
|
<p>Many people's primary computers are the ones they carry in their
|
||||||
|
pockets. Nearly all of those computers offer users far less freedom
|
||||||
|
than we've achieved on laptops, desktops, and servers. Since mobile
|
||||||
|
devices are the main way people communicate with each other and engage
|
||||||
|
with many important services like banking, transportation, and
|
||||||
|
shopping, big problems arise when we don't control them. In this
|
||||||
|
track, we'll discuss what needs to happen to take this control back,
|
||||||
|
and the state of free software projects and policy efforts doing just
|
||||||
|
that. Examples of topical talk areas include: freeing mobile operating
|
||||||
|
systems, specific free software apps to use and contribute to, app
|
||||||
|
distribution systems, and updates on the legal battles around
|
||||||
|
distribution of mobile software.</p>
|
||||||
|
|
||||||
|
<h3>P2P LoFi Futures: Peer-to-Peer and Local First</h3>
|
||||||
|
<p>Open Source philosophies go to the next level when we extricate ourselves from the increasing technofeudalism of the current internet. Peer-to-peer (P2P) and Local-First (Lo-Fi) software allows us to take responsibility for our data and participate with one another in ecosystems we can own. P2P has many technical opportunities and challenges, and also multiple frameworks. In this track, we will be exploring both the technical architecture avenues for P2P and Lo-Fi as well as the social and philosophical aspects of P2P approaches and implementations. Dive into conflict-free replicated data types, relays, mesh networks, agent-centricity and other key aspects.</p>
|
||||||
|
|
||||||
|
<h3>Science of Community</h3>
|
||||||
|
<p>What can research tell us about building FOSS communities? We invite presentations from academic and industry researchers working on and with FOSS, FOSS practitioners (e.g. project leaders, community leaders, maintainers, moderators), and students who are interested in engaging with FOSS research. In this track, we will include opportunities for researchers to talk with practitioners (about their research), practitioners to talk with researchers (about their needs), and researchers to talk with researchers (for learning and collaboration). Some of the most important collaborations are those between practitioners and researchers; this can only happen when they have a chance to get to know each other.</p>
|
||||||
|
|
||||||
|
<h3>Supporting User Groups</h3>
|
||||||
|
<p>An important aspect of fostering community is to have users organize users groups in their local communities. When an open source project has contributors all around the planet, user groups help foster a sense of community, helps with shared learnings and nurtures community members in their journey of contributing to open source. In this track, we will discuss best practices on organizing user groups, promoting and inspiring the community, identifying the initial opportunity to start user groups, tools to offer user group organizers, identifying speakers in the community, and making user groups sustainable.</p>
|
||||||
|
|
||||||
|
<h3>XMPP</h3>
|
||||||
|
<p>XMPP is an extensible, foundational, and libre building block for any sort of federated communication infrastructure. Talks ranging from those new to the idea, setting up chat or social servers for small groups and families and other use cases, to those familiar with the issues such as SPAM and abuse prevention in a federated space, to technical deep dive talks about open source projects in the space and their innovations, would all be something worth covering in this track. We would strive to both appeal to the core XMPP audience and bring them to FOSSY, but also to introduce the projects and ideas to the rest of the FOSS community.</p>
|
||||||
|
|
||||||
|
<h3>Wild card</h3>
|
||||||
|
<p>This track is for any talks that don't fit cleanly into the rest of the tracks. Don't be shy about putting your talk here if you don't know where it should go, we can always assign it to a specific track later. We know there are many important free software projects out there that could be highlighted in a talk that aren't hosted at SFC and don't fit any of the other tracks -- this is the right place for those.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
2408
schedule/conference.ics
Normal file
2408
schedule/conference.ics
Normal file
File diff suppressed because it is too large
Load diff
3843
schedule/conference.json
Normal file
3843
schedule/conference.json
Normal file
File diff suppressed because it is too large
Load diff
6455
schedule/index.html
Normal file
6455
schedule/index.html
Normal file
File diff suppressed because it is too large
Load diff
293
schedule/presentation/282/index.html
Normal file
293
schedule/presentation/282/index.html
Normal file
|
|
@ -0,0 +1,293 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Raising the bar on your conference presentation</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Raising the bar on your conference presentation">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/282/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Raising the bar on your conference presentation" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Raising the bar on your conference presentation</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
328 | <span class="presentation-time" data-starttime="2025-08-01T11:45:00" data-endtime="2025-08-01T12:30:00">Fri 01 Aug 11:45 a.m.–12:30 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/ca2ff6fc6168da8d5d183f6cc182e048?s=120&d=mp" alt="Rich Bowen" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/413/index.html">Rich Bowen</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://rbowen/@https://mastodon.social/">@https://mastodon.social/@rbowen</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/rbowen">@rbowen</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://rcbowen.com/">https://rcbowen.com/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Rich Bowen has been involved in open source since before we started calling it that. He's a member of the Apache Software Foundation, where
|
||||||
|
he currently serves as a board member and Vice Chair. Rich is an Open Source Strategist at AWS.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>We've all attended - or given - presentations that put the audience to sleep, or at least had most of them playing Kwazy Cupcakes on their phones. In this presentation, we talk about ways that you can improve your conference presentations by making a few simple changes.</p>
|
||||||
|
<p>You know the presentations I'm talking about. The slides are 73 lines of 12-point font, and the speaker reads them to you with their back turned. Ok, maybe not that bad. But you want to leave the audience wanting more, and eager to take the next step. Here's a few simple tips for making your conference and meetup presentations engaging, rather than soporific.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/giPM7-yBHVc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/giPM7-yBHVc" rel="nofollow">https://youtu.be/giPM7-yBHVc</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
291
schedule/presentation/284/index.html
Normal file
291
schedule/presentation/284/index.html
Normal file
|
|
@ -0,0 +1,291 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: How do you solve a problem like iOS?</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: How do you solve a problem like iOS?">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/284/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: How do you solve a problem like iOS?" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">How do you solve a problem like iOS?</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
327 | <span class="presentation-time" data-starttime="2025-08-02T17:30:00" data-endtime="2025-08-02T18:15:00">Sat 02 Aug 5:30 p.m.–6:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/3ab4d3a66e470ce10eb7ec812fab3c46?s=120&d=mp" alt="Stephen Paul Weber" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/447/index.html">Stephen Paul Weber</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/singpolyma">@singpolyma</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://singpolyma.net">https://singpolyma.net</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Stephen is a long-time software freedom enthusiast, semi-retired from industry to focus on promoting freedomware solutions to problems faced by everyday people. Stephen currently helps run the <a href="http://Soprani.ca">Soprani.ca</a> project and the related JMP.chat freedomware-based telephony provider.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>The user experience of those trapped in the Apple ecosystem has for years been a problem for the open source XMPP community. Not many community developers use that ecosystem, and so little development and testing goes towards it. After all we want to use freedomware operating systems on all our devices!</p>
|
||||||
|
<p>Yet it remains an issue because, as a communications network, many people have friends and family they wish to connect with who use Apple devices. Not having a good, freedom-respecting solution for those people means they often feel pulled towards proprietary walled gardens instead in order to be able to communicate.</p>
|
||||||
|
<p>I have been working on this problem for some time and will detail my approach using standard technologies to close most of this gap without any Apple devices at all, the benefits of an extensible standard like XMPP on achieving this, and how this might help other communities as well.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/IcOytDJUrHQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/IcOytDJUrHQ" rel="nofollow">https://youtu.be/IcOytDJUrHQ</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
289
schedule/presentation/285/index.html
Normal file
289
schedule/presentation/285/index.html
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Adventures in Onboarding: Helping New Users Navigate Federated Services</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Adventures in Onboarding: Helping New Users Navigate Federated Services">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/285/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Adventures in Onboarding: Helping New Users Navigate Federated Services" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Adventures in Onboarding: Helping New Users Navigate Federated Services</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
327 | <span class="presentation-time" data-starttime="2025-08-02T16:30:00" data-endtime="2025-08-02T17:15:00">Sat 02 Aug 4:30 p.m.–5:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/e6de53a7781b92ebfd24322b0854506c?s=120&d=mp" alt="Gideon Mayhak" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/468/index.html">Gideon Mayhak</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://themayhaks.com/~gideon/blog/">https://themayhaks.com/~gideon/blog/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Gideon is a longtime user and supporter of free open source software. With over 20 years of experience supporting and training users across both proprietary and open systems, he has a love for working with people to figure things out. Gideon currently works on the support team for JMP.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Tales from the front lines of supporting new users of federated services! We've all been there: you're excited about a new technology and you want to tell your friends. You've already gotten into the weeds and you come on a bit too strong. Does your friend need to know what "XMPP” stands for? Does it matter if they know what a domain is?</p>
|
||||||
|
<p>This talk will be a review of common stumbling blocks for new users, tips on keeping things simple with your friends and family, and a discussion about how to help people grow into their newfound communities. We’ll also take a closer look at demystifying common terms in the world of XMPP so you’re ready to answer some of the tougher questions in life, like, “What is a Snikket?”</p>
|
||||||
|
<p>Come learn more about open federated systems and how you can help others join in on the fun!</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/hgZLx6oLepM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/hgZLx6oLepM" rel="nofollow">https://youtu.be/hgZLx6oLepM</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
285
schedule/presentation/286/index.html
Normal file
285
schedule/presentation/286/index.html
Normal file
|
|
@ -0,0 +1,285 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Setting Up A Simple XMPP Server</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Setting Up A Simple XMPP Server">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/286/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Setting Up A Simple XMPP Server" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Setting Up A Simple XMPP Server</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
327 | <span class="presentation-time" data-starttime="2025-08-02T14:00:00" data-endtime="2025-08-02T14:45:00">Sat 02 Aug 2 p.m.–2:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/5b2b58c93321529b9daf5353f51cf4c3?s=120&d=mp" alt="Root" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/424/index.html">Root</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Root has been a long time advocate in the privacy and security space, and enjoys teaching others how to stay safe and secure while online and to avoid common pitfalls. Root is a beginner developer and enjoys breaking things while learning what makes it tick ;) this has lead to a wide range of experience across many different subjects. Root is also part of the team that runs <a href="http://Soprani.ca">Soprani.ca</a>, <a href="http://Cheogram.com">Cheogram.com</a> and JMP.chat and is heavily focused on their acceptance and success, in both the freedom-ware communities and beyond.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>This talk will showcase the simplicity and ease of setting up your own XMPP server using the Snikket software, walking step-by-step through the process using slides. The end result will be a fully functioning XMPP server that can be used throughout the remainder of the conference between all attendees. There will be a demonstration of the features available to a Snikket Instance including, but not limited to, inviting others to join your server, group chats that are private or public, adding contacts, managing and updating the instance as the admin, creating limited accounts for kids, and steps for more secure end-to-end encryption. This talk will also dive into some personal privacy, security, and persona considerations and how they will be affected by your threat model.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/FsPh9iUUGEM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/FsPh9iUUGEM" rel="nofollow">https://youtu.be/FsPh9iUUGEM</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
285
schedule/presentation/287/index.html
Normal file
285
schedule/presentation/287/index.html
Normal file
|
|
@ -0,0 +1,285 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Telecomms for Preppers</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Telecomms for Preppers">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/287/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Telecomms for Preppers" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Telecomms for Preppers</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
327 | <span class="presentation-time" data-starttime="2025-08-02T15:00:00" data-endtime="2025-08-02T15:25:00">Sat 02 Aug 3 p.m.–3:25 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/d2e805e9126addc937f12e57bbbd9f93?s=120&d=mp" alt="Phillip" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/502/index.html">Phillip</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Phillip is a developer for MBOA who, these days, mostly writes Ruby and works on Jabber projects. When not staring at code, he learns languages, plays chess, and pickles carrots.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Software in general, and telecommunication in particular, relies on a sprawling infrastructure of networking, hosting, and electrical infrastructure that no single person understand. On the other hand, a key component of mutual aid and disaster preparedness is the knowledge and tools to provide such services in a context where your immediate community might have to provide some of its own needs. Let's talk about how you could contribute to that by building communication software that you can use, modify, and fix on your own as much as possible.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/wPviyMrgr90" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/wPviyMrgr90" rel="nofollow">https://youtu.be/wPviyMrgr90</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
290
schedule/presentation/288/index.html
Normal file
290
schedule/presentation/288/index.html
Normal file
|
|
@ -0,0 +1,290 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Messaging interoperability with MLS, MIMI and XMPP</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Messaging interoperability with MLS, MIMI and XMPP">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/288/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Messaging interoperability with MLS, MIMI and XMPP" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Messaging interoperability with MLS, MIMI and XMPP</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
327 | <span class="presentation-time" data-starttime="2025-08-02T15:25:00" data-endtime="2025-08-02T15:45:00">Sat 02 Aug 3:25 p.m.–3:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/6686d0e828a3927f07f44b93ce1224fb?s=120&d=mp" alt="Marvin W." class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/512/index.html">Marvin W.</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://mastodon.social/@larma">@larma@mastodon.social</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://mastodon.social/@larma">https://mastodon.social/@larma</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Marvin is a free software hacker and open protocol enthusiast. He has been contributing to free software for more than 15 years, focusing on free Android and federated instant messaging. Today, he's project leader at microG, a core developer of the XMPP client Dino, a member of the technical council of the XMPP Standards Foundation and a contributor to the MIMI working group at the IETF.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>XMPP was and still is the major open standard for federated instant messaging, originally designed to allow bridging between existing networks.</p>
|
||||||
|
<p>In recent years, due to ongoing regulatory efforts, a new attempt at interoperability between instant messengers, MIMI (More Instant Messaging Interoperability), was started at the IETF, the internet protocol standardization body. Based on the latest and greatest end-to-end-encryption standard MLS (Messaging Layer Security) it's meant to partially provide what XMPP failed to deliver. This talk will give an overview on the topics of MLS and MIMI and how it can play together with XMPP.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/TbJauhH-U-o" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/TbJauhH-U-o" rel="nofollow">https://youtu.be/TbJauhH-U-o</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
294
schedule/presentation/289/index.html
Normal file
294
schedule/presentation/289/index.html
Normal file
|
|
@ -0,0 +1,294 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: PostgreSQL’s Rise to Power: Why the Open Source Giant is Dominating the Database Landscape</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: PostgreSQL’s Rise to Power: Why the Open Source Giant is Dominating the Database Landscape">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/289/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: PostgreSQL’s Rise to Power: Why the Open Source Giant is Dominating the Database Landscape" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">PostgreSQL’s Rise to Power: Why the Open Source Giant is Dominating the Database Landscape</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
327 | <span class="presentation-time" data-starttime="2025-08-01T10:45:00" data-endtime="2025-08-01T11:30:00">Fri 01 Aug 10:45 a.m.–11:30 a.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/b80f0c86361c6f97619eec3fc28241fd?s=120&d=mp" alt="Kellyn Gorman" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/462/index.html">Kellyn Gorman</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="index.html">@N/A</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/N/A">@N/A</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://dbakevlar.com">https://dbakevlar.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Kellyn Gorman is a database and AI specialist with over 25 years of experience in relational systems. She's authored numerous books and white papers and is well-respected for her contributions under her online handle, "DBAKevlar." She's an award-winning optimization and security specialist having previously worked for Oracle and Microsoft, along with a long history as a mentor and advocate in the tech industry.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>PostgreSQL has quietly, but powerfully risen to become one of the most trusted and widely adopted database platforms in the world. Once considered a niche solution back in it's days as it's predecessor, Ingres, PostgreSQL now leads the charge in the open-source database movement, challenging and often surpassing traditional enterprise heavyweights like Oracle and SQL Server.
|
||||||
|
In this session, we’ll explore the technical, strategic, and cultural reasons behind PostgreSQL’s rapid ascent. From its robust standards compliance and extensibility to its vibrant development community and compatibility with modern cloud-native architectures, PostgreSQL delivers enterprise-grade performance without the steep licensing costs.
|
||||||
|
We'll also examine how PostgreSQL’s innovation is influencing other platforms like MySQL, MongoDB, and SQLite, and why developers and architects are increasingly choosing it as the foundation for their mission-critical workloads. This session will cover everything from high availability options, most popular extensions and features that keep PostgreSQL the choice among database technologists, no matter if traditional transactional, analytical or even AI workloads. We'll also discuss the limitations around migrations and how to best take on the challenges or moving large, enterprise, multi-tier systems over to open-source solutions.
|
||||||
|
Whether you're considering migration, multiplatform strategy, or just want to understand the open-source momentum, this session will provide deep insights into PostgreSQL’s success and what it means for the future of data.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/yh0VnI60D10" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/yh0VnI60D10" rel="nofollow">https://youtu.be/yh0VnI60D10</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
289
schedule/presentation/292/index.html
Normal file
289
schedule/presentation/292/index.html
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Databases and Diversity</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Databases and Diversity">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/292/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Databases and Diversity" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Databases and Diversity</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
327 | <span class="presentation-time" data-starttime="2025-08-01T15:00:00" data-endtime="2025-08-01T15:20:00">Fri 01 Aug 3 p.m.–3:20 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/e623438da0a375c5f1a910c3cbb9048e?s=120&d=mp" alt="Stacey Haysler" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/427/index.html">Stacey Haysler</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://fosstodon.org/@shaysler">@shaysler@fosstodon.org</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>By day, Stacey is the CFO and COO of PGX, Inc., a Postgres-only consultancy in San Francisco, California. She is also the President of the U.S. PostgreSQL Association (PgUS), a nonprofit dedicated to the advancement of PostgreSQL through education and advocacy. Stacey is an organizer of the San Francisco Bay Area PostgreSQL Users Group. Stacey is also the creator of the original PostgreSQL Community Code of Conduct, and was the first Chair of the Community CoC Committee for three years. Stacey is a Django Software Foundation Member, as well as a former Board Member of the DSF. She founded and served on the Board of the Django Events Foundation North America, and was a primary organizer of DjangoConUS 2015 – 2018. Stacey is a Contributing Member of Software in the Public Interest. By night, she sleeps, since that's a lot to do every day!</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>While we have great diversity in databases—from open source systems such as PostgreSQL and CouchDB, to proprietary and heavily licensed ones such as Oracle— human diversity in the database community is not nearly equivalent. Diversity (and lack thereof) in the technical community has been a topic of increasing discussion the past few years. While we have made some progress—even submitting a proposal for a talk on diversity to a conference is a significant change—we have some distance to travel still. While won't get there in 25 minutes, we will cover a fair amount of ground!</p>
|
||||||
|
<p>We will review current efforts in the technical community to improve diversity, as well as ideas that have been discussed and need someone to develop them. </p>
|
||||||
|
<p>You will also learn what you, as one individual, can do in your daily life to improve the diversity of our community.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/-s91SUkaTZc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/-s91SUkaTZc" rel="nofollow">https://youtu.be/-s91SUkaTZc</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
291
schedule/presentation/294/index.html
Normal file
291
schedule/presentation/294/index.html
Normal file
|
|
@ -0,0 +1,291 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Observing Postgres in action using OpenTelemetry</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Observing Postgres in action using OpenTelemetry">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/294/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Observing Postgres in action using OpenTelemetry" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Observing Postgres in action using OpenTelemetry</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
327 | <span class="presentation-time" data-starttime="2025-08-01T16:30:00" data-endtime="2025-08-01T17:15:00">Fri 01 Aug 4:30 p.m.–5:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/fd7d468df3c840f14c1f76ffae7a73ff?s=120&d=mp" alt="Basil Bourque" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/485/index.html">Basil Bourque</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/Basil_Dot_Work">@Basil_Dot_Work</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="http://www.Basil.work/">http://www.Basil.work/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>A graybeard developer, custom crafting database-backed apps for enterprise departments over the decades. And shipped a couple of iOS mobile apps. And built a few web apps for micro startups. And wrote way too many Stack Overflow posts.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>While debugging in development, or troubleshooting in production, we need to monitor the conditions and behavior of the various components in our systems. One of those components is the database server. We need to look inside the black box that is our database server.</p>
|
||||||
|
<p>Much progress has been made in instrumenting, generating, collecting, and exporting telemetry data (metrics, logs, and traces) to help us analyze our software systems’ performance and behavior. While various proprietary and open-source products have advanced this field of observability, the industry has recognized the need to create a single collection of APIs, SDKs, and tools that can work in a vendor-neutral manner across the many implementations. The open-source community-driven project OpenTelementry is that solution.</p>
|
||||||
|
<p>Now Postgres has gained support for OpenTelemetry. Let's look at how observability works, and how Postgres uses OpenTelemetry to provide the operations data that DBAs, SysAdmins, and developers need.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/e80ycjygRhE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/e80ycjygRhE" rel="nofollow">https://youtu.be/e80ycjygRhE</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
300
schedule/presentation/295/index.html
Normal file
300
schedule/presentation/295/index.html
Normal file
|
|
@ -0,0 +1,300 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: RAGtime with Postgres: AI Power with pgvector and Retrieval-Augmented Generation</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: RAGtime with Postgres: AI Power with pgvector and Retrieval-Augmented Generation">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/295/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: RAGtime with Postgres: AI Power with pgvector and Retrieval-Augmented Generation" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">RAGtime with Postgres: AI Power with pgvector and Retrieval-Augmented Generation</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
327 | <span class="presentation-time" data-starttime="2025-08-01T17:30:00" data-endtime="2025-08-01T18:15:00">Fri 01 Aug 5:30 p.m.–6:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/f803e0ee8b2c5e637a52f8e1130796aa?s=120&d=mp" alt="Jimmy Angelakos" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/458/index.html">Jimmy Angelakos</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://fosstodon.org/@vyruss">@vyruss@fosstodon.org</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://vyruss.org/computing">https://vyruss.org/computing</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Jimmy Angelakos is a Systems and Database Architect and recognized PostgreSQL expert who has worked with, and contributed to, Open-Source tools for 25+ years. He is passionate about participating in the community, a Contributor to the PostgreSQL project, and an active member of PostgreSQL Europe and US. Jimmy is a regular speaker at conferences and events, sharing his insights with the community. Author of PostgreSQL Mistakes and How to Avoid Them, co-author of PostgreSQL 16 Administration Cookbook.</p>
|
||||||
|
<p>Mastodon: <a href="https://fosstodon.org/@vyruss">https://fosstodon.org/@vyruss</a>
|
||||||
|
Bluesky: https://bsky.app/profile/<a href="http://vyruss.org">vyruss.org</a></p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Retrieval-Augmented Generation (RAG) is a powerful paradigm in application development with AI. In this talk, we'll demonstrate how to leverage PostgreSQL with pgvector to combine the strengths of vector similarity search with Large Language Models (LLMs).</p>
|
||||||
|
<p>As the speaker is a Postgres nerd (not an AI expert), we'll explain in simple terms how to dip your toes into AI while leveraging our favorite database -- from the perspective of a database person learning to work with these new tools.</p>
|
||||||
|
<p>We'll walk through: </p>
|
||||||
|
<ul>
|
||||||
|
<li>How to use pgvector to store and search vector embeddings (and what those are)</li>
|
||||||
|
<li>How to connect these capabilities with AI LLMs to build intelligent applications. </li>
|
||||||
|
<li>Some practical tips for implementation, including configuration, indexing strategies, and scaling considerations</li>
|
||||||
|
<li>How to reduce dependency on expensive external AI services by using open-source models while maintaining control over costs and infrastructure</li>
|
||||||
|
</ul>
|
||||||
|
<p>To demonstrate these concepts in action, we'll look at a real-world example of building a developer assistance system that helps teams understand their codebase.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/_ZSLJDYMOgM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/_ZSLJDYMOgM" rel="nofollow">https://youtu.be/_ZSLJDYMOgM</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
291
schedule/presentation/296/index.html
Normal file
291
schedule/presentation/296/index.html
Normal file
|
|
@ -0,0 +1,291 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Herding Hackers and Hawking Code: The Hustle of a Developer Advocate</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Herding Hackers and Hawking Code: The Hustle of a Developer Advocate">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/296/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Herding Hackers and Hawking Code: The Hustle of a Developer Advocate" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Herding Hackers and Hawking Code: The Hustle of a Developer Advocate</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
328 | <span class="presentation-time" data-starttime="2025-08-01T10:45:00" data-endtime="2025-08-01T11:30:00">Fri 01 Aug 10:45 a.m.–11:30 a.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/025f12920bbddc2c9abdad0a0a9e435a?s=120&d=mp" alt="Nate Boot" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/429/index.html">Nate Boot</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://nateynateynate/@https://fosstodon.org/">@https://fosstodon.org/@nateynateynate</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/nateboot">@nateboot</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Nate is a life-long tech enthusiast, only recently finding himself in the world of developer advocacy at AWS. He currently works exclusively with the open source OpenSearch project. He loves show-and-tell, and really enjoys learning about new stuff and then sharing it with anyone who will listen. He has a particular love for retro technology and old video games. His most formative years were spent in BBS teleconferences in the pacific northwest.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>You may have heard of a developer advocate. You might have even seen one on stage or met one at a conference booth slinging stickers like they’re currency. Odds are you’ve probably seen a YouTube video or read a blog post from a developer advocate, talking about why an API has changed or acting as an “explainer of stuff” for some new feature. Our lives are never boring, but how can you tell if it’s something you’d be interested in? Just what else are these folk up to? </p>
|
||||||
|
<p>They are a must have if your particular open source project has regular user groups. You might even consider them a kind of translation layer. You see, they usually have backgrounds in software engineering but instead of coding all day, they're likely to be found talking about code all day. When your users are suffering from deficiencies and bring them to user groups to be discussed, these advocates can usually pinpoint what group of developers and/or repositories those code changes need to be made in. They are a bridge between development teams and user communities.</p>
|
||||||
|
<p>I’d love a chance to share my experience. If you have a passion for open source projects and want to someday get involved in a pragmatic and supportive way, let me take you through my journey and share just what makes it special to me and why it makes such a difference to the community of any open source product.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/zd9FVbSJ37g" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/zd9FVbSJ37g" rel="nofollow">https://youtu.be/zd9FVbSJ37g</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
291
schedule/presentation/297/index.html
Normal file
291
schedule/presentation/297/index.html
Normal file
|
|
@ -0,0 +1,291 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: DevOps is a Foreign Language (or Why There Are No Junior SREs)</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: DevOps is a Foreign Language (or Why There Are No Junior SREs)">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/297/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: DevOps is a Foreign Language (or Why There Are No Junior SREs)" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">DevOps is a Foreign Language (or Why There Are No Junior SREs)</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
328 | <span class="presentation-time" data-starttime="2025-08-01T17:30:00" data-endtime="2025-08-01T18:15:00">Fri 01 Aug 5:30 p.m.–6:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/afbbd1ad7dbbfa718a0d9bd5e11b0e5d?s=120&d=mp" alt="Joshua Lee" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/490/index.html">Joshua Lee</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/joshleecreates">@joshleecreates</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://joshuamlee.com">https://joshuamlee.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Josh is a seasoned software developer with over a decade of experience, specializing in a broad range of topics including operations, observability, agile methodologies, and accessibility. His passion for technology is matched by his enthusiasm for sharing knowledge through public speaking. Currently, Josh serves as a Developer Advocate for Altinity, where he creates educational content on ClickHouse and OpenTelemetry. Additionally, he is an active contributor to the OpenTelemetry project, helping to advance the field of observability in software development.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>DevOps has a notoriously steep learning curve. Getting started in the field can feel like being dropped in a foreign country without the ability to understand <em>anything</em> about the language. </p>
|
||||||
|
<p>A language is more than just the syntax and semantic rules of the words themselves. It also encompasses the shared culture of the speakers. With the proliferation of programming languages as well as the deeply held cultural beliefs of the community, it's easy to see that learning DevOps is like trying to learn a foreign language.</p>
|
||||||
|
<p>I will review five foundational hypotheses from the field of Second Language Acquisition and relate these hypotheses back to the world of DevOps. DevOps practitioners, trainers, tool builders, and learners should all come away with useful insights to apply to their practice.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/Psqb2UTV0Lo" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/Psqb2UTV0Lo" rel="nofollow">https://youtu.be/Psqb2UTV0Lo</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
298
schedule/presentation/298/index.html
Normal file
298
schedule/presentation/298/index.html
Normal file
|
|
@ -0,0 +1,298 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Cooking Up Community: Build the Fire, Embrace Every Ingredient, Always Stir the Pot</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Cooking Up Community: Build the Fire, Embrace Every Ingredient, Always Stir the Pot">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/298/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Cooking Up Community: Build the Fire, Embrace Every Ingredient, Always Stir the Pot" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Cooking Up Community: Build the Fire, Embrace Every Ingredient, Always Stir the Pot</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
328 | <span class="presentation-time" data-starttime="2025-08-01T14:00:00" data-endtime="2025-08-01T14:45:00">Fri 01 Aug 2 p.m.–2:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/1d9af7b683c3024e49415a3063b01597?s=120&d=mp" alt="Rick Turoczy" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/486/index.html">Rick Turoczy</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://pdx.social/@turoczy">@turoczy@pdx.social</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/turoczy">@turoczy</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://siliconflorist.com">https://siliconflorist.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Rick Turoczy has been working in, on, and around the Portland, Oregon, startup community for 30 years. He has been recognized as one of the “OG”s of startup ecosystem building by the Kauffman Foundation, has shared insights in the book The Startup Community Way, and has been humbled by any number of opportunities to speak on stages from SXSW to Kobe to Muscat, including an opportunity to share his views on community building on the TEDxPortland stage (<a href="https://www.youtube.com/watch?v=Cj98mr_wUA0">https://www.youtube.com/watch?v=Cj98mr_wUA0</a>).</p>
|
||||||
|
<p>As founder and editor of Silicon Florist (<a href="https://siliconflorist.com/">https://siliconflorist.com/</a>), he has blogged about Portland startups for nearly 20 years — even though numerous people have begged him to stop. That side project led Rick to start PIE (the Portland Incubator Experiment) (<a href="https://piepdx.com/">https://piepdx.com/</a>), an ongoing experiment exploring the potential for mutually beneficial collaborations between the Portland startup community and more well-established entities like corporations, government organizations, and educational institutions.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Building a thriving open source community isn’t just about setting up the right infrastructure — it’s about lighting the fire, welcoming every ingredient, and making sure the pot stays stirred.</p>
|
||||||
|
<p>In this talk, Rick Turoczy — longtime startup community builder, Silicon Florist writer, and semi-professional stirrer-of-pots — shares practical, heartfelt lessons on how open communities nourish creativity, innovation, and resilience. Drawing inspiration from campfires, communal kitchens, and a few questionable recipes, Rick explores what it really takes to keep the flame alive without burning out the chefs.</p>
|
||||||
|
<p>Topics include:
|
||||||
|
- Building the Fire: Creating the conditions where contributors of all kinds feel warmth, safety, and purpose
|
||||||
|
- Embracing Every Ingredient: Recognizing and celebrating every kind of contribution — code, documentation, encouragement, memes, and moral support
|
||||||
|
- Always Stirring the Pot: Keeping communities dynamic, curious, and welcoming to new flavors and ideas — without letting things get scorched</p>
|
||||||
|
<p>Whether you're tending a tiny new project or helping stir a massive community stew, you'll leave with a renewed sense of why open source isn't just about code — it's about collaboration, nourishment, and shared possibility.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/tvT_sz6BXAQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/tvT_sz6BXAQ" rel="nofollow">https://youtu.be/tvT_sz6BXAQ</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
292
schedule/presentation/299/index.html
Normal file
292
schedule/presentation/299/index.html
Normal file
|
|
@ -0,0 +1,292 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Popping kernels for Linux distributions</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Popping kernels for Linux distributions">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/299/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Popping kernels for Linux distributions" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Popping kernels for Linux distributions</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
328 | <span class="presentation-time" data-starttime="2025-07-31T14:00:00" data-endtime="2025-07-31T14:45:00">Thu 31 Jul 2 p.m.–2:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/af8a9293484ed04b89081d848929b19a?s=120&d=mp" alt="Neal Gompa" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/432/index.html">Neal Gompa</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://social.gompa.me/@neal">@neal@social.gompa.me</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/Det_Conan_Kudo">@Det_Conan_Kudo</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://neal.gompa.dev/">https://neal.gompa.dev/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Neal Gompa is a developer for–and contributor to–Fedora, CentOS, and openSUSE. Neal focuses primarily on the base Linux system components, such as package and software management, and desktop Linux. He believes in “upstream first,” which has led him all over the open source world. In addition to open source work as a consultant through Velocity Limitless, he is also a co-host on the Sudo Show podcast where he talks about "the business of open source."</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Packagers in Linux distributions do a lot to ensure the software you use is up to date, integrated in the platform, and most importantly: works! But one package stands out among the others in importance: the Linux kernel. Over the past few years, I've become a Linux kernel package maintainer for a couple of Linux distributions (notably Fedora Asahi Remix and CentOS Stream Hyperscale). This talk will share my experiences in becoming and being a Linux kernel package maintainer: the good, the bad, and the sometimes ugly.</p>
|
||||||
|
<p>This will be centered around two very distinct types of kernel packages: one where the kernel is mostly upstream and low patching (CentOS Stream Hyperscale) and one where the kernel has a significant downstream patch load (Fedora Asahi Remix). The compare and contrast will demonstrate why Linux distributions make the choices they do around package maintenance and concretely show why philosophies like "upstream first" and similar matter.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/J-o7LmMDNI4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/J-o7LmMDNI4" rel="nofollow">https://youtu.be/J-o7LmMDNI4</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
297
schedule/presentation/301/index.html
Normal file
297
schedule/presentation/301/index.html
Normal file
|
|
@ -0,0 +1,297 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Linux kernel test automation with kdevops</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Linux kernel test automation with kdevops">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/301/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Linux kernel test automation with kdevops" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Linux kernel test automation with kdevops</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
328 | <span class="presentation-time" data-starttime="2025-07-31T16:30:00" data-endtime="2025-07-31T17:15:00">Thu 31 Jul 4:30 p.m.–5:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/ba45cc474c6f30d2c1b4d63a98ac9283?s=120&d=mp" alt="Luis Chamberlain" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/488/index.html">Luis Chamberlain</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="index.html">@mcgrof</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Luis is a Principal Engineer at Samsung focusing the development and adoption of future Samsung NVMe storage & memory solutions with a focus on artificial intelligence. Luis has been working on the Linux kernel for over 20 years, and his fields of interest has changed over time, from Wireless, Bluetooth, Ethernet, to virtualization and lately with storage and memory technologies. He has also helped spearhead different new automation open source projects such as the Linux kernel backports project and as of late the kdevops project.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>We have a slew of ways to test the Linux kernel: selftests, kunit, and then we have a slew of subsystem specific tests. Intel 0-day has also done a fantastic job at helping find bugs. So has syzkaller. Some subsystems like filesystems and memory management have really complex test frameworks though and have falling behind in automation. Is it possible to automate testing of complex subsystems? Should we? And what are the implications if we're successful?</p>
|
||||||
|
<p>To provide perspective, it takes roughly 10 years to stabilize a new Linux filesystem. But can we do better? The kdevops project was started with the goal of first of addressing automation of testing of complex subsystems such as filesystems to help reduce the amount of time it takes to stabilize new filesystems or new filesystem features. The project aimed at supporting local virtualization, bare metal, and all cloud provider support. Seven years later since the project got started, with the help of a lot of community collaboration the project is now integral part not only of testing pipelines but also development workflows. The kdevops project now enables continuous integration for different subsystems starting with:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Linux modules</li>
|
||||||
|
<li>Linux radix tree</li>
|
||||||
|
<li>Linux filesystems: xfs, btrfs, ext4</li>
|
||||||
|
<li>Linux network filesystems: NFS</li>
|
||||||
|
<li>Linux selftests</li>
|
||||||
|
</ul>
|
||||||
|
<p>A dashboard of results is now also updated automatically based on automatic tests: <a href="https://kdevops.org">https://kdevops.org</a></p>
|
||||||
|
<p>What have we learned from all this effort so far? And what lies ahead for the roadmap? If you want to contribute and help how do you do that?</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/i59uzyv6eVc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/i59uzyv6eVc" rel="nofollow">https://youtu.be/i59uzyv6eVc</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
291
schedule/presentation/302/index.html
Normal file
291
schedule/presentation/302/index.html
Normal file
|
|
@ -0,0 +1,291 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: The big-endian RISC-V Linux Adventure</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: The big-endian RISC-V Linux Adventure">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/302/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: The big-endian RISC-V Linux Adventure" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">The big-endian RISC-V Linux Adventure</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
328 | <span class="presentation-time" data-starttime="2025-07-31T17:30:00" data-endtime="2025-07-31T18:15:00">Thu 31 Jul 5:30 p.m.–6:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/08d94c1c08103fcdd9c14a8bdb316e39?s=120&d=mp" alt="Ben Dooks" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/450/index.html">Ben Dooks</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/bjdooks">@bjdooks</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="http://www.fluff.org/ben/">http://www.fluff.org/ben/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Long time open source contributor to the Linux kernel, qemu and other projects for both work and personal fun. Experience in various hardware and board bringup on arm32, arm64, riscv64 and electronic design.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>The latest RISC-V ISA specification allows for runtime configuration of the data endian between little and big. Since no one had done this before, we decided to investigate how difficult it would be to get an prototype Linux implementation running in big endian on an emulated RISC-V system such as under QEMU.</p>
|
||||||
|
<p>The talk goes from the description of the new ISA feature, our initial analysis and the modifications to software such as the Linux kernel, QEMU and OpenSBI that where needed. This then goes into the issues that we found and how to fix them. This includes kvm and how that works with mixed endian kvm instances, and the modifications to kvmtool to make this work.</p>
|
||||||
|
<p>We conclude with how the project went, what we published and a call to arms to continue testing and fixing outstanding issues.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/Oy7LgqsHilU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/Oy7LgqsHilU" rel="nofollow">https://youtu.be/Oy7LgqsHilU</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
287
schedule/presentation/305/index.html
Normal file
287
schedule/presentation/305/index.html
Normal file
|
|
@ -0,0 +1,287 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Riding Subiquity With No Handlebars</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Riding Subiquity With No Handlebars">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/305/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Riding Subiquity With No Handlebars" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Riding Subiquity With No Handlebars</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
329 | <span class="presentation-time" data-starttime="2025-07-31T14:00:00" data-endtime="2025-07-31T14:45:00">Thu 31 Jul 2 p.m.–2:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/a21b52ef15870f902160efdf7a59650f?s=120&d=mp" alt="Romeo S" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/410/index.html">Romeo S</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://punkto.org">https://punkto.org</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Romeo is a GNU/Linux sysadmin with nearly a decade of experience. As a college dropout, he has taught himself the ins and outs of GNU/Linux and of countless software projects from scratch with no tour guide or teacher. A consistent habit of "being the edge case that you want to see in the world" has forced him to develop a knack for solving problems that developers and maintainers typically don't see coming. Primarily specializing in HPC-related infrastructure management, he lives in a world of "except for on this cluster" and "except for in this context." This environment of asterisks has forced adaptability, which has translated into a lot of experience in diving into the weeds. He has spoken at several conferences in the PNW and nationwide, seeking to educate as well as to entertain. Originally a Portland native, he now lives in central Washington while working remotely for a company in Seattle.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Canonical, never happy with existing standards, wrote their own auto-installer just for Ubuntu. It has some "fun" usage, which we will cover in great detail. After this talk, you will be able to install Ubuntu Server with your hands tied behind your back, whether it be on a virtual machine or bare metal, with or without a network connection, in a datacenter or in your lap. We will also have some fun talking about the perplexing decisions that Canonical makes and some of the long-standing bugs in Subiquity, along with workarounds.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/2bnZSDi5Pcg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/2bnZSDi5Pcg" rel="nofollow">https://youtu.be/2bnZSDi5Pcg</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
297
schedule/presentation/306/index.html
Normal file
297
schedule/presentation/306/index.html
Normal file
|
|
@ -0,0 +1,297 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: The Kalpa Desktop, A Desktop for people that just want to get things done.</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: The Kalpa Desktop, A Desktop for people that just want to get things done.">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/306/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: The Kalpa Desktop, A Desktop for people that just want to get things done." />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">The Kalpa Desktop, A Desktop for people that just want to get things done.</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
329 | <span class="presentation-time" data-starttime="2025-07-31T15:00:00" data-endtime="2025-07-31T15:45:00">Thu 31 Jul 3 p.m.–3:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/ee9bbd05d9d63586be92d140d88859b1?s=120&d=mp" alt="Shawn W Dunn" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/465/index.html">Shawn W Dunn</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://mastodon.naturalorder.me/@sfalken">@sfalken@mastodon.naturalorder.me</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://sfalken.tech">https://sfalken.tech</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Shawn is the Lead Developer on the Kalpa Desktop <a href="https://kalpadesktop.org">https://kalpadesktop.org</a>, current openSUSE Board Member, and a long time openSUSE contributor, as a Moderator, Packager, and Maintainer.</p>
|
||||||
|
<p>Shawn also currently contributes to the Fedora project as a packager and maintainer, and is a past contributor to Fuduntu, Solus, Crunchbang, and many other FOSS projects.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Kalpa Desktop is a Plasma desktop derived from MicroOS, and Tumbleweed, providing a immutable system base, with a containerized workflow, through distrobox and podman, and Desktop applications via Flathub.</p>
|
||||||
|
<p>Kalpa grew out of the initial work by Richard Brown, with MicroOS Desktop, but has diverged over the past three years.</p>
|
||||||
|
<p>Kalpa's focus is on providing users with:
|
||||||
|
- A well-tested and current Plasma-Wayland desktop
|
||||||
|
- A minimal installation, without a bunch of applications you may not want or need
|
||||||
|
- Robust stability, through the use of atomic updates, no more broken updates
|
||||||
|
- Just a "Damn Good™" basic desktop installation, that's designed to <em>be</em> a desktop, and that's all</p>
|
||||||
|
<p>This presentation will present the current state of the Project, and examine the future roadmap for Kalpa Desktop.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/q8udoz55vaQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/q8udoz55vaQ" rel="nofollow">https://youtu.be/q8udoz55vaQ</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
305
schedule/presentation/308/index.html
Normal file
305
schedule/presentation/308/index.html
Normal file
|
|
@ -0,0 +1,305 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: A Hyperscaler’s operating system strategy: working with CentOS and Fedora</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: A Hyperscaler’s operating system strategy: working with CentOS and Fedora">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/308/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: A Hyperscaler’s operating system strategy: working with CentOS and Fedora" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">A Hyperscaler’s operating system strategy: working with CentOS and Fedora</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
329 | <span class="presentation-time" data-starttime="2025-07-31T16:30:00" data-endtime="2025-07-31T17:15:00">Thu 31 Jul 4:30 p.m.–5:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/00ce1b459eedb9e85d976cd6a15deced?s=120&d=mp" alt="Michel Lind" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/495/index.html">Michel Lind</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://hachyderm.io/@michelin">@michelin@hachyderm.io</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://michel-slm.name/">https://michel-slm.name/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Michel Lind (né Salim) is a Fedora contributor in various capacity (proven packager, packager sponsor, serving in leadership committees) since almost the beginning; CentOS Proposed Updates SIG co-chair and Hyperscale SIG contributor. He is alao a Debian Maintainer, and has contributed to openSUSE, Fink and MacPorts in a previous life.</p>
|
||||||
|
<p>In his day job, Michel is a Production Engineer on the Linux Userspace team at Meta, which is responsible for the CentOS Stream deployment on the production fleet.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/a155f72c31d87a5a1175a34dbd708c14?s=120&d=mp" alt="Davide Cavalca" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/473/index.html">Davide Cavalca</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Davide Cavalca is a Production Engineer at Meta on the Linux team. Davide has worked in the systems space for more than 15 years, always with a strong focus towards open source and automation. Davide serves on the CentOS Board of Directors, co-chairs the CentOS Hyperscale SIG and actively participates in a number of other SIGs to drive the project forward. Davide is also involved in Fedora, where he sits on the EPEL Steering Committee, and has helped drive the development of several major distribution features. Davide also sits on the Asahi Linux Governance Board and is actively involved in the project, where he helps develop Fedora Asahi Remix within the Asahi SIG in Fedora.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>When an organization's Linux deployment gets large enough, a curious emergent property appears - the incentives start to favor developing in-house Linux expertise, as opposed to outsourcing operating systems support to external vendors.</p>
|
||||||
|
<p>At the same time, given the scale involved, such organizations tend to prefer having a stable base to build on - thus the appeal of slower-moving enterprise distributions, except with in-house customizations on top.</p>
|
||||||
|
<p>In this talk we are going to discuss some of the choices we made at Meta for our Linux fleet, and the thought process behind that. We hope that organizations in a similar situation can benefit from our experience, and that community members whose interests are aligned can benefit from our contributions and consider participating in the community projects we are involved in.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/nKpAJCDUOBU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/nKpAJCDUOBU" rel="nofollow">https://youtu.be/nKpAJCDUOBU</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
288
schedule/presentation/311/index.html
Normal file
288
schedule/presentation/311/index.html
Normal file
|
|
@ -0,0 +1,288 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Mobile Gaming with FOSS</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Mobile Gaming with FOSS">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/311/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Mobile Gaming with FOSS" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Mobile Gaming with FOSS</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
327 | <span class="presentation-time" data-starttime="2025-07-31T16:30:00" data-endtime="2025-07-31T17:15:00">Thu 31 Jul 4:30 p.m.–5:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/72d2bdb2786e00a09b872eba4042f338?s=120&d=mp" alt="Edward Ly" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/463/index.html">Edward Ly</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://edward.ly/">https://edward.ly/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Dr. Edward Ly is a Portland, Oregon native who now works as a software engineer at Nextcloud as part of a team that develops ethical AI solutions and supports the greater Nextcloud and free software community. Previously, he obtained his Ph.D. in Computer Science and Engineering from the University of Aizu, where he conducted research on machine learning in digital audio signal processing applications and published his work as free software. He has also successfully given public talks at various academic research conferences (AES, EvoStar) and open source events (FOSSY, Nextcloud Community Conference), all while being openly autistic.</p>
|
||||||
|
<p>In his spare time, Edward enjoys playing video games, as well as occasionally producing electronic dance music and making DJ mixes (all with free software!).</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Mobile gaming is an industry that is rapidly growing to the point where it is now more popular (and profitable) than PC and console gaming combined. Yet, much of the well-known efforts to support gaming on Linux (e.g. emulators, compatibility layers, gaming-focused distributions) remains within the PC and console gaming spaces. This talk will briefly explain the state of mobile gaming today, as well as why and how FOSS game development should expand into the mobile sector. Whether you are a gamer or a developer (no matter your skill level), come join us to learn about the best mobile games you haven't heard yet or even how to get started developing one yourself!</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/ztA-tHtLpDQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/ztA-tHtLpDQ" rel="nofollow">https://youtu.be/ztA-tHtLpDQ</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
290
schedule/presentation/312/index.html
Normal file
290
schedule/presentation/312/index.html
Normal file
|
|
@ -0,0 +1,290 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: The Future of Fixing Technology</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: The Future of Fixing Technology">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/312/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: The Future of Fixing Technology" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">The Future of Fixing Technology</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
327 | <span class="presentation-time" data-starttime="2025-07-31T17:30:00" data-endtime="2025-07-31T18:15:00">Thu 31 Jul 5:30 p.m.–6:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/5ca795f06b3505f43bf7ba26fef37c7d?s=120&d=mp" alt="Denver Gingerich" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/509/index.html">Denver Gingerich</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://ossguy.com/">https://ossguy.com/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Denver is a software right-to-repair and standards activist who is currently Director of Compliance at Software Freedom Conservancy, where he enforces software right-to-repair licenses such as the GPL, and is also a director of the worker co-operative that runs JMP.chat, a FOSS phone number (texting/calling) service. Denver writes free software in his spare time: his patches have been accepted into Wine, Linux, and wdiff. Denver received his BMath in Computer Science from the University of Waterloo. He gives presentations about digital civil rights and how to ensure FOSS remains sustainable as a community and financially, having spoken at conferences such as FOSSY, SCALE, the Canadian Repair Convention, FOSDEM, SFSCON, CopyleftConf, LibrePlanet, LinuxCon North America, CopyCamp Toronto, FOSSLC's Summercamp, and the Open Video Conference.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Computers and the internet had the potential to neutralize existing power structures and bring true equality in access to knowledge and the ability to control technology to the masses. While some power structures have changed, new ones have emerged that threaten to undo the very fabric of modern society. These new power structures promote misinformation, put control of technology in the hands of an elite few, and prevent the masses from customizing or improving the devices that they rely on to communicate with the rest of the world.</p>
|
||||||
|
<p>In the early days of the internet, there was a feeling of excitement about its endless possibilities. There was a sense that it could indeed give us unfettered access to the best information available, and we could use that to improve our technology and our lives. However, events like the Eternal September and many less defined epochs showed that the internet on its own could not maintain its utopic promise. We needed a plan, a way of standing up to power structures and other influences, one that put critical thinking, cultural sensitivity, and user agency at the forefront.</p>
|
||||||
|
<p>The future of fixing our technology and adapting it to each of our individual unique needs and preferences could go a few different ways. In this talk, we'll explore the history of fixing our technology, where we're at now, and what it will take to make this individualized technology future a reality.</p>
|
||||||
|
<p>Among other topics, we'll discuss "the plan" for getting there, laying out a few concrete steps that we'll need to take to get where we want to go. Along the way we'll talk about how power structures get dismantled and rebuilt through technological change, and how we can collectively temper the seemingly inevitable swings between different factions of the wealthy elite controlling technology relied upon and available to the masses, so that we eventually approach the asymptote of actual freedom and agency in the computing realities of the average user.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/YiKAlrGM06c" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/YiKAlrGM06c" rel="nofollow">https://youtu.be/YiKAlrGM06c</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
289
schedule/presentation/313/index.html
Normal file
289
schedule/presentation/313/index.html
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Making P2P apps with Spritely Goblins</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Making P2P apps with Spritely Goblins">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/313/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Making P2P apps with Spritely Goblins" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Making P2P apps with Spritely Goblins</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-01T15:00:00" data-endtime="2025-08-01T15:20:00">Fri 01 Aug 3 p.m.–3:20 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/d563f2e972b49b4779a15fd716845eae?s=120&d=mp" alt="Diana Belle" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/433/index.html">Diana Belle</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://friend.camp/@garbados">@garbados@friend.camp</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://blog.bovid.space">https://blog.bovid.space</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Diana is a distributed systems dweeb with opinions about timestamps and gravity waves. She codes tooling, apps, and video games, as well as writes essays, fiction, and poetry. She resides in the Pacific Northwest with her partners.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>The Spritely Institute has been working hard on a distributed systems programming library called Goblins, whose cleverness simplifies all the difficult parts of getting multiplayer code right. How different is a multiplayer game from a peer-to-peer app, really? Let's dive in and I'll show you how to get involved with this emerging technology, whether in Scheme, or JavaScript!</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/O75_GBFOmtE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/O75_GBFOmtE" rel="nofollow">https://youtu.be/O75_GBFOmtE</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
289
schedule/presentation/314/index.html
Normal file
289
schedule/presentation/314/index.html
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: The Subtle Art of Lying with Statistics</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: The Subtle Art of Lying with Statistics">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/314/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: The Subtle Art of Lying with Statistics" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">The Subtle Art of Lying with Statistics</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-07-31T16:30:00" data-endtime="2025-07-31T17:15:00">Thu 31 Jul 4:30 p.m.–5:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/656386e71dc97e0cb9bc0f8cd62e6e53?s=120&d=mp" alt="Dave McAllister" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/442/index.html">Dave McAllister</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/dwmcallister">@dwmcallister</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Currently providing open source technical evangelism for NGINX, Dave works with DevOps, developers and architects to understand the advantages of modern architectures and orchestration to solve large-scale distributed systems challenges, using open source and its innovation. Dave has been a champion for open systems and open source from the early days of Linux to today's world of OpenTelemetry and observability. </p>
|
||||||
|
<p>Dave was named as one of the top ten pioneers in open source by Computer Business Review, having cut his teeth on Linux and compilers before the phrase "open source" was coined. Well-versed in trivia, he won a Golden Penguin in 2002. When he's not talking, you can find him hiking with his trusty camera, trying to keep up with his wife.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>"Lies, damned lies and statistics." While true, only statistics allow you to lie to yourself.</p>
|
||||||
|
<p>Let's explore how statistics can sometimes trick us into believing something untrue. This isn't always done intentionally; we mislead ourselves without realizing it. We'll look at how focusing solely on recent events, choosing specific data to look at, and making assumptions about the size of a group can lead us to the wrong conclusions. We'll show examples of how graphs and numbers can be used in misleading ways. The presentation aims to teach you to look at statistics more critically, understand their limits, and avoid fooling yourself with numbers.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/_K6k4gpe1cY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/_K6k4gpe1cY" rel="nofollow">https://youtu.be/_K6k4gpe1cY</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
289
schedule/presentation/316/index.html
Normal file
289
schedule/presentation/316/index.html
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Making Esoteric Beauty Accessible: Befunge in 2025</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Making Esoteric Beauty Accessible: Befunge in 2025">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/316/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Making Esoteric Beauty Accessible: Befunge in 2025" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Making Esoteric Beauty Accessible: Befunge in 2025</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-02T15:00:00" data-endtime="2025-08-02T15:25:00">Sat 02 Aug 3 p.m.–3:25 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/a686ff6db23e7626f700a8215594b698?s=120&d=mp" alt="Robin Brown" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/437/index.html">Robin Brown</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://esoterra/@https://hachyderm.io/">@https://hachyderm.io/@esoterra</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://esoterra.dev">https://esoterra.dev</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Robin Brown is a software engineer, WebAssembly expert, compiler nerd, esoteric programming language enthusiast, and fan of indie rock, emo, and folk punk.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Befunge is a 2-dimensional esoteric programming language that is stack-based with an emphasis on code being able to modify itself at runtime. It was designed to be hard to compile and entertaining. While even the most well-written Befunge looks obfuscated, with the right tools we can visualize and make accessible its concepts and strange beauty. Join Robin Brown as she teaches the basics of Befunge using new interactive tools and talks briefly about its past and future.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/aTY-uq-cSf8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/aTY-uq-cSf8" rel="nofollow">https://youtu.be/aTY-uq-cSf8</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
287
schedule/presentation/318/index.html
Normal file
287
schedule/presentation/318/index.html
Normal file
|
|
@ -0,0 +1,287 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: GNU/Linux Loves All</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: GNU/Linux Loves All">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/318/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: GNU/Linux Loves All" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">GNU/Linux Loves All</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-01T14:00:00" data-endtime="2025-08-01T14:45:00">Fri 01 Aug 2 p.m.–2:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/7bd72e1c886b2c5d19d28fa12fed3f92?s=120&d=mp" alt="Timmy James Barnett" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/476/index.html">Timmy James Barnett</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://gnulinux.love">https://gnulinux.love</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Timmy James Barnett is passionate about the philosophy of FLO (Free/Libre/Open) software. He is happy to be using GNU/Linux and FLO software he wrote for his performances with GNU/Linux Loves All and !mindparade. He loves to tell others about his great experiences with FLO software. Timmy's music is inspired by FLO technologies including GNU/Linux, Matthew Autry's skip-fretting, and Kite guitar. These technologies have connected him with older notes that have been covered up by modern standard tuning. Rather than being limited to just one tuning, Timmy's music is inspired by both the harmonic series and various edos beyond just 12edo (known as standard tuning). He finds a unique sound from the intersection between ancient tuning theory, modern music technology, and a FLO philosophy.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>GNU/Linux Loves All is an experience that makes microtonal music accessible through FLO software. Timmy writes FLO software music tools for all people. At this concert, you will hear musical intervals from across millennia on violin, microtonal guitar, and microtonal keyboards, running through FLO software music tools on GNU/Linux, the greatest operating system of all time.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/LeWUggZnT9Y" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/LeWUggZnT9Y" rel="nofollow">https://youtu.be/LeWUggZnT9Y</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
287
schedule/presentation/319/index.html
Normal file
287
schedule/presentation/319/index.html
Normal file
|
|
@ -0,0 +1,287 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: BlueHats: Public servant advocates for software freedom</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: BlueHats: Public servant advocates for software freedom">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/319/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: BlueHats: Public servant advocates for software freedom" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">BlueHats: Public servant advocates for software freedom</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-02T15:25:00" data-endtime="2025-08-02T15:45:00">Sat 02 Aug 3:25 p.m.–3:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/a464826403d1b78bb3f8fbf6a86791ab?s=120&d=mp" alt="Michael Downey" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/480/index.html">Michael Downey</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://downey/@https://floss.social/">@https://floss.social/@downey</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Michael Downey is an international civil servant, working on free & open source software programs for the world's largest international development agency. He has been involved in FOSS for several decades, as a user of, advocate for, and contributor to many free software projects. He helped lead OpenMRS, for which he accepted the FSF Award for Projects of Social Benefit in 2013, and has served on multiple project and nonprofit boards. Michael holds two undergraduate engineering degrees and his doctoral research focused on cross-cultural computer supported cooperative work.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>BlueHats is a worldwide community of public servants (teachers, researchers and other government workers, etc.) who promote FOSS use in, by, and for the public sector. BlueHats believe that tax money spent on software development should result in Free Software, and they support the principle of "public money, public code". All public servants around the world are invited to join this movement, so come and learn more about the movement and help us spread the word!</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/NdU-4J313n8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/NdU-4J313n8" rel="nofollow">https://youtu.be/NdU-4J313n8</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
285
schedule/presentation/320/index.html
Normal file
285
schedule/presentation/320/index.html
Normal file
|
|
@ -0,0 +1,285 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Reversing Metcalfe's Law: undermining the software-service–industrial complex with .zip files</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Reversing Metcalfe's Law: undermining the software-service–industrial complex with .zip files">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/320/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Reversing Metcalfe's Law: undermining the software-service–industrial complex with .zip files" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Reversing Metcalfe's Law: undermining the software-service–industrial complex with .zip files</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-02T17:30:00" data-endtime="2025-08-02T18:15:00">Sat 02 Aug 5:30 p.m.–6:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/3ca112e70c96f0995e6c22d629065a9d?s=120&d=mp" alt="Nathan Willis" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/409/index.html">Nathan Willis</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Nathan Willis is a type designer and consultant who arguably spends too much of his time thinking about personal-data exports, linkrot, and the use of conjunctions in software documentation. He currently owns no pets, and is using predictive next to complete this sentence to reach the recommended word-count; and I don't know what to do so I can find out if you can get a chance to chat with me about it on the way home till after 6pm pm but I will be there in a few minutes until the last time I get home I think that I can find out if you can get a chance to chat with me about it on the way home.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Portability and data sovereignty are often touted as critical principles for ensuring user privacy in the age of always-connected Internet services: the ability to archive and export your information ensures that you cannot be held captive by a provider that falls short on ethics or security. The tricky bit comes when users attempt to unpack this exported data and put it to proper use. This talk examines the free-software tools available to access common exported data sets and addresses the complexities faced when re-purposing account data or transforming it for use in free systems. Emphasis is placed on how desktop Linux distributions and server-side free-software networks could provide a better and more integrated experience. Datasets examined include email, messaging, media, bookmarks and favorites from discussion forums, geolocation history, health records, contacts and calendars, and social media posts.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/aFSHSzlqpGM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/aFSHSzlqpGM" rel="nofollow">https://youtu.be/aFSHSzlqpGM</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
301
schedule/presentation/321/index.html
Normal file
301
schedule/presentation/321/index.html
Normal file
|
|
@ -0,0 +1,301 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: open source for fun and profit</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: open source for fun and profit">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/321/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: open source for fun and profit" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">open source for fun and profit</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-07-31T17:30:00" data-endtime="2025-07-31T18:15:00">Thu 31 Jul 5:30 p.m.–6:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/e5529aaf1b527aa9e0bdcd2dc256437d?s=120&d=mp" alt="Milo Oien-Rochat" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/467/index.html">Milo Oien-Rochat</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://github.com/nikolarobottesla/">https://github.com/nikolarobottesla/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Milo is fighting for open source and sustainability from inside the machine. He has open sourced two 3M projects: gitpyup and plotme. 3M open source code can be found at <a href="https://github.com/3mcloud">https://github.com/3mcloud</a> He contributes back to the projects he uses. For example he added a missing feature in ezdxf and fixed a bug in pyaedt. He is planting seeds within 3M to support open source financially.</p>
|
||||||
|
<p>At home, Milo is a Linux and self-hosting enthusiast. He runs NixOS and shares his flake with desktop and server configurations on GitHub under an MIT licence.</p>
|
||||||
|
<p>Away from screens, Milo cooks creatively, sings in a choir and walks in the woods.</p>
|
||||||
|
<p>Social media is real bad so Milo can be found on GitHub where he donates to Bazzite, KDE and GrapheneOS.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Learn how to convince your employer to open source internal projects and how to effectively contribute to open source projects while at work. I will share examples of open sourced projects and contributions to existing projects from my work at 3M Company.</p>
|
||||||
|
<p>This talk will cover exciting topics such as.
|
||||||
|
* Employee contracts
|
||||||
|
* Find/set up an open source watering hole
|
||||||
|
* Do your homework/arrive with a plan
|
||||||
|
* Your attorney is a person too
|
||||||
|
* Pro/con lists
|
||||||
|
* The odds are in your favor
|
||||||
|
* Get good at Git
|
||||||
|
* Remove sensitive data (like email addresses) from git repos
|
||||||
|
* Make friends in IT
|
||||||
|
* Set a trend make a friend</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/5HOJwWAAEmk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/5HOJwWAAEmk" rel="nofollow">https://youtu.be/5HOJwWAAEmk</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
283
schedule/presentation/323/index.html
Normal file
283
schedule/presentation/323/index.html
Normal file
|
|
@ -0,0 +1,283 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: How to Hold It Together When It All Falls Apart: Surviving a Toxic Open Source Project Without Losin</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: How to Hold It Together When It All Falls Apart: Surviving a Toxic Open Source Project Without Losin">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/323/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: How to Hold It Together When It All Falls Apart: Surviving a Toxic Open Source Project Without Losin" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">How to Hold It Together When It All Falls Apart: Surviving a Toxic Open Source Project Without Losin</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-01T15:25:00" data-endtime="2025-08-01T15:45:00">Fri 01 Aug 3:25 p.m.–3:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/5dcb1d1b0ef3b2cc32df192995c6e518?s=120&d=mp" alt="Cami Kaos" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/491/index.html">Cami Kaos</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://camikaos.com/">https://camikaos.com/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Cami Kaos has spent more than a decade wrangling open source communities, moderating mayhem, and gently coaxing chaos into collaboration. She’s led WordPress community efforts, championed DEIB strategies, and survived more Slack threads than is medically advisable. A frequent speaker and mentor, Cami combines strategic know-how with humor, heart, and just enough existential dread to keep things interesting. When not navigating the emotional rollercoaster of community management, she lives and plays in the great city of Portland, Oregon.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>I love open source. I always have. I’ve spent more than a decade building, managing, and advocating for open source communities—through mentorship, moderation, DEIB strategy, support tickets, and everything in between. It’s been one of the great loves of my career. But at some point, I found myself in a project where the openness was performative, the source of truth was... well, interpretive, and the community slowly, quietly, turned toxic.</p>
|
||||||
|
<p>This talk isn’t a revenge arc or a cautionary tale told with pitchforks. It’s a survival guide—and a personal one. Inspired in part by Pema Chödrön’s When Things Fall Apart, it’s about finding groundlessness in a place that once felt solid, and learning how to stay present and compassionate even when the community you helped build begins to crumble around you.</p>
|
||||||
|
<p>We’ll explore:</p>
|
||||||
|
<p>The subtle warning signs of a community in distress</p>
|
||||||
|
<p>What “toxic” actually looks like in open source (hint: it’s often quiet and polite)</p>
|
||||||
|
<p>The emotional labor of community leadership, especially when you’re the one holding everything together</p>
|
||||||
|
<p>How to create space for your own wellbeing while still honoring your values</p>
|
||||||
|
<p>And, yes—how to begin again. How to grieve a project, rediscover joy, and fall back in love with open source, on your terms.</p>
|
||||||
|
<p>If you've ever asked yourself, “Is it me? Or is this project slowly draining the life out of me?”—this talk is for you. Spoiler: It’s not just you. Let’s talk about what happens when things fall apart—and how we hold it together anyway.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
289
schedule/presentation/324/index.html
Normal file
289
schedule/presentation/324/index.html
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: The Cathedral and the Bizarre, or Dual-Booting for Fun and Prophet: Using Linux to Enhance TempleOS</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: The Cathedral and the Bizarre, or Dual-Booting for Fun and Prophet: Using Linux to Enhance TempleOS">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/324/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: The Cathedral and the Bizarre, or Dual-Booting for Fun and Prophet: Using Linux to Enhance TempleOS" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">The Cathedral and the Bizarre, or Dual-Booting for Fun and Prophet: Using Linux to Enhance TempleOS</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-01T16:30:00" data-endtime="2025-08-01T17:15:00">Fri 01 Aug 4:30 p.m.–5:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/4ff768bee24c09f7ef8dfde4c4e9d184?s=120&d=mp" alt="Toby Betts" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/492/index.html">Toby Betts</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://xenotrope/@https://bsd.network/web/">@https://bsd.network/web/@xenotrope</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://su.bze.ro/talks.html">https://su.bze.ro/talks.html</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Toby Betts has been breaking and, when possible, fixing computers since childhood. He has worked as a system administrator, a service engineer, a site reliability engineer, and a free and open source software consultant for mid- to large-sized businesses for over 25 years. His main interests are system security, free cryptography, and fun file systems.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Dual-booting is a useful method to run two operating systems on the same machine. Different OSes might help you harness the full potential of your hardware, or it may be necessary because of software limitations. It lets you tailor your computing experience to your own unique needs. Yet few people run different operating systems from the same disk partition, where both OSes coexist in the same place in the same file system. This talk will outline the steps to combine Linux with another open source OS known as TempleOS in a very small amount of disk space, and how blending them together can create a unique and fun programming experience.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/Rafvtlijr9g" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/Rafvtlijr9g" rel="nofollow">https://youtu.be/Rafvtlijr9g</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
290
schedule/presentation/325/index.html
Normal file
290
schedule/presentation/325/index.html
Normal file
|
|
@ -0,0 +1,290 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: DRM, security, or both? How do we decide?</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: DRM, security, or both? How do we decide?">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/325/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: DRM, security, or both? How do we decide?" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">DRM, security, or both? How do we decide?</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-02T11:45:00" data-endtime="2025-08-02T12:30:00">Sat 02 Aug 11:45 a.m.–12:30 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/880491dea715eedb91f4a66686d8e355?s=120&d=mp" alt="Matthew Garrett" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/498/index.html">Matthew Garrett</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://nondeterministic.computer/@mjg59">@mjg59@nondeterministic.computer</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/Oh come on">@Oh come on</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Matthew is a long-term free software advocate, Linux developer, and low-level system poker. He is especially interested in identifying ways to use technology to protect users without restricting their freedoms, and is a passionate advocate in users having the right to modify systems they own.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>An easy way to define malware is "Software that I don't want running on my computer". And one way to ensure that you're protected from malware would be to ensure that your computer only runs software you want to run. But how is technology that allows that different to technology that allows someone <em>else</em> to choose what software your computer runs? Someone who isn't necessarily motivated by your best interests? How do we decide what is security, and how do we decide what is DRM?</p>
|
||||||
|
<p>This presentation will cover various technologies that allow general purpose computers to become less general purpose, and discuss whether they are of net benefit to users or a net risk to their freedoms. It will discuss whether TPMs are actually locking you down, whether secure boot has been a success or a failure, how immutable distros and app packaging play into this, and give you some hope that we can take the tools that were made to restrict us and repurpose them to protect us.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/ngMPsMk5OWU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/ngMPsMk5OWU" rel="nofollow">https://youtu.be/ngMPsMk5OWU</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
293
schedule/presentation/326/index.html
Normal file
293
schedule/presentation/326/index.html
Normal file
|
|
@ -0,0 +1,293 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Is There Really an SBOM Mandate?</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Is There Really an SBOM Mandate?">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/326/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Is There Really an SBOM Mandate?" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Is There Really an SBOM Mandate?</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-07-31T14:00:00" data-endtime="2025-07-31T14:45:00">Thu 31 Jul 2 p.m.–2:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/0580d7a67da1b15b1695edc4e22779f9?s=120&d=mp" alt="Bradley M. Kuhn" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/506/index.html">Bradley M. Kuhn</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://floss.social/@bkuhn">@bkuhn@floss.social</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Bradley M. Kuhn is the Policy Fellow at Software Freedom Conservancy (SFC). Kuhn began his work software freedom movement in 1992, as an early adopter of Linux systems & contributor to various FOSS projects, including Perl. Kuhn was FSF’s Executive Director from 2001–2005, began as SFC’s primary volunteer from 2006–2010, and became SFC's first staff person in 2011. Kuhn's work focuses on enforcement of the GPL agreements, FOSS licensing policy, and infrastructural solutions for FOSS.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>A consistent mantra of the Software Bill Of Materials (SBOM) ballyhoo is
|
||||||
|
that various government entities around the world have mandated SBOMs in
|
||||||
|
various different places. From USA POTUS Executive Orders, to EU Directives,
|
||||||
|
to USA NIST whitepapers — it's often been repeated that these various
|
||||||
|
sources mandate SBOMs as a mandatory requirement.</p>
|
||||||
|
<p>Let's look at the source material and find out what these various orders and
|
||||||
|
directives actually say, and figure out what's really mandated.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/v6_L-sN7NR8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/v6_L-sN7NR8" rel="nofollow">https://youtu.be/v6_L-sN7NR8</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
306
schedule/presentation/327/index.html
Normal file
306
schedule/presentation/327/index.html
Normal file
|
|
@ -0,0 +1,306 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Never Mind the Checkboxes, Here's Reproducible Builds!</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Never Mind the Checkboxes, Here's Reproducible Builds!">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/327/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Never Mind the Checkboxes, Here's Reproducible Builds!" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Never Mind the Checkboxes, Here's Reproducible Builds!</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-02T10:45:00" data-endtime="2025-08-02T11:30:00">Sat 02 Aug 10:45 a.m.–11:30 a.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/f3de796d6473451dfc362d3e5e0a250b?s=120&d=mp" alt="Vagrant Cascadian" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/511/index.html">Vagrant Cascadian</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://vagrantc/@https://floss.social/">@https://floss.social/@vagrantc</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://www.aikidev.net">https://www.aikidev.net</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Vagrant strives to make Reproducible Builds a best practices reality for everyone. Vagrant discovered free software late last millenia and has been contributing to free software since the beginning of this millenia. A long-time Debian Developer and contributor to Guix, tinkering with ARM and RISC-V systems. At Portland's Free Geek, Vagrant dove into life as a free software developer, rebuilding electronic waste with FOSS, modifying or developing new software as needed. That led to exciting work helping coordinate LTSP development shared between several different operating systems. That sense of open collaboration has been a life-long habit. Vagrant contrasts spending too much time on computers with bicycle commuting, aikido and a DIY solar hobby.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/f722f7ee1d7565b37aec4a588f584459?s=120&d=mp" alt="Chris Lamb" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/523/index.html">Chris Lamb</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://chris-lamb.co.uk/">https://chris-lamb.co.uk/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Chris has been an official Debian Developer since 2008 and is a core team member of the Reproducible Builds project. He is a former 'DPL' of the Debian project as well as a member of Board of Directors for the Open Source Initiative (OSI). A recent immigrant to the United States, Chris is the author of dozens of small free-software projects and a contributor to 100s of others, but in his spare time he is an avid classical musician, calligrapher and is slowly working towards a sommelier certification.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>There are numerous policy compliance and regulatory processes being developed that target software development... but do they solve actual problems? Does it improve the quality of software? Do Software Bill of Materials (SBOMs) actually give you the information necessary to verify how a given software artifact was built? What is the goal of all these compliance checklists anyways... or more importantly, what <em>should</em> the goals be? If a software object is signed, who should be trusted to sign it, and can they be trusted ... forever?</p>
|
||||||
|
<p>Could you imagine a world with many bureaucratic compliance checks being replaced with verifiable processes performed by arbitrary third parties?</p>
|
||||||
|
<p>Let me introduce you to Reproducible Builds, a set of best practices which allow you to verify that software artifacts were built from the source code, allowing auditing for license compliance, providing security benefits, and remove the need to trust arbitrary software vendors.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/IA2IM8cuqRk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/IA2IM8cuqRk" rel="nofollow">https://youtu.be/IA2IM8cuqRk</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
295
schedule/presentation/328/index.html
Normal file
295
schedule/presentation/328/index.html
Normal file
|
|
@ -0,0 +1,295 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Reimagining Online Deliberation: Why Open Source is Critical for Civic Infrastructure</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Reimagining Online Deliberation: Why Open Source is Critical for Civic Infrastructure">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/328/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Reimagining Online Deliberation: Why Open Source is Critical for Civic Infrastructure" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Reimagining Online Deliberation: Why Open Source is Critical for Civic Infrastructure</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-01T11:45:00" data-endtime="2025-08-01T12:30:00">Fri 01 Aug 11:45 a.m.–12:30 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/05861e776371b2a106f9b7b4faf07611?s=120&d=mp" alt="Samantha Shireman" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/517/index.html">Samantha Shireman</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://frankly.org">https://frankly.org</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Samantha Shireman develops technology that helps people break through the digital walls that divide them. Within Harvard’s Applied Social Media Lab, she serves as the product manager for Frankly (<a href="http://frankly.org">frankly.org</a>), an open-source video platform that enables people to engage in deliberation, assemblies, and other forms of constructive discourse and problem-solving.</p>
|
||||||
|
<p>Previously, as Director of Product at <a href="http://AllSides.com">AllSides.com</a>, she helped build many products intended to help people understand diverse perspectives and enable healthy communication across ideological divides.
|
||||||
|
|
||||||
|
She earned her degree in cognitive science from UC Berkeley, where she spent a lot of time thinking about thinking. She first earned her tech chops in middle school when, out of necessity, she taught herself HTML and CSS to create web pages for her Neopets.</p>
|
||||||
|
<p>When not working to strengthen democracy, Samantha enjoys puzzles, good food, cocktails, and the occasional rabbit hole into psychology research. She and her spouse live in El Cerrito, CA in an apartment building they and a few friends purchased together to end-run SF bay area housing costs. They live with their cat GABA, appropriately named after a neurotransmitter.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>What if the tools we use for civic engagement were as common as Google Docs, but built on open source principles? In today's polarized digital landscape, creating space for thoughtful, inclusive dialogue is more critical than ever.</p>
|
||||||
|
<p>Within Harvard's Berkman Klein Center, our Applied Social Media Lab is building Frankly, an open source video-based discourse platform that structures online face-to-face conversations for meaningful outcomes.
|
||||||
|
It combines intelligent group matching with embedded discussion prompts, enabling balanced groups to navigate complex topics without facilitators in order to make constructive discourse and collaborative decision-making accessible and scalable.</p>
|
||||||
|
<p>This session explores how we’re rethinking online discourse to better support civic engagement and social connection, and why democratic infrastructure must be built on open source principles. Open source enables adaptability to different contexts, ensures longevity beyond any single institution, and provides the scrutinizability necessary for legitimate public discourse.</p>
|
||||||
|
<p>By open-sourcing Frankly and collaborating with practitioners, we're developing civic technology that is transparent, adaptable, and grounded in dialogue expertise. As we increasingly make collective decisions in digital spaces, building deliberative infrastructure on open foundations isn't just technically superior—it's democratically essential.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/FS2grOhD-6o" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/FS2grOhD-6o" rel="nofollow">https://youtu.be/FS2grOhD-6o</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
293
schedule/presentation/329/index.html
Normal file
293
schedule/presentation/329/index.html
Normal file
|
|
@ -0,0 +1,293 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Open Source Software in Higher Education: A Community Report</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Open Source Software in Higher Education: A Community Report">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/329/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Open Source Software in Higher Education: A Community Report" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Open Source Software in Higher Education: A Community Report</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
329 | <span class="presentation-time" data-starttime="2025-08-02T10:45:00" data-endtime="2025-08-02T11:30:00">Sat 02 Aug 10:45 a.m.–11:30 a.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/fa1314a7ff59cc080caa13d08e8af83e?s=120&d=mp" alt="Patrick Masson" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/416/index.html">Patrick Masson</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://fosstodon.org/@massonpj">@massonpj@fosstodon.org</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/- -">@- -</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://pmasson.wordpress.com/">https://pmasson.wordpress.com/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Patrick joined Apereo as Executive Director in 2023, serving previously as Interim General Manager of the Foundation. Before Apereo, Patrick served as General Manager for the Open Source Initiative after working within higher education IT for over twenty years, including roles as CIO within the State University of New York and CTO at the University of Massachusetts' Office of the President. He was the Director of Technology at the SUNY Learning Network and the UCLA Media Lab.</p>
|
||||||
|
<p>Patrick is an adjunct instructor with SUNY Albany's College of Computing and Information and speaks frequently on topics related to open source software, open education, and educational technology. Patrick is the co-founder of EDUCAUSE's "Openness" Constituency Group and served on his local school board from 2014-2018.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Reports highlighting the adoption of open source software (OSS) are ubiquitous. Yet studies specific to higher education are limited, perhaps leaving campuses unprepared to manage their edtech portfolios.</p>
|
||||||
|
<p>The Apereo Foundation, in partnership with other open source software foundations and global universities, will present preliminary data from the Open Source Software in Higher Education Community Report. This report offers unique insights into the perceptions of OSS discovered through a survey of IT leaders undertaken at EDUCAUSE 2025, as well as the prevalence of OSS in use across academic enterprises through profiling and analysis of .edu domains. The 2025 data is then compared to historical data to provide historical trends, compare current practices, and identify areas of future impact.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/WS7KOtGIhNU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/WS7KOtGIhNU" rel="nofollow">https://youtu.be/WS7KOtGIhNU</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
291
schedule/presentation/330/index.html
Normal file
291
schedule/presentation/330/index.html
Normal file
|
|
@ -0,0 +1,291 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Nurturing the Next Generation of Open Source Contributors</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Nurturing the Next Generation of Open Source Contributors">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/330/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Nurturing the Next Generation of Open Source Contributors" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Nurturing the Next Generation of Open Source Contributors</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
329 | <span class="presentation-time" data-starttime="2025-08-01T14:00:00" data-endtime="2025-08-01T14:45:00">Fri 01 Aug 2 p.m.–2:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/f08a209cc18b45478bcf963761e09329?s=120&d=mp" alt="Tyler Menezes" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/421/index.html">Tyler Menezes</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/tylermenezes">@tylermenezes</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://www.tyler.vc/">https://www.tyler.vc/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Tyler Menezes is the CEO of CodeDay, where he has helped more than 70,000 students use technology and creativity to make meaningful changes to their world.
|
||||||
|
Born in Canada but raised in the Pacific Northwest, he briefly attended the University of Washington before dropping out to start a Y Combinator and venture-backed social video startup in 2011. This, combined with stints working in machine learning at Microsoft Research and as a programmer at several Seattle startups, led to his work finding data-driven solutions to build a more talented, creative, and innovative technology workforce since 2014.</p>
|
||||||
|
<p>Tyler's work in education has led to his recognition as one of Forbes Magazine's "30 Under 30" in 2019, Forbes "Under 30 Innovators You Need to Know", Tech&Learning Magazine's "Most Inspiring in EdTech", and others. He has authored many peer-reviewed publications on CS education, served as Principal Investigator on National Science Foundation awards for STEM education, and has spoken about technical mentorship at leading software engineering and education conferences around the world.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Many open source projects are grappling with a crucial issue: finding future contributors and maintainers. This talk explores the hurdles and solutions in bridging academia and open source. We discuss what mental barriers students face when it comes to coding and contributing to open source, how to craft mentorship resources, and what resources projects need to build lasting relationships with students.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/YVLm_fYxCOE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/YVLm_fYxCOE" rel="nofollow">https://youtu.be/YVLm_fYxCOE</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
309
schedule/presentation/333/index.html
Normal file
309
schedule/presentation/333/index.html
Normal file
|
|
@ -0,0 +1,309 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: HAX Lab: FOSS community becomes the classroom</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: HAX Lab: FOSS community becomes the classroom">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/333/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: HAX Lab: FOSS community becomes the classroom" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">HAX Lab: FOSS community becomes the classroom</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
329 | <span class="presentation-time" data-starttime="2025-08-02T15:00:00" data-endtime="2025-08-02T15:45:00">Sat 02 Aug 3 p.m.–3:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/a7fb7ea999fa93ee6c34445dbe95b150?s=120&d=mp" alt="Bryan T Ollendyke" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/412/index.html">Bryan T Ollendyke</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="index.html">@btopro</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/btopro">@btopro</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://hax.psu.edu">https://hax.psu.edu</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Educator and Full time Open source front-end developer at Penn State. Bryan's life is open source web contribution. He is the lead of the HAX community. HAX The Web is an effort to "hack" the way the world works with the web by making web authoring ubiquitous for all users, regardless of skill and ability. Treat the web like a file format and make high quality, accessible, fast, usable tools for anyone to self publish.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>This talk is a case study in how fusing open source contribution with classroom teaching can directly lead to increases in contributors and improved developer experience! DX often comes down to new users being able to figure out your software and students learning new technologies provide a great basis for building around.</p>
|
||||||
|
<p>HAX Lab is a collaboration between multiple colleges at Penn State. Information Sciences and Technology crossed with Arts and Architecture, has provided a playground to grow and sustain open source in a unique way I'd love to share. Now there is an IST course (256) that teaches students modern web development through direct and indirect contribution to the platform, HAX Lab, HAX The Club, and collaborations across clubs directly and indirectly improving the ecosystem! You can learn more about the Student Innovation Pipeline here: <a href="https://haxtheweb.org/hax-lab/student-innovation-pipeline">https://haxtheweb.org/hax-lab/student-innovation-pipeline</a></p>
|
||||||
|
<p>Direct contribution:
|
||||||
|
- Labs solve entry level problems in the ecosystem
|
||||||
|
- Course capstone projects help contribute to larger needs in the community
|
||||||
|
- HAX Lab allows students to go further via internships and independent studies
|
||||||
|
- a student driven HAX Club allows them to take their knowledge to application in the larger university community</p>
|
||||||
|
<p>Indirect:
|
||||||
|
- Students use the HAX cli in order to learn about modern web tooling. This provides DX feedback to our community
|
||||||
|
- Students often keep contributing afterwards by creating sites on the platform
|
||||||
|
- Several students have continued to contribute in the years after the course
|
||||||
|
- Other groups internally are writing HAX into grants and building business plans that incorporate HAX unique capabilities</p>
|
||||||
|
<p>What you'll learn:
|
||||||
|
- How our pipeline works
|
||||||
|
- Contribution timelines, scale, and quality of contributions
|
||||||
|
- Examples of additional ways to engage student communities to increase contributions
|
||||||
|
- How you can get involved with HAX and use it in your community</p>
|
||||||
|
<p>More about HAX:
|
||||||
|
HAX is short for Headless Authoring eXperience, it is a web based ecosystem that makes it easier to build websites and then provides website-tonight style click and build software that you can take with you, download, and remix easily. It was an idea and approach to make it easier to develop web content online.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/jeRq7rEXg3I" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/jeRq7rEXg3I" rel="nofollow">https://youtu.be/jeRq7rEXg3I</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
286
schedule/presentation/334/index.html
Normal file
286
schedule/presentation/334/index.html
Normal file
|
|
@ -0,0 +1,286 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: A Multi-Campus Survey of Open Source Contributors at the University of California</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: A Multi-Campus Survey of Open Source Contributors at the University of California">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/334/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: A Multi-Campus Survey of Open Source Contributors at the University of California" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">A Multi-Campus Survey of Open Source Contributors at the University of California</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
329 | <span class="presentation-time" data-starttime="2025-08-02T16:30:00" data-endtime="2025-08-02T17:15:00">Sat 02 Aug 4:30 p.m.–5:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/052490033edbad50be77ee78a70ad71e?s=120&d=mp" alt="Virginia Scarlett" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/456/index.html">Virginia Scarlett</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Virginia's early career consisted of original research in plant biology related to biofuels, and she received her PhD in plant biology from the University of California (UC) Berkeley in 2022. Towards the end of graduate school, her interest in open science led her to shift her focus from biological research to research support. From 2022-2024, she was the Open Data Specialist at the Howard Hughes Medical Institute's Janelia research campus, where she advised researchers on data management, and was the primary author of a strategic report on the institute's data management strategies. In February 2024, she became the Open Source Programs Specialist at the UC Santa Barbara Library. In this role, she is conducting discovery work for the UC OSPO Network Project, an initiative funded by the Alfred P. Sloan foundation to expand open source support services at the University of California.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Once considered a radical experiment, open source is now ubiquitous in the modern technology landscape, and appears to be here to stay. In the technology industry, the Open Source Program Office (OSPO) is a common way to centralize a company’s open source strategy, knowledge, and diligence. Meanwhile, OSPOs are just beginning to take root in academia. This shift reflects the increased recognition by universities and other organizations that academic open source contributions are valuable, numerous, and worth sustaining. While guidance for university OSPOs is emerging, many questions remain about how academic support staff and their partners can best support their university’s strategic priorities and their community’s needs.</p>
|
||||||
|
<p>The University of California (UC) OSPO Network is a groundbreaking project to establish a highly collaborative network of OSPOs at UC campuses. We in the UC OSPO Network are working to develop infrastructure for open source education, discovery, and sustainability at UC by pooling our resources and knowledge. To develop our strategic priorities and to assess the state of UC open source, we conducted a survey in April 2025 of more than 180 UC-affiliated open source contributors. This survey reveals common challenges faced by open source contributors, as well as potential remedies to those challenges. In addition to soliciting contributor perspectives, the survey also solicited contributors’ GitHub usernames, which we are now using to analyze UC open source repositories and their characteristics. Our survey will inform other UC OSPO network projects, promote community among open source enthusiasts at UC, and serve as a template that other universities may draw from. This study will shed light on how and why academics contribute to open source projects, as well as some of the barriers that might be holding them back.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/fFoLmb6o7Z8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/fFoLmb6o7Z8" rel="nofollow">https://youtu.be/fFoLmb6o7Z8</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
289
schedule/presentation/335/index.html
Normal file
289
schedule/presentation/335/index.html
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Discussion: Which Way Do We Go? Understanding Sustainable Pathways for Academic Open Source</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Discussion: Which Way Do We Go? Understanding Sustainable Pathways for Academic Open Source">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/335/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Discussion: Which Way Do We Go? Understanding Sustainable Pathways for Academic Open Source" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Discussion: Which Way Do We Go? Understanding Sustainable Pathways for Academic Open Source</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
329 | <span class="presentation-time" data-starttime="2025-08-01T10:45:00" data-endtime="2025-08-01T11:30:00">Fri 01 Aug 10:45 a.m.–11:30 a.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/9aa59dcf2fbc1b3642f73d14332a61ad?s=120&d=mp" alt="Stephanie Lieggi" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/483/index.html">Stephanie Lieggi</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://ucsc-ospo.github.io/">https://ucsc-ospo.github.io/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Stephanie Lieggi is the Executive Director of the Center for Research in Open Source Software (CROSS) at University of California, Santa Cruz. She supports academic-based open source projects and aims to create a sustainable contributor base through the establishment of hands-on mentorship programs, including the Open Source Research Experience (OSRE) Programs. Since 2022 her role has also helped lead the UCSC newly formed Open Source Program Office (OSPO), supported by a grant from the Alfred P Sloan Foundation. Most recently, Stephanie led the effort to build a system-wide network of OSPOs at the University of California, securing financial support for building the network from the Sloan Foundation in Spring 2024. Stephanie co-chairs the CHAOSS University Working Group and is the co-PI on UCSC’s first US National Science Foundation's Pathways to Enable Open Source Ecosystem (POSE) grant, which has enabled exploration into successful models for building sustainable open source projects at universities. </p>
|
||||||
|
<p>Prior to starting at CROSS, Stephanie was a senior researcher and adjunct professor at the Center for Nonproliferation Studies, part of the Middlebury Institute of International Studies at Monterey, where she researched the intersection of national security and global trade.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Note: this will be a group discussion format with participation from anyone who wishes to join.</p>
|
||||||
|
<p>Many impactful open source projects begin as ideas in academic research labs, as highlighted by the wide adoption of projects like Ceph, RISC-V and Jupyter. However, so much of what is created in universities doesn’t find broader adoption and struggles to be sustainable in the long-term. This is a lost opportunity that can have a broad impact on scientific communities, industry and society at large. This BoF session aims to explore the different pathways for academic open source projects to find their way to sustainability and adoption. As with most things open source – there is no one-size-fits-all. This session will provide those with experience in building and maintaining academic open source projects an opportunity to share that experience with those looking for the right pathway for their own project. It will also provide those working or supporting academic Open Source Program Offices (OSPOs) an opportunity to highlight how they are helping projects on their campus become sustainable and best serve the research and educational goals of their institutions.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/DUKTL7ghFus" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/DUKTL7ghFus" rel="nofollow">https://youtu.be/DUKTL7ghFus</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
289
schedule/presentation/336/index.html
Normal file
289
schedule/presentation/336/index.html
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Empowering Teams in Open Source EdTech Communities</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Empowering Teams in Open Source EdTech Communities">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/336/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Empowering Teams in Open Source EdTech Communities" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Empowering Teams in Open Source EdTech Communities</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
329 | <span class="presentation-time" data-starttime="2025-08-01T11:45:00" data-endtime="2025-08-01T12:30:00">Fri 01 Aug 11:45 a.m.–12:30 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/592b8e1beeba19eb61ffec1074dccb70?s=120&d=mp" alt="Joshua Wilson" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/494/index.html">Joshua Wilson</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://mastodon.social/@jmwilson">@jmwilson@mastodon.social</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://www.bcognitionlabs.com/">https://www.bcognitionlabs.com/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Joshua Wilson is the Founding Principal of Flywheel Strategies, Principal at B.Cognition Labs, and Chair of Apereo Foundation. Previously he served as VP and COO of Longsight Inc., and Associate Director of the MISO Survey. He provides strategy, change management, and alignment leadership, and is known for his exceptional mentoring skills.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Join us to explore how Google's Project Aristotle findings can empower teams of developers and educators in open source educational technology. Through interactive exercises, you'll learn practical techniques for making teams more effective by ensuring equal voice in feature discussions and developing social sensitivity in asynchronous communication. You'll leave with concrete strategies to build a team dynamic that supports your FOSS project and create psychological safety that enables both developers and educators to admit knowledge gaps and learn from each other.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/FbhEGkN5HWw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/FbhEGkN5HWw" rel="nofollow">https://youtu.be/FbhEGkN5HWw</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
299
schedule/presentation/338/index.html
Normal file
299
schedule/presentation/338/index.html
Normal file
|
|
@ -0,0 +1,299 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Where Open Research Meets Open Source: The OSF as a Gateway to Academic Collaboration</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Where Open Research Meets Open Source: The OSF as a Gateway to Academic Collaboration">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/338/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Where Open Research Meets Open Source: The OSF as a Gateway to Academic Collaboration" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Where Open Research Meets Open Source: The OSF as a Gateway to Academic Collaboration</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
329 | <span class="presentation-time" data-starttime="2025-08-02T14:00:00" data-endtime="2025-08-02T14:45:00">Sat 02 Aug 2 p.m.–2:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/66df15e8c2a80a31063a6fbaaa5f4bf0?s=120&d=mp" alt="Daniel Steger" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/499/index.html">Daniel Steger</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/OSFSupport">@OSFSupport</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://osf.io/b8d27/">https://osf.io/b8d27/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Daniel Steger is a technical community manager with a passion for open infrastructure, scientific transparency, and inclusive research practices. He currently leads user engagement and product feedback initiatives at the Center for Open Science (COS), where he supports over 750,000 researchers worldwide on the Open Science Framework (OSF). Daniel also spearheads COS’s open source community, cultivating contributor pathways for developers, researchers, and advocates who support the OSF’s mission through collaborative development. He coordinates documentation efforts, facilitates community events, and oversees onboarding for new contributors as the team builds toward a public launch of the community space. With a background in life sciences and science education, Daniel specializes in demystifying complex tools and building welcoming ecosystems for open collaboration. He regularly delivers live demos, webinars, and conference talks, translating user needs into action and championing transparency across all stages of research.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>The Open Science Framework (OSF), developed and maintained by the Center for Open Science (COS) is a free, open-source platform that helps researchers around the world manage and share their work openly and transparently. With more than 800,000 users across disciplines and continents, the OSF supports a global community of scholars seeking reproducibility and openness in scholarship. But the OSF is also something more: a unique open-source ecosystem built to bridge the gap between research needs and technical contributions.</p>
|
||||||
|
<p>In this session, we’ll explore how OSF offers a low-barrier entry point for students, educators, and developers who want to make a meaningful impact on the research world. Through its modular architecture and integration of microservices, the OSF enables contributors to build tools that directly improve how science is done, supporting workflows from study planning through to publication and sharing of any resource type. </p>
|
||||||
|
<p>Beyond technical infrastructure, OSF fosters a “social open” environment that welcomes and supports new contributors. We offer active community spaces like our Discord server, regular onboarding events, transparent project boards on GitHub, and continually updated documentation and guides. We also collaborate across open-source communities to stay aligned with shared values and best practices in open development.</p>
|
||||||
|
<p>Attendees of this presentation will learn and experience:
|
||||||
|
-Highlighting the OSF as a free, open platform that lowers the barrier for sharing scholarly and educational materials for researchers around the world
|
||||||
|
- Showcasing opportunities for researchers and educators as both end-users and code, feedback, and feature contributors through the OSF open source community “help wanted board,” showing tasks ready for all levels of developers.
|
||||||
|
- Spotlighting our new open-source integration ecosystem as a low-friction entry point for technical contributors in academic settings that brings new users and expanded capabilities for OSF and integrated tools and services
|
||||||
|
- Provide real-time opportunities for participants to grow their FOSS engagement through an interactive feedback and co-design activity
|
||||||
|
- Examples of institutional collaborations and feature feedback loops directly from OSF researchers and educators
|
||||||
|
- Demonstrate how the OSF builds and supports an open-source community committed to reproducibility and access of academic research. </p>
|
||||||
|
<p>Getting involved is easy and impactful. Whether you're a small developer group, a classroom exploring real-world FOSS engagement, or an individual contributor, there are many ways to plug into our community. We’re always looking for collaborators, especially those excited about making tools that amplify open science around the world. Whether you're a dev team exploring ways to contribute to the future of knowledge sharing, an educator guiding students through real-world projects, or simply someone passionate about building for impact, the OSF community welcomes your contribution—and your curiosity.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/bPkyjOpfunw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/bPkyjOpfunw" rel="nofollow">https://youtu.be/bPkyjOpfunw</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
312
schedule/presentation/341/index.html
Normal file
312
schedule/presentation/341/index.html
Normal file
|
|
@ -0,0 +1,312 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Open source your repository: a roadmap</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Open source your repository: a roadmap">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/341/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Open source your repository: a roadmap" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Open source your repository: a roadmap</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
333 | <span class="presentation-time" data-starttime="2025-08-01T14:00:00" data-endtime="2025-08-01T14:45:00">Fri 01 Aug 2 p.m.–2:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/ee6f74a36fa8e02e7450e3e9607a205b?s=120&d=mp" alt="Mike Jang" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/438/index.html">Mike Jang</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/na">@na</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://ai-techwriter.com">https://ai-techwriter.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Mike is a Principal Technical Writer for NGINX (part of F5) He creates clear and engaging documentation for developers and sysadmins. He's created authoritative content in Linux, security, and Identity Management. He's also a Red Hat Certified Engineer (RHCE v5) and an enthusiastic speaker at industry events.</p>
|
||||||
|
<p>This year, Mike led the release of the NGINX documentation repository as open source, using the BSD license.</p>
|
||||||
|
<p>He built a docs-as-code documentation practice from scratch at <a href="http://Cobalt.io">Cobalt.io</a>, where he also developed a voice and tone style guide for user experiences, taught non-writers to create better UI text, and set up a paid open source documentation contribution program. At GitLab, he guided the documentation efforts for the Manage Stage and developer content. At ForgeRock, he gained seven years of experience writing about Identity Management. </p>
|
||||||
|
<p>Mike's mission is to share my passion for new software and to help users achieve their goals with the rigor of a technical writer.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>This is open source done right. Open sourcing existing software is more than just "pushing a button," It involves serious preparation, including:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Choosing reasons to go open source</li>
|
||||||
|
<li>Auditing security</li>
|
||||||
|
<li>Scrubbing PII</li>
|
||||||
|
<li>Lawyers and the license</li>
|
||||||
|
<li>Deciding what to do about commits</li>
|
||||||
|
<li>Setting ground rules for contributors</li>
|
||||||
|
<li>Sharing with your community</li>
|
||||||
|
<li>Follow-up hackathons</li>
|
||||||
|
</ul>
|
||||||
|
<p>When people look at open source software, they first look at documentation. When open source developers find a promising project, they expect to get involved. One part of the process is with open source software.</p>
|
||||||
|
<p>Attendees will come out of this session with:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Access to a template repository</li>
|
||||||
|
<li>A checklist to follow, which addresses legal, security, and community requirements</li>
|
||||||
|
<li>An understanding of the work required to move to open source</li>
|
||||||
|
<li>Tips for hackathons, based on real-world experience with open source newbies</li>
|
||||||
|
</ul>
|
||||||
|
<p>Internally, we overcame barriers before we could "push the button." Externally, we helped open source newbies make substantive contributions, well beyond the "typo fix."</p>
|
||||||
|
<p>Over the past few days, we've experienced the variety of issues that can come from a hackathon, especially with Git newbies. However, we've found that encouraging new Git users increases the quality of contributions based on the diversity of experiences.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/mt8CRein1c4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/mt8CRein1c4" rel="nofollow">https://youtu.be/mt8CRein1c4</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
294
schedule/presentation/342/index.html
Normal file
294
schedule/presentation/342/index.html
Normal file
|
|
@ -0,0 +1,294 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Power Dynamics, Rug Pulls, and Other Impacts on FOSS Sustainability</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Power Dynamics, Rug Pulls, and Other Impacts on FOSS Sustainability">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/342/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Power Dynamics, Rug Pulls, and Other Impacts on FOSS Sustainability" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Power Dynamics, Rug Pulls, and Other Impacts on FOSS Sustainability</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
333 | <span class="presentation-time" data-starttime="2025-08-02T11:45:00" data-endtime="2025-08-02T12:30:00">Sat 02 Aug 11:45 a.m.–12:30 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/506e49a7dae9eb8bd05bb64a5169cfa4?s=120&d=mp" alt="Dr. Dawn Foster" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/441/index.html">Dr. Dawn Foster</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://geekygirldawn/@https://hachyderm.io/">@https://hachyderm.io/@geekygirldawn</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/geekygirldawn">@geekygirldawn</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://fastwonderblog.com/">https://fastwonderblog.com/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Dr. Dawn Foster works as the Director of Data Science for CHAOSS where she is also a board member / maintainer. She is co-chair of CNCF TAG Contributor Strategy and an OpenUK board member. She has 20+ years of experience at companies like VMware and Intel with expertise in community, strategy, governance, metrics, and more. She has spoken at over 100 industry events and has a BS in computer science, an MBA, and a PhD. In her spare time she enjoys reading science fiction, running, and traveling.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Power imbalances are everywhere, including in our FOSS projects. Corporations hold power over projects that result in relicensing, forks, and other disruptions. This talk will cover these power dynamics using research data from several case study projects and suggest steps that we can take to make better decisions about which FOSS projects to embrace.</p>
|
||||||
|
<p>Since the beginning of time, those in power have been able to use that power against the weak, often with little recourse. In feudalism, the powerful ruling class controlled the land leading to oppression and exploitation of the people doing the hard work of farming and protecting the land. This may sound familiar, since many FOSS projects similarly have the power consolidated in the hands of the few even when others with less power are doing most of the work. In today’s cloud native world, the power dynamics have gotten even more complex. Large cloud providers have the most power and can create service offerings based solely on FOSS projects while doing little to no real work on those projects. Smaller companies who are doing a significant amount of the development on a FOSS project have less power than the cloud providers, but many still have the power to relicense those projects. The many users, contributors, and even maintainers who have less power can feel like the rug has been pulled out from under them. We’ve recently seen an increase in relicensing of FOSS projects and other tensions within communities that are directly related to imbalances in power that cause disruption within our projects.</p>
|
||||||
|
<p>We have mechanisms, like forks, where those with less power can counter these power moves, regardless of the forms they take. The Elasticsearch, Redis, and Terraform relicensing resulted in the OpenSearch, Valkey, and OpenTofu forks. As part of an ongoing 1+ year research effort under the CHAOSS project, this talk will dive into the data for these six projects to illustrate these power dynamics.</p>
|
||||||
|
<p>As maintainers, contributors, and users of FOSS, we devote our most precious resource to these projects, time. We need for the projects that we spend time on to be sustainable over the long term to avoid wasting this precious resource. There is no way to predict which projects will be sustained over time, but this talk will contain detailed suggestions for how to look for warning signs. Who holds the power in the FOSS projects that we use and contribute to? How do they use that power? What governance processes are in place to provide checks and balances to avoid the misuse of that power? Beyond identifying warning signs, this talk will contain suggestions for how we can work within projects to help them become more sustainable. This talk will not only help people understand the power dynamics at play, but will also provide tangible steps that we can take as maintainers, contributors, and users to make better decisions about focusing our precious time on making our projects more sustainable.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/yFW73LnOLUk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/yFW73LnOLUk" rel="nofollow">https://youtu.be/yFW73LnOLUk</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
289
schedule/presentation/343/index.html
Normal file
289
schedule/presentation/343/index.html
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Lessons from a Decade of Open Source Sustainability Research</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Lessons from a Decade of Open Source Sustainability Research">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/343/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Lessons from a Decade of Open Source Sustainability Research" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Lessons from a Decade of Open Source Sustainability Research</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
333 | <span class="presentation-time" data-starttime="2025-08-02T14:00:00" data-endtime="2025-08-02T14:45:00">Sat 02 Aug 2 p.m.–2:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/24b6204765c1df72dfa65ad6ea431b5b?s=120&d=mp" alt="Igor Steinmacher" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/448/index.html">Igor Steinmacher</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/igorsteinmacher">@igorsteinmacher</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://www.igor.pro.br">https://www.igor.pro.br</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Dr. Igor Steinmacher is an Associate Professor in the School of Informatics, Computing, and Cyber Systems at Northern Arizona University. He received his Ph.D. in Computer Science from the University of São Paulo (2015) and was a Visiting Scholar at the University of California, Irvine (2013). His research focuses on supporting newcomers to open source and sustaining open source communities over time. He investigates socio-technical challenges in onboarding, mentoring, and community retention, and explores how AI-driven tools can promote inclusion and long-term project sustainability. His work bridges software engineering, HCI, and computing education, an he has authored over 100 peer-reviewed publications.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Several FOSS projects struggle with long-term sustainability. This talk walks through years of research and development focused on addressing some of the most pressing challenges faced related to the sustainability of FOSS communities: newcomer onboarding, maintainer burnout, and project governance. I will begin by discussing interventions to support newcomers' onboarding, including community-driven mentorship strategies, structured contribution paths, and other approaches, designed to build confidence and skills early in the contribution process. I will also present ongoing work exploring how Large Language Models (LLMs) can be used to create conversational agents that assist contributors and reduce repetitive questions directed at maintainers, helping scale mentoring while keeping community standards. I will also share insights from longitudinal analyses of developer activity and engagement patterns, including the role of personal and project-level breaks in sustaining healthy contribution cycles and how we may use this to plan. Throughout the talk, I will reflect on how these align with broader structural improvements. In one example, a governance shift in the data.table project was accompanied by investments in multilingual documentation and structured issue triage---steps that revitalized participation and distributed responsibility. Together, these threads present a holistic vision for building more sustainable, inclusive, and resilient FOSS communities, combining technical scaffolding, community design, and human-centered practices.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/gM1VEldAlIA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/gM1VEldAlIA" rel="nofollow">https://youtu.be/gM1VEldAlIA</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
291
schedule/presentation/344/index.html
Normal file
291
schedule/presentation/344/index.html
Normal file
|
|
@ -0,0 +1,291 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: From Campus to Network: Creating the UC System-Wide OSPO Initiative</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: From Campus to Network: Creating the UC System-Wide OSPO Initiative">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/344/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: From Campus to Network: Creating the UC System-Wide OSPO Initiative" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">From Campus to Network: Creating the UC System-Wide OSPO Initiative</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
333 | <span class="presentation-time" data-starttime="2025-08-01T15:25:00" data-endtime="2025-08-01T15:45:00">Fri 01 Aug 3:25 p.m.–3:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/836babfb7950aba69f914ca2c221a9b2?s=120&d=mp" alt="Laura Langdon" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/454/index.html">Laura Langdon</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://LauraLangdon/@https://hachyderm.io/">@https://hachyderm.io/@LauraLangdon</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://lauralangdon.io">https://lauralangdon.io</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Laura Langdon is an Open Source Community Manager for the Open Source Program Office (OSPO) network of the University of California. With a focus on the humans in tech communities, Laura is passionate about documentation, diversity and inclusion across all axes, and social responsibility. Working diligently to connect people within the UC open source community to one another and to the greater world of open source, her responsibilities include planning meetups, helping to connect aspiring contributors with projects and vice versa, and creating educational materials about OSS workflows.</p>
|
||||||
|
<p>Laura has previous experience as a developer advocate at Suborbital Software Systems (acquired by F5), and previously as a math lecturer at CSU East Bay. This diverse background in both academia and industry provides her with unique insights into making technical concepts accessible and fostering inclusive community growth. Her approach combines analytical thinking from her mathematics background with a deep understanding of developer experience and community dynamics.</p>
|
||||||
|
<p>In her free time, Laura enjoys recreational research and optimizing all the things.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Laura Langdon from the UC OSPO Network will share lessons learned from the early stages of building a network of academic OSPOs across the UC system. Representing the team that supports the six campuses in the UC OSPO Network, she will discuss both benefits and challenges encountered while developing this first-of-its-kind system-wide network. She will explore how her experiences with the network's three core working groups—sustainability of open source development, discovery of open source work in research, and education in fostering open source skills—have shaped her understanding of successful OSPO networks. Laura will focus on building community connections and establishing pathways for collaboration between institutions. Drawing from her first-hand experience, Laura will provide practical insights for others looking to establish OSPO networks in their institutions.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/IUE5qunHRWA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/IUE5qunHRWA" rel="nofollow">https://youtu.be/IUE5qunHRWA</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
296
schedule/presentation/345/index.html
Normal file
296
schedule/presentation/345/index.html
Normal file
|
|
@ -0,0 +1,296 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Things I've Learned as a Linux Kernel Maintainer</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Things I've Learned as a Linux Kernel Maintainer">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/345/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Things I've Learned as a Linux Kernel Maintainer" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Things I've Learned as a Linux Kernel Maintainer</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
333 | <span class="presentation-time" data-starttime="2025-08-02T10:45:00" data-endtime="2025-08-02T11:30:00">Sat 02 Aug 10:45 a.m.–11:30 a.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/03b253c356505f59dccbcea9438ab049?s=120&d=mp" alt="Darrick J. Wong" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/422/index.html">Darrick J. Wong</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://djwong.org/">https://djwong.org/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Darrick was the Linux maintainer of the XFS filesystem from 2016 to 2023, and wrote the (recently released) online fsck tool for it. He is now experimenting with improving the fuse I/O model so that filesystem metadata parsing can occur in userspace while most of the I/O hot path remains in the kernel.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>I spent seven years serving as the maintainer of the XFS filesystem and iomap filesystem library in the Linux kernel. Whilst on that journey, I learned a lot about steering technical direction of those two projects, but also the limitations of managing a community without authority. I intend this talk to be most helpful for people who are current FOSS maintainers or are mid to senior level developers contemplating taking on such roles.</p>
|
||||||
|
<p>These are the seven skills that I found most helpful and grew the most in those seven years:
|
||||||
|
* Concocting a strategy from which to build a development roadmap
|
||||||
|
* Defining roles for people to take on
|
||||||
|
* Negotiating staffing and budgets with managers
|
||||||
|
* Coaching people who are trying to get their efforts across the finish line
|
||||||
|
* Dealing with external shocks in as principled a manner as possible
|
||||||
|
* Steering your way out of burnout, aka Replacing Yourself
|
||||||
|
* Supporting, but getting out of the way of, the new leaders you cultivate</p>
|
||||||
|
<p>For each of these areas, I'll share how that skill fits into the Linux community (they didn't always fit well!) and what happened when I tried to make things happen in those areas. I will target spending about 4-5 minutes talking about each of those points and leave 20-25 minutes at the end for an audience discussion.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/bloVOzNjoKs" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/bloVOzNjoKs" rel="nofollow">https://youtu.be/bloVOzNjoKs</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
293
schedule/presentation/346/index.html
Normal file
293
schedule/presentation/346/index.html
Normal file
|
|
@ -0,0 +1,293 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Designing for Collaboration: A Toolkit for Open and Inclusive Environmental Research</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Designing for Collaboration: A Toolkit for Open and Inclusive Environmental Research">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/346/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Designing for Collaboration: A Toolkit for Open and Inclusive Environmental Research" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Designing for Collaboration: A Toolkit for Open and Inclusive Environmental Research</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
333 | <span class="presentation-time" data-starttime="2025-08-01T15:00:00" data-endtime="2025-08-01T15:20:00">Fri 01 Aug 3 p.m.–3:20 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/02c7353ccc23bac0a8d527211e83bc79?s=120&d=mp" alt="Cathy Richards" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/452/index.html">Cathy Richards</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://mastodon.social/@myqntm">@myqntm@mastodon.social</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/myqntm">@myqntm</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://www.cathyr.com/">https://www.cathyr.com/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Cathy Richards (she/her) is a technologist and a Civic Science Fellow/Data Inclusion Specialist at Open Environmental Data Project. Focused on harnessing technology for environmental and social justice, she brings a strong commitment to ethical tech practices, data-driven solutions, and resilience in the face of emerging global challenges. Previously, Cathy worked at The Engine Room as the Associate for Digital Resilience and Emerging Technology, where she focused on integrating cutting-edge tools to support vulnerable communities. Cathy was also a 2023-2024 Green Web Foundation Fellow, investigating the use of GIS for environmental justice and addressing its ethical and security risks. In addition, Cathy has also taught Metrics & Data Visualization at SVA and contributed to various organizations such as Keystone Accountability and Helen Keller International, working on issues from climate entrepreneurship that tackled youth unemployment to immigrant rights and international health. She holds a Bachelor’s degree in International Relations from Boston University and an MPA from the Monterey Institute of International Studies. In her spare time, you’ll find her playing capoeira, solving puzzles, tracing her family history, hoarding books, or saying hello to every dog she meets.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>As communities worldwide confront urgent environmental challenges, open source technologies and data infrastructures are increasingly central to how we understand, protect, and sustain our environments. Yet, persistent gaps remain between the development of open tools, academic research, and the practical needs of the communities most affected by environmental issues.</p>
|
||||||
|
<p>Open Environmental Data Project (OEDP) and partners are addressing this gap through the creation of the Digital Toolkit for Collaborative Environmental Research. This toolkit, grounded in research conducted in 2024, provides actionable resources for open source developers, socio-environmental researchers, and community organizations seeking to build and maintain effective, community-driven collaborations. By employing a design pattern language approach, the toolkit offers concrete solutions and strategies organized around key themes such as building trust through transparent data practices, navigating power dynamics in collaborations, and fostering sustainable models of community data stewardship. The toolkit emphasizes the FOSS values of openness and transparency by encouraging open access to data and documentation; it supports collaboration and inclusivity through community-driven decision-making processes; and it advances sustainability by promoting reusable, adaptable tools that empower all participants to contribute and benefit equitably.</p>
|
||||||
|
<p>This talk will share lessons learned from OEDP’s work, highlighting how the toolkit translates open infrastructure into inclusive, practical frameworks that empower communities to use data for local action and advocacy. Attendees will gain insights into how research can inform the design of open source tools that truly serve community needs, and how practitioners and researchers can collaborate more effectively to bridge the gap between theory and practice. The session will also explore the broader implications for FOSS communities, focusing on how participatory approaches to tool development and data governance can drive more equitable and sustainable outcomes in environmental contexts.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/CgL8QeCAAGc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/CgL8QeCAAGc" rel="nofollow">https://youtu.be/CgL8QeCAAGc</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
292
schedule/presentation/347/index.html
Normal file
292
schedule/presentation/347/index.html
Normal file
|
|
@ -0,0 +1,292 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: The Creative Trade-Off: Governance, Conflict, and Their Impact On Innovation In Open-Source Software</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: The Creative Trade-Off: Governance, Conflict, and Their Impact On Innovation In Open-Source Software">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/347/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: The Creative Trade-Off: Governance, Conflict, and Their Impact On Innovation In Open-Source Software" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">The Creative Trade-Off: Governance, Conflict, and Their Impact On Innovation In Open-Source Software</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
333 | <span class="presentation-time" data-starttime="2025-08-01T11:45:00" data-endtime="2025-08-01T12:30:00">Fri 01 Aug 11:45 a.m.–12:30 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/6e2c36824a832b778c14b89fbd5ab0c8?s=120&d=mp" alt="Dr. Justin Ribeiro, PhD" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/484/index.html">Dr. Justin Ribeiro, PhD</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://justin/@https://ribeiro.social/">@https://ribeiro.social/@justin</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://justinribeiro.com">https://justinribeiro.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Justin is a longtime builder and innovator with over three decades of experience driving change across industries like telecommunications and digital platforms. He's contributed to open-source projects like Chromium and Visual Studio Code, and worked with standards groups like the W3C and NFC Forum. A former Google Developer Expert, Justin has built a career at the intersection of technical expertise and open collaboration. Today, as a Doctor of Management Design and Innovation Fellow at Case Western Reserve University, Justin researches how diverse interactions between developers and stakeholders fuels creativity into innovative outcomes in open source software development. A passionate speaker, mentor, teacher, and open-source advocate, Justin is committed to building more inclusive, innovative communities for the future of software.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Software development has always been fueled by creativity but today, efficiency metrics, process-heavy methods, and the rise of AI now often box that creativity out. While developers are drawn to solving tough problems, modern practices can unintentionally prioritize small tweaks over bold breakthroughs. This tension risks limiting not just individual potential, but open source’s ability to drive meaningful innovation.</p>
|
||||||
|
<p>In this talk, we dive into how development approaches shape creativity at the project level, drawing from a study of 40 open source projects, over 10,000 releases, and interviews with developers across corporate and community-run efforts. Using multi-level creativity theories, we unpack how individual actions, team interactions, and project governance can either spark or stifle innovative outcomes.</p>
|
||||||
|
<p>Our research challenges the myth of the lone “rockstar” developer and highlights the crucial role of social interactions within the open source community— especially during review stages such as pull requests and code reviews—in turning creative ideas into real-world innovations. We show how cognitive conflict and governance models impact creative outcomes and offer strategies for building more innovative, collaborative open source projects and communities.
|
||||||
|
If we want open source to keep leading the way, we need development practices that empower creativity, not constrain it. Let’s rethink how we build and unlock a more radical future for open source software.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/q6g06qViZGw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/q6g06qViZGw" rel="nofollow">https://youtu.be/q6g06qViZGw</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
289
schedule/presentation/348/index.html
Normal file
289
schedule/presentation/348/index.html
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Plausible Slop: Generative AI and Open Source Cybersecurity</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Plausible Slop: Generative AI and Open Source Cybersecurity">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/348/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Plausible Slop: Generative AI and Open Source Cybersecurity" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Plausible Slop: Generative AI and Open Source Cybersecurity</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
333 | <span class="presentation-time" data-starttime="2025-08-02T17:30:00" data-endtime="2025-08-02T18:15:00">Sat 02 Aug 5:30 p.m.–6:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/917b3a38a024326d995eb551559fedfb?s=120&d=mp" alt="Dr. Kaylea Champion" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/436/index.html">Dr. Kaylea Champion</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://social.coop/@kaylea">@kaylea@social.coop</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://kayleachampion.com">https://kayleachampion.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Dr. Kaylea Champion studies how people cooperate to build public goods like GNU/Linux and Wikipedia, including what gets built and maintained -- and what doesn't. She has a background in system administration and tech support. She received her PhD in Communication from the University of Washington in 2024. A Linux user since 1994, she enjoys tromping through the woods, smashing goblins, and cooking for a crowd.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Despite speculation that the rise of consumer-grade generative AI tools would trigger the development of more advanced cybersecurity attacks, a more grounded view observes that instead these synthetic text generating tools are eroding the social model of open source cybersecurity through the low-effort extrusion of 'plausible slop': potentially significant and well-formed but ultimately erroneous and unwanted text. The presence of plausible slop in newcomer contributions in the form of bug and security reports to open source software packages requires substantial time commitment from scarce experts. These experts are caught in a double bind: their role dictates that they sort through what is truly dangerous and what is nonsense, and they are charged with both welcoming problem reports from newcomers while also setting strong norms against inauthentic reports. In this talk, I report on my effort so far investigating plausible slop, connect this challenge to previous historical challenges, suggest avenues towards solutions, and seek community feedback to shape next steps.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/PSwhe2eGRDE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/PSwhe2eGRDE" rel="nofollow">https://youtu.be/PSwhe2eGRDE</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
286
schedule/presentation/350/index.html
Normal file
286
schedule/presentation/350/index.html
Normal file
|
|
@ -0,0 +1,286 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: How do sponsored open source ecosystems manage feature deployments?</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: How do sponsored open source ecosystems manage feature deployments?">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/350/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: How do sponsored open source ecosystems manage feature deployments?" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">How do sponsored open source ecosystems manage feature deployments?</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
333 | <span class="presentation-time" data-starttime="2025-08-01T10:45:00" data-endtime="2025-08-01T11:30:00">Fri 01 Aug 10:45 a.m.–11:30 a.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/5ac31bcad0ac6001ad8b27a23bd8a103?s=120&d=mp" alt="Matt Gaughan" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/435/index.html">Matt Gaughan</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>I am a PhD student at Northwestern. My research focuses on how contributors organize to build FOSS projects; specifically, how projects make decisions in response to their environments. I have a background in software engineering and am looking to learn more about how individuals and communities can develop sustainable relationships to computers.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>The academic study of FOSS libraries often assumes that projects are organized as communities of volunteer contributors. However, the recent growth of sponsored open source libraries --- projects stewarded by large, formally incorporated organizations --- provides new organizational relationships and processes to better understand. One common form of this is constructed when an organization stewards a library while also managing the library's primary implementation; in this model, decision making around the library and its implementation are deeply interconnected, yet may be governed differently. Examples of this model include Apple’s use of WebKit in Safari, BlueSky’s use of ATProto in BlueSky applications, and the WikiMedia Foundation’s (WMF) use of MediaWiki libraries in
|
||||||
|
Wikimedia platforms. This ongoing work focuses on three feature deployments on Wikimedia platforms, examining deployment processes' impacts on the MediaWiki libraries utilized for feature development. By analyzing commit activity, work tasks, and community discussions, we provide greater insight into how certain deployment processes impact the open source development of a critical open platform.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/m5MLn2eCy3k" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/m5MLn2eCy3k" rel="nofollow">https://youtu.be/m5MLn2eCy3k</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
295
schedule/presentation/351/index.html
Normal file
295
schedule/presentation/351/index.html
Normal file
|
|
@ -0,0 +1,295 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: It's all about the ecosystem!</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: It's all about the ecosystem!">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/351/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: It's all about the ecosystem!" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">It's all about the ecosystem!</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
333 | <span class="presentation-time" data-starttime="2025-08-01T16:30:00" data-endtime="2025-08-01T17:15:00">Fri 01 Aug 4:30 p.m.–5:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/7c9b171fae4259544460654d2b5f3304?s=120&d=mp" alt="Ben Ford" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/505/index.html">Ben Ford</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://hachyderm.io/@binford2k">@binford2k@hachyderm.io</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://binford2k.com">https://binford2k.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Founder, Community Builder, and Developer Advocate; Ben gets to build neat things -and- talk to people! \o/</p>
|
||||||
|
<p>Ben is a software engineer and community leader with extensive knowledge and expertise in the Puppet ecosystem. He's honored to call many of you friend and learn from you every day. He's been organizing Linux Users Groups, run clubs, and roller derby teams for most of his adult life and even a bit before that. Before coming to Puppet, he taught Anthropology grad students how to code in Java and then used that experience to introduce Puppet to many of you.</p>
|
||||||
|
<p>Ben has been obsessed with collective benefit for decades and is motivated by enabling the success of others. He's been dreaming of a world in which his skills don't just feed the capitalist maw. He is a long-distance runner but isn't interested in boasting about race times; he'd rather hear how your race went for you.</p>
|
||||||
|
<p>He's currently building a VC-free company at <a href="https://overlookinfratech.com">https://overlookinfratech.com</a>. Find him online at <a href="https://hachyderm.io/@binford2k">https://hachyderm.io/@binford2k</a></p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>You may or may not remember Steve Ballmer's famous "developers, developers, developers" cheer from the late 90's, but Microsoft has known something for a very long time that some OSS companies might learn from. When a tool or product exists in order to run third-party content -- that third-party content is the real value of your tool because without that content, there's no reason to buy the product.</p>
|
||||||
|
<p>Commercially supported open source projects often lose track of this real value. And all too often, they learn that hard fact after community-hostile decisions decimate their ecosystem. SaltStack learned this the hard way, so did Hashi, Chef, Redis, and others.</p>
|
||||||
|
<p>I'd like to talk about the idea that the ecosystem is the product and the thing that you build and sell only exists to support it. It's a subtle but important shift in mindset that I think helps keep focus on what's really important, and I'm using it to help direct the projects that I'm working on now.I</p>
|
||||||
|
<p>Slide deck can be viewed here: <a href="https://binford2k.github.io/all_about_ecosystem/">https://binford2k.github.io/all_about_ecosystem/</a></p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/HRyPhS0glyQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/HRyPhS0glyQ" rel="nofollow">https://youtu.be/HRyPhS0glyQ</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
306
schedule/presentation/352/index.html
Normal file
306
schedule/presentation/352/index.html
Normal file
|
|
@ -0,0 +1,306 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Glue Work Makes the Community Work: Sustaining OSS Through Invisible Labor</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Glue Work Makes the Community Work: Sustaining OSS Through Invisible Labor">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/352/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Glue Work Makes the Community Work: Sustaining OSS Through Invisible Labor" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Glue Work Makes the Community Work: Sustaining OSS Through Invisible Labor</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
333 | <span class="presentation-time" data-starttime="2025-08-02T15:00:00" data-endtime="2025-08-02T15:45:00">Sat 02 Aug 3 p.m.–3:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/bd9486c92ee22645203ee8e57cd39227?s=120&d=mp" alt="Zixuan Steve Feng" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/508/index.html">Zixuan Steve Feng</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://zixuanfeng.github.io/zixuanfeng_page/">https://zixuanfeng.github.io/zixuanfeng_page/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>My name is Zixuan (Steve) Feng, and I am a Ph.D. candidate in Computer Science at Oregon State University, advised by Dr. Anita Sarma. My research focuses on software engineering. I collect data from OSS and analyze it using mixed research methods (e.g., statistical analysis, grounded theory, LLMs) to develop or validate theories about software engineering processes and outcomes, aiming to answer questions such as: How can we empower collaborative OSS teams and enhance sustainability?</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/eb37a4b964d28a762147f06959243761?s=120&d=mp" alt="Anita Sarma" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/507/index.html">Anita Sarma</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/asarma">@asarma</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://web.engr.oregonstate.edu/~sarmaa/">https://web.engr.oregonstate.edu/~sarmaa/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Dr. Anita Sarma is a professor and Associate Head of Research in the School of Electrical Engineering and Computer Science. She received her Ph.D. in Computer Science from the University of California, Irvine and was a postdoctoral fellow at Carnegie Mellon University. Her research focuses on human factors in software development and how to design inclusive technology to help software developers. Her passion is in fostering DEI in Open Source. Her work crosscuts areas of SE, AI for SE, HCI, open source, and CSCW. She has co-authored more than 100 conference and journal articles, and has received numerous awards. She received the OSU Breaking Barriers Research award (2021) for her work in removing gender biases from software. She is a co-director of the GenderMag project. She is a recipient of the NSF CAREER award (2013) and Google Inclusion Research Award (2022).</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>The success of any OSS team project, be it OSS or proprietary, depends on glue work to bind the project and its people together. Glue work, such as writing maintenance code, updating documentation, and responding to user queries, is crucial but is often invisible, unglamorous, and underappreciated. There is no guidance on how to characterize glue work in OSS and understand its influence on contributor experiences. OSS communities remain uncertain about what to contribute, what to acknowledge, how to gauge the impact of glue work, and why these efforts deserve equitable appreciation.</p>
|
||||||
|
<p>Over the past year, our cross-disciplinary team from Google, Microsoft, CNCF, and Oregon State University engaged 300+ OSS practitioners via focus group discussions, interviews, and surveys. We systematically investigated glue work in OSS, examining what it is, the comprehensive forms it takes, where it occurs, how contributors can get involved, how it can be recognized and acknowledged, and its critical impact on contributor experiences and the long-term sustainability of OSS communities. </p>
|
||||||
|
<p>We are here to provide actionable strategies through practical taxonomies that help OSS communities categorize, trace, and acknowledge these often invisible efforts, as well as to raise awareness of glue work and lower the barriers for more people to contribute to OSS. We aim to actively shift the Open Source narrative to recognize and value these contributions, fostering a more inclusive and holistic view of community participation. We are initiating a dedicated Glue Work OSS community to encourage individuals at all levels of coding experience to step forward, contribute, and acknowledge the myriad ways in which everyone can make a significant impact. Learn more https://gluework.netlify.app/.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/oL7jDhpBxyA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/oL7jDhpBxyA" rel="nofollow">https://youtu.be/oL7jDhpBxyA</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
289
schedule/presentation/353/index.html
Normal file
289
schedule/presentation/353/index.html
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Making waterfalls in Godot</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Making waterfalls in Godot">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/353/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Making waterfalls in Godot" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Making waterfalls in Godot</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-07-31T15:00:00" data-endtime="2025-07-31T15:45:00">Thu 31 Jul 3 p.m.–3:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/49c733dd94c6a53e2c79b3c7bab5ac24?s=120&d=mp" alt="Tom Lechner" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/414/index.html">Tom Lechner</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://mastodon.social/@tomsart">@tomsart@mastodon.social</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://tomlechner.com">https://tomlechner.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Tom Lechner has been using open source software to produce his artwork since the early 2000s. He created the desktop publishing program Laidout to quickly lay out his comic books, and is currently using various open source software to work on video game projects, including VR with the Godot Engine. Tom is based in the Portland, Oregon area.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Come learn about some ways to display waterfalls in the open source Godot game engine! Video game fluid flow is a complex subject, and this talk will outline various methods to cheat so that you don't really have to know complex math to make something acceptable. Inspired by a variety of waterfalls in the Pacific Northwest of the USA, this talk will discuss custom tooling to generate waterfalls in Godot, based on how water would fall down digital terrain, and how to use other open source software for art such as Blender, Krita, Gimp to polish different parts of the scenery.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/cYcW5ol7Zq0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/cYcW5ol7Zq0" rel="nofollow">https://youtu.be/cYcW5ol7Zq0</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
286
schedule/presentation/354/index.html
Normal file
286
schedule/presentation/354/index.html
Normal file
|
|
@ -0,0 +1,286 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Building AI applications with Open-source database - PostgreSQL</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Building AI applications with Open-source database - PostgreSQL">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/354/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Building AI applications with Open-source database - PostgreSQL" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Building AI applications with Open-source database - PostgreSQL</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-01T17:30:00" data-endtime="2025-08-01T18:15:00">Fri 01 Aug 5:30 p.m.–6:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/7c4dce74c7a9e66a6a6979de0c089615?s=120&d=mp" alt="Gauri" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/460/index.html">Gauri</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Gauri Kasar works as a PM at Microsoft in the Azure Database for PostgreSQL team. Before joining Microsoft, Gauri worked as a Software Engineer with Oracle and Quantiphi. Her career spans building scalable backend systems, launching customer-facing features, and working closely with cross-functional teams to deliver impactful solutions. She is passionate about AI, open-source technologies, and helping developers get the most out of cloud platforms.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Curious about how to build AI applications with the tools you already know and love? This beginner-friendly session will show you how PostgreSQL can be the backbone of your AI workloads. We’ll break down key concepts like vector embeddings, vector search, and Retrieval-Augmented Generation (RAG) in a simple, easy-to-understand way. Then, we’ll dive into how PostgreSQL’s native features and extensions make it easy to store, search, and scale AI data — no special infrastructure needed.
|
||||||
|
Best of all, you'll see everything come to life through a hands-on, step-by-step demo where we’ll build a complete, Generative AI application powered entirely by PostgreSQL.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/VAUz22-dSOc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/VAUz22-dSOc" rel="nofollow">https://youtu.be/VAUz22-dSOc</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
291
schedule/presentation/355/index.html
Normal file
291
schedule/presentation/355/index.html
Normal file
|
|
@ -0,0 +1,291 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Up Against the WAL: The Write-Ahead Log in PostgreSQL</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Up Against the WAL: The Write-Ahead Log in PostgreSQL">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/355/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Up Against the WAL: The Write-Ahead Log in PostgreSQL" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Up Against the WAL: The Write-Ahead Log in PostgreSQL</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
327 | <span class="presentation-time" data-starttime="2025-08-01T11:45:00" data-endtime="2025-08-01T12:30:00">Fri 01 Aug 11:45 a.m.–12:30 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/6a961946320454083402aab4cde4bba9?s=120&d=mp" alt="Christophe Pettus" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/428/index.html">Christophe Pettus</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://fosstodon.org/@cep">@cep@fosstodon.org</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/xof">@xof</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://thebuild.com">https://thebuild.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Christophe is the CEO of PGX Inc., a boutique PostgreSQL consultancy based in Alameda, California. He has been working with PostgreSQL since version 7, and databases for even longer.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>The Write-Ahead Log in PostgreSQL underlies a huge number of features: crash recovery, binary replication, logical replication, and backups. This talk is a dive into the internals of the WAL, including its format, how it is written to storage, how it is used, and what to do when you get one of the many terrifying errors about WAL issues.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/DSvIdkDCZzw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/DSvIdkDCZzw" rel="nofollow">https://youtu.be/DSvIdkDCZzw</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
301
schedule/presentation/356/index.html
Normal file
301
schedule/presentation/356/index.html
Normal file
|
|
@ -0,0 +1,301 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Agile/Scrum for Open Source Community Projects</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Agile/Scrum for Open Source Community Projects">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/356/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Agile/Scrum for Open Source Community Projects" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Agile/Scrum for Open Source Community Projects</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
333 | <span class="presentation-time" data-starttime="2025-08-02T16:30:00" data-endtime="2025-08-02T17:15:00">Sat 02 Aug 4:30 p.m.–5:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/476aa66c4543e0fbda9d244b2e002799?s=120&d=mp" alt="Tess Gadwa" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/520/index.html">Tess Gadwa</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://thematizer/@https://mastodon.social/">@https://mastodon.social/@thematizer</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/Thematizer">@Thematizer</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://tessgadwa.com">https://tessgadwa.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Tess is a passionate advocate of free software and bridging the gap between the arts and technology. She has lectured in Asia, North America, and Europe about the practical and ethical implications of open source, usability, and the connection between creativity and code.</p>
|
||||||
|
<p>In January 2011, Tess launched Yes Exactly, a managed hosting company serving early stage startups and community organizations. As CEO, she led the push to release Zappen, an AR app licensed under the LGPL 3.0. This augmented reality app contained the first fully functional open source implementation of mobile visual search. She sold her company in 2017 and went on to create Lotus FM, a consulting firm specializing in applications of data visualization for music discovery, philanthropy, and financial services. In 2023, she chose to license her proprietary Lotus Petal Architecture framework under a Creative Commons license, making it freely available for non-commercial and educational purposes.</p>
|
||||||
|
<p>Serious bouts of Repetitive Strain Injury and fibroids transformed Tess into an unexpected activist for disability rights and women's health. She is currently completing a yearlong engagement evaluating the feasibility and market potential of a blockchain patient health experience platform. Preliminary findings and whitepaper may be viewed at <a href="https://healthexperiencerepository.net">https://healthexperiencerepository.net</a>.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>When Agile/Scrum is adapted effectively for FOSS, it holds significant advantages over the "benevolent dictator" model -- both in inclusivity and in building morale and participation.</p>
|
||||||
|
<p>The talk assumes:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Primarily online contributors</li>
|
||||||
|
<li>A mix of paid and volunteer team members</li>
|
||||||
|
<li>Contributors at a range of skill levels</li>
|
||||||
|
<li>Contributors in non-coding roles (documentation, design, and user research) as well as development roles</li>
|
||||||
|
</ul>
|
||||||
|
<p>It would build on lessons learned from Giving Map (<a href="http://givingmap.org">givingmap.org</a>) a grant-funded applied data visualization initiative that ran from 2020-21. However, these best practices can be applicable to a broad range of projects.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/7FqC6MP0YNw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/7FqC6MP0YNw" rel="nofollow">https://youtu.be/7FqC6MP0YNw</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
291
schedule/presentation/357/index.html
Normal file
291
schedule/presentation/357/index.html
Normal file
|
|
@ -0,0 +1,291 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Recipe for Discovery: Building the UC Open Source Repository Browser From Scratch</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Recipe for Discovery: Building the UC Open Source Repository Browser From Scratch">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/357/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Recipe for Discovery: Building the UC Open Source Repository Browser From Scratch" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Recipe for Discovery: Building the UC Open Source Repository Browser From Scratch</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
329 | <span class="presentation-time" data-starttime="2025-08-02T17:30:00" data-endtime="2025-08-02T18:15:00">Sat 02 Aug 5:30 p.m.–6:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/fa732f0c9b0de4a8087d52ffc216512a?s=120&d=mp" alt="Juanita Gomez" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/522/index.html">Juanita Gomez</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://fosstodon.org/@juanitagomezr">@juanitagomezr@fosstodon.org</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/juanitagomezr">@juanitagomezr</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://github.com/juanis2112">https://github.com/juanis2112</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Juanita Gomez is a Ph.D. candidate in Computer Science at UC Santa Cruz, where her research focuses on improving the security of scientific open source software in collaboration with the Open Source Program Office (OSPO) at UCSC. She is a passionate programmer, mathematician, and open-source advocate, former developer of Spyder IDE at Quansight and current community leader for the Scientific Python project, a community effort to better coordinate and support scientific Python libraries.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>The University of California’s network of Open Source Program Offices (OSPOs) launched last year, bringing together six campuses (UC Santa Cruz, Berkeley, Davis, Los Angeles, Santa Barbara, and San Diego) to support open source research, promote sustainability, and establish best practices within academic environments. A key challenge in this effort is identifying and connecting open source projects across the system. Despite UC’s significant contributions to open source, there is no centralized way to track these efforts, making it difficult for researchers to find relevant projects, for institutions to assess impact, and for the broader community to engage with UC’s open source work. To address this, the UC OSPO Network is developing the UC Open Source Repository Browser (UC ORB), a discovery tool designed to map and classify UC’s open source projects. This talk will explore the process of building the UC ORB, from leveraging the GitHub API for data collection to integrating automated discovery with targeted outreach to the academic community. We will discuss the challenges of repository identification, compare similar approaches, and share lessons learned throughout the process.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/_AS_jBKKvqQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/_AS_jBKKvqQ" rel="nofollow">https://youtu.be/_AS_jBKKvqQ</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
287
schedule/presentation/358/index.html
Normal file
287
schedule/presentation/358/index.html
Normal file
|
|
@ -0,0 +1,287 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Starting an Open Mentorship Handbook!</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Starting an Open Mentorship Handbook!">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/358/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Starting an Open Mentorship Handbook!" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Starting an Open Mentorship Handbook!</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-01T10:45:00" data-endtime="2025-08-01T11:30:00">Fri 01 Aug 10:45 a.m.–11:30 a.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/cfc9c8fd254228bec9bf46dbeba90719?s=120&d=mp" alt="Pono Takamori" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/482/index.html">Pono Takamori</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Daniel Pono Takamori is the Community Organizer at Software Freedom Conservancy. He's been involved in FOSS for almost 20 years and worked for non-profit FOSS organizations for over a decade. While not at his computer he likes to play go, cook vegetables and ride his bike.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Technology communities committed to transparency and openness (like free and open source software, or FOSS, communities) adopt sets of practices to facilitate their collaboration. In order to work together developing software, practicing open science and facilitating open data, collaborators must build robust communities to publicly discuss and improve their projects. Healthy communities that continue productively into the future must find ways to engage and nurture new contributors in order to maintain and grow their communities. Some communities struggle to attract new contrinbutors in the first place, while other communities attract many new contributors, but struggle to coach those contributors on how to become leaders, reviewers, and maintainers of their community's work.</p>
|
||||||
|
<p>Open mentorship programs provide a safe space for interns to learn how to work in an open, public manner with open communities, and how to create and maintain public works. Unfortunately, documentation on how to be a mentor in an open mentorship program is often non-existent, out of date, or scattered across many different resources. The Outreachy team is launching an Open Mentorship Handbook, to gather best practices in mentorship and to provide a collaborative way to share the knowledge that we've amassed in this area.</p>
|
||||||
|
<p>Come learn about this initiative and participate in a collaborative session about the Handbook and Open mentorship!</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/sRLCR7DS1Jk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/sRLCR7DS1Jk" rel="nofollow">https://youtu.be/sRLCR7DS1Jk</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
345
schedule/presentation/359/index.html
Normal file
345
schedule/presentation/359/index.html
Normal file
|
|
@ -0,0 +1,345 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Panel: Ongoing Things in the Kernel Community</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Panel: Ongoing Things in the Kernel Community">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/359/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Panel: Ongoing Things in the Kernel Community" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Panel: Ongoing Things in the Kernel Community</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
328 | <span class="presentation-time" data-starttime="2025-07-31T15:00:00" data-endtime="2025-07-31T15:45:00">Thu 31 Jul 3 p.m.–3:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/03b253c356505f59dccbcea9438ab049?s=120&d=mp" alt="Darrick J. Wong" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/422/index.html">Darrick J. Wong</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://djwong.org/">https://djwong.org/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Darrick was the Linux maintainer of the XFS filesystem from 2016 to 2023, and wrote the (recently released) online fsck tool for it. He is now experimenting with improving the fuse I/O model so that filesystem metadata parsing can occur in userspace while most of the I/O hot path remains in the kernel.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/08d94c1c08103fcdd9c14a8bdb316e39?s=120&d=mp" alt="Ben Dooks" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/450/index.html">Ben Dooks</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/bjdooks">@bjdooks</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="http://www.fluff.org/ben/">http://www.fluff.org/ben/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Long time open source contributor to the Linux kernel, qemu and other projects for both work and personal fun. Experience in various hardware and board bringup on arm32, arm64, riscv64 and electronic design.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/ba45cc474c6f30d2c1b4d63a98ac9283?s=120&d=mp" alt="Luis Chamberlain" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/488/index.html">Luis Chamberlain</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="index.html">@mcgrof</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Luis is a Principal Engineer at Samsung focusing the development and adoption of future Samsung NVMe storage & memory solutions with a focus on artificial intelligence. Luis has been working on the Linux kernel for over 20 years, and his fields of interest has changed over time, from Wireless, Bluetooth, Ethernet, to virtualization and lately with storage and memory technologies. He has also helped spearhead different new automation open source projects such as the Linux kernel backports project and as of late the kdevops project.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/af8a9293484ed04b89081d848929b19a?s=120&d=mp" alt="Neal Gompa" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/432/index.html">Neal Gompa</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://social.gompa.me/@neal">@neal@social.gompa.me</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/Det_Conan_Kudo">@Det_Conan_Kudo</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://neal.gompa.dev/">https://neal.gompa.dev/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Neal Gompa is a developer for–and contributor to–Fedora, CentOS, and openSUSE. Neal focuses primarily on the base Linux system components, such as package and software management, and desktop Linux. He believes in “upstream first,” which has led him all over the open source world. In addition to open source work as a consultant through Velocity Limitless, he is also a co-host on the Sudo Show podcast where he talks about "the business of open source."</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><ul>
|
||||||
|
<li>Kernel integration with mainline</li>
|
||||||
|
<li>Upstreaming stuff from AsahiLinux</li>
|
||||||
|
<li>Containerizing filesystems</li>
|
||||||
|
<li>Awfulness of vendor kernels</li>
|
||||||
|
<li>Adding Rust</li>
|
||||||
|
</ul>
|
||||||
|
<p>There will also be room for audience questions.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/_eyQmbEGT5s" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/_eyQmbEGT5s" rel="nofollow">https://youtu.be/_eyQmbEGT5s</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
297
schedule/presentation/360/index.html
Normal file
297
schedule/presentation/360/index.html
Normal file
|
|
@ -0,0 +1,297 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Intro to Unconferences</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Intro to Unconferences">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/360/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Intro to Unconferences" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Intro to Unconferences</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
| <span class="presentation-time" data-starttime="2025-08-03T13:45:00" data-endtime="2025-08-03T14:00:00">Sun 03 Aug 1:45 p.m.–2 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/b32ae4ca7b2465cc5b642eed9c285b06?s=120&d=mp" alt="Aaron Wolf" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/455/index.html">Aaron Wolf</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://social.coop/@wolftune">@wolftune@social.coop</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://wolftune.com">https://wolftune.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Aaron is a community music teacher and a co-founder of <a href="http://Snowdrift.coop">Snowdrift.coop</a> (a fundraising platform aiming to coordinate community economic support for FLO public goods). His volunteer work in many free/libre/open technology areas has focused on healthy communities, public outreach, governance, and issues of politics and economics. He lives in Oregon City with his wife, dog, and two kids.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/3e18e58f206ab70b6ebd6c8cde5a37c4?s=120&d=mp" alt="Wm Salt Hale" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/537/index.html">Wm Salt Hale</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://social.coop/@salt">@salt@social.coop</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/altsalt">@altsalt</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://sal.td">https://sal.td</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Salt is a Seattle local who has been involved with the Free Software movement since 1996. Currently, he works at IEEE SA Open while volunteering as Impresario of SeaGL and Community Director of <a href="http://Snowdrift.coop">Snowdrift.coop</a>. Salt attended five years of graduate studies at the University of Washington where he focused on the intersection between communication, computer science, and law. Salt tries to be very approachable and will always be found wearing a kilt.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>An unconference fits a middle-ground between planned talks and casual hallway chat. In an unconference, participants collaboratively set up a schedule for topical conversations. Anyone can propose a topic. A schedule-board organizes which topics will happen when and where. Everyone can join (or just listen in on) whichever conversations they like.
|
||||||
|
Never been to one? We'll give a brief overview of the rooms and times so you can build your schedule.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
365
schedule/presentation/361/index.html
Normal file
365
schedule/presentation/361/index.html
Normal file
|
|
@ -0,0 +1,365 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Panel: Licenses, corporations, community, and collaboration</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Panel: Licenses, corporations, community, and collaboration">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/361/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Panel: Licenses, corporations, community, and collaboration" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Panel: Licenses, corporations, community, and collaboration</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
328 | <span class="presentation-time" data-starttime="2025-08-02T14:00:00" data-endtime="2025-08-02T14:45:00">Sat 02 Aug 2 p.m.–2:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/1bd07f791d8ed5989a92790b0a1f9ea4?s=120&d=mp" alt="Josh Triplett" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/534/index.html">Josh Triplett</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://joshtriplett.org/@josh">@josh@joshtriplett.org</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/josh_triplett">@josh_triplett</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://joshtriplett.org/">https://joshtriplett.org/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Josh Triplett is a Rust developer on the language, library, and Cargo teams. Josh cares about building welcoming, inclusive communities that lift people up, building solutions to systemic problems, and writing low-level systems code in high-level Rust. Josh founded buildit.dev to help people build software faster and more easily. Josh has previously presented at RustConf, Kernel Summit, <a href="http://linux.conf.au">linux.conf.au</a>, Linux Plumbers Conference, Embedded Linux Conference, LinuxCon, PyCon, FOSDEM, Open Source Bridge, and the USENIX Annual Technical Conference.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/f74284f4ea38ec95a446e077352993fb?s=120&d=mp" alt="Eric Schultz" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/524/index.html">Eric Schultz</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://wwahammy/@https://social.treehouse.systems/">@https://social.treehouse.systems/@wwahammy</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://wwahammy.com">https://wwahammy.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Eric Schultz is a Digital Autonomy activist and Project Leader for the Houdini Project who is passionate about the promise and reality of free and open source software for user empowerment, especially those from marginalized groups. Currently, he's a Senior Software Engineer at Software for Good GBC. Previously, he worked as Chief Technology Officer at CommitChange until becoming CommitChange Technical Lead upon the project’s acquisition. Before starting at CommitChange, in addition to software engineering, Eric served as Community Manager for multiple open source foundations, consulted with organizations on building open source software projects and advised the FCC on technical and practical issues around open source router technology. Eric lives in Appleton, Wisconsin, where outside of work he enjoys watching the Green Bay Packers and Milwaukee Bucks and researching family history.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/be249c6e5f067c2dfa6a57b610aa8550?s=120&d=mp" alt="Kate Downing" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/525/index.html">Kate Downing</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://katedowninglaw.com/">https://katedowninglaw.com/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Kate Downing is a solo practitioner specializing in open source licensing and compliance. She works with start-ups, Fortune 500 companies, and companies of all sizes in between to help them choose open source licensing strategies, choose and configure open source compliance tools, establish company-wide policies and workflows, and otherwise create simple, effective processes for OSS compliance, contributions, and open-sourcing of future projects. She has also written extensively on machine learning and artificial intelligence technologies and counsels many clients in this domain. Before starting her own practice in 2017, Kate led a team of 12 open source attorneys at VMware, and built an open source compliance process from scratch as ServiceNow's first product counsel. Kate is the co-chair of the Practicing Law Institute's annual OSS program. Kate is a board member for the PolyForm Project and a member of the Blue Oak Council.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/c1726c720bf71a38f09d59f56dde93b4?s=120&d=mp" alt="Marc Jones" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/529/index.html">Marc Jones</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/44e615bb857f5cb8780dd2098c396f9a?s=120&d=mp" alt="McCoy Smith" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/526/index.html">McCoy Smith</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://mastodon.social/@mccoysmith">@mccoysmith@mastodon.social</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/mccoysmith">@mccoysmith</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://www.lexpan.law">https://www.lexpan.law</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>McCoy Smith is an intellectual property attorney at Lex Pan Law LLC in Portland, Oregon. He is registered to practice in Oregon, Washington, California & New York as well as with the US Patent and Trademark Office and the Canadian Intellectual Property Office. He is a frequent writer and presenter on open source legal and compliance topics, and authored two chapters in the Oxford University Press publication “ Open Source Law, Policy and Practice.”</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Confirm or deny: Free and open source software licenses
|
||||||
|
should provide a framework for collaboration between any and all
|
||||||
|
individuals and entities interested in working on and using the covered
|
||||||
|
code, including hobbyists, freelancers, corporations, and nonprofit
|
||||||
|
organizations. If not true, what should we do instead? If true, how is
|
||||||
|
our current set of licenses performing in this area, especially
|
||||||
|
considering wrinkles like SaaS and patents? Furthermore, we've seen some
|
||||||
|
modifications published as "additional terms" and as new licenses -- how
|
||||||
|
have these efforts played out and do we expect to see more of them?
|
||||||
|
We'll hear from panelists with expertise in diverse related areas, and
|
||||||
|
invite questions from the audience.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/fZvcTPw4AG8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/fZvcTPw4AG8" rel="nofollow">https://youtu.be/fZvcTPw4AG8</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
304
schedule/presentation/362/index.html
Normal file
304
schedule/presentation/362/index.html
Normal file
|
|
@ -0,0 +1,304 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Assessing and Managing threats to the Nonprofit Infrastructure of FOSS</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Assessing and Managing threats to the Nonprofit Infrastructure of FOSS">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/362/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Assessing and Managing threats to the Nonprofit Infrastructure of FOSS" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Assessing and Managing threats to the Nonprofit Infrastructure of FOSS</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
| <span class="presentation-time" data-starttime="2025-08-01T09:45:00" data-endtime="2025-08-01T10:25:00">Fri 01 Aug 9:45 a.m.–10:25 a.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/f1f8b36baf95d2c89459fd7d80401ba7?s=120&d=mp" alt="Allen Gunn" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/528/index.html">Allen Gunn</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://mastodon.social/@aspirationtech">@aspirationtech@mastodon.social</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/aspirationtech">@aspirationtech</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://aspirationtech.org/">https://aspirationtech.org/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Allen Gunn (gunner) is Executive Director of Aspiration (<a href="http://www.aspirationtech.org">www.aspirationtech.org</a>) in San Francisco, USA, and works to help NGOs, activists, foundations and technologists forge effective and sustainable digital strategies in support of social, racial and climate justice. Gunner has worked in numerous technology-focused environments from NGO to Silicon Valley start-up to college faculty, serving in senior management, engineering, teaching and volunteer roles. He is an experienced strategist, mentor and facilitator with a passion for designing collaborative open learning processes. And once upon a time he was a roadie in a San Francisco rock-and-roll band.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/cfc9c8fd254228bec9bf46dbeba90719?s=120&d=mp" alt="Pono Takamori" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/482/index.html">Pono Takamori</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Daniel Pono Takamori is the Community Organizer at Software Freedom Conservancy. He's been involved in FOSS for almost 20 years and worked for non-profit FOSS organizations for over a decade. While not at his computer he likes to play go, cook vegetables and ride his bike.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Free and Open Source Software has long relied on a robust network of nonprofit organizations set up to support its development and advocacy. In recent years, this infrastructure has been tested as funding has declined and the uncertainties related to running these organizations have increased, resulting in closures or reductions in staff at many orgs. In this keynote, Pono Takamori will host a conversation with Allen Gunn of Aspiration about the current challenges facing fiscal sponsorship organizations, how the decline in funding for these organizations will impact FOSS generally and how to assess a variety of threats in the US and globally..</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/1-9051FNS-s" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/1-9051FNS-s" rel="nofollow">https://youtu.be/1-9051FNS-s</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
287
schedule/presentation/363/index.html
Normal file
287
schedule/presentation/363/index.html
Normal file
|
|
@ -0,0 +1,287 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: An Adventure in Data Modeling</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: An Adventure in Data Modeling">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/363/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: An Adventure in Data Modeling" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">An Adventure in Data Modeling</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-02T14:00:00" data-endtime="2025-08-02T14:45:00">Sat 02 Aug 2 p.m.–2:45 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/3a0b97dae73e7e0caef2caf1cbf360ae?s=120&d=mp" alt="Mark Wong" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/418/index.html">Mark Wong</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="index.html">@markwkm</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Mark Wong is currently employed by EDB and is a PostgreSQL Major Contributor. His background is in database systems solutions and performance. He has contributed to various aspects of the community such as a benchmarking kits, Google Summer of Code mentor, <a href="http://PGConf.US">PGConf.US</a> Organizer, Portland PostgreSQL Users Group Co-Organizer, PostgreSQL Fundraising Group Member, and Treasurer and President of PgUS.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>This is a tale about one company's experience with a database schema design refactor to use the Entity-Attribute-Value (EAV) data model on its members. I will describe the original data model and why there was a need to move to a new data model, which the EAV was chosen for. This decision was made without realizing that the EAV data model is considered an anti-pattern for relational data modeling. There was some stumbling along the way but the company recovered and succeeded in implementing the EAV data model with some on-the-fly data transformation. The moral of the story really is to not use the EAV data model, but changing the data models is not always trivial. Hopefully this story can still help make the EAV data model bearable for the short term.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/RUdSO7OoxXQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/RUdSO7OoxXQ" rel="nofollow">https://youtu.be/RUdSO7OoxXQ</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
289
schedule/presentation/364/index.html
Normal file
289
schedule/presentation/364/index.html
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: More Scalability Through Open Source Hygiene</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: More Scalability Through Open Source Hygiene">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/364/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: More Scalability Through Open Source Hygiene" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">More Scalability Through Open Source Hygiene</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
328 | <span class="presentation-time" data-starttime="2025-08-02T11:45:00" data-endtime="2025-08-02T12:30:00">Sat 02 Aug 11:45 a.m.–12:30 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/ef7862587ed68666f03878f2723a810c?s=120&d=mp" alt="Ria Farrell Schalnat" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/532/index.html">Ria Farrell Schalnat</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://www.hpe.com/us/en/open-source.html">https://www.hpe.com/us/en/open-source.html</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>I am delighted to work with the Open Program Office of Hewlett Packard Enterprise (<a href="https://www.hpe.com/us/en/open-source.html)!">https://www.hpe.com/us/en/open-source.html)!</a> This role is the culmination of my prior lives as a computer programmer, lawyer and adjunct professor specializing in intellectual property subjects including open source. </p>
|
||||||
|
<p>Previously, I spent over three years at Amazon Web Services including working with their OSPO. I served as General Counsel and Director of Intellectual Property for a mid-size software and data center company (Vora Ventures). I provided counsel, advice and representation to numerous clients and specialized in patent portfolio management and prosecution, intellectual property due diligence for mergers and acquisitions, and software licensing for two regional law firms (Frost Brown Todd & Dinsmore). My technology practice built on my undergraduate degree in Computer Science and work experience as a computer programmer and ranged across billing, data management, customer relationship management, and speech technology applications. I spend additional time working on community initiatives for the Cybersecurity and Infrastructure Security Agency under the Department of Homeland Security (CISA), the Eclipse Foundation, the Linux Foundation including the Community Health & Analytics in Open Source Software (CHAOSS) project, SPDX Legal team, and the Open Source Initiative (Clearly Defined project). </p>
|
||||||
|
<p>I am admitted to practice law in Ohio, the U.S. Patent & Trademark Office, and in-house in Washington. While in private practice, I served for two years as President of CincyIP, a local bar association dedicated to intellectual property education. I served as adjunct professor at the University of Cincinnati School of Law and University of Dayton School of Law on subjects including Patent Litigation, Cyberspace Law and Open Source Licensing.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>As more attention is paid to SBOMs through Executive Orders in the United States and legislation like the European Union's Cyber Resilience Act, being able to ingest, identify, evaluate and approve open source packages will be critical to scaling compliance operations as well as empowering developers by giving them an early heads up on the choices they are making in their solutions. SPDX identifiers provide a quick identification mechanism for the license utilized by a component. ClearlyDefined provides important provenance data including component source locations, licensing, attributions and more. GUAC provides tooling to enhance SBOMs with security and vulnerability data. CHAOSS provides health metrics associated with open source components. All of these projects allow the development of policies and empower developers to align their choices with personal or company preferences. This session will touch on all these projects and then walk through the process to assign an SPDX-ID to a license. When you leave, you'll know how to engage with the SPDX-Legal committee and how to respond to issues in their repo to get IDs assigned to licenses. Help US to help YOU to scale your open source compliance!</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/idNHpQhNuWI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/idNHpQhNuWI" rel="nofollow">https://youtu.be/idNHpQhNuWI</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
336
schedule/presentation/365/index.html
Normal file
336
schedule/presentation/365/index.html
Normal file
|
|
@ -0,0 +1,336 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Q&A on SFC's lawsuit against Vizio</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Q&A on SFC's lawsuit against Vizio">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/365/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Q&A on SFC's lawsuit against Vizio" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Q&A on SFC's lawsuit against Vizio</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
| <span class="presentation-time" data-starttime="2025-08-02T09:45:00" data-endtime="2025-08-02T10:30:00">Sat 02 Aug 9:45 a.m.–10:30 a.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/0580d7a67da1b15b1695edc4e22779f9?s=120&d=mp" alt="Bradley M. Kuhn" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/506/index.html">Bradley M. Kuhn</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://floss.social/@bkuhn">@bkuhn@floss.social</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Bradley M. Kuhn is the Policy Fellow at Software Freedom Conservancy (SFC). Kuhn began his work software freedom movement in 1992, as an early adopter of Linux systems & contributor to various FOSS projects, including Perl. Kuhn was FSF’s Executive Director from 2001–2005, began as SFC’s primary volunteer from 2006–2010, and became SFC's first staff person in 2011. Kuhn's work focuses on enforcement of the GPL agreements, FOSS licensing policy, and infrastructural solutions for FOSS.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/5ca795f06b3505f43bf7ba26fef37c7d?s=120&d=mp" alt="Denver Gingerich" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/509/index.html">Denver Gingerich</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://ossguy.com/">https://ossguy.com/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Denver is a software right-to-repair and standards activist who is currently Director of Compliance at Software Freedom Conservancy, where he enforces software right-to-repair licenses such as the GPL, and is also a director of the worker co-operative that runs JMP.chat, a FOSS phone number (texting/calling) service. Denver writes free software in his spare time: his patches have been accepted into Wine, Linux, and wdiff. Denver received his BMath in Computer Science from the University of Waterloo. He gives presentations about digital civil rights and how to ensure FOSS remains sustainable as a community and financially, having spoken at conferences such as FOSSY, SCALE, the Canadian Repair Convention, FOSDEM, SFSCON, CopyleftConf, LibrePlanet, LinuxCon North America, CopyCamp Toronto, FOSSLC's Summercamp, and the Open Video Conference.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/5e77b6e5743dd274a0bc00806cb082de?s=120&d=mp" alt="Karen Sandler" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/411/index.html">Karen Sandler</a></strong><br />
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://floss.social/@karen">@karen@floss.social</a>
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/o0karen0o">@o0karen0o</a><br />
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Karen M. Sandler is an attorney and the executive director of Software Freedom Conservancy, a 501c3 nonprofit organization focused on ethical technology. As a patient deeply concerned with the technology in her own body, Karen is known as a cyborg lawyer for her advocacy for free software as a life-or-death issue, particularly in relation to the software on medical devices. She co-organizes Outreachy, the award-winning outreach program for people who face under-representation, systemic bias, or discrimination in tech. She is an adjunct Lecturer-In-Law of Columbia Law School and a visiting scholar at University of California Santa Cruz.</p>
|
||||||
|
<p>Prior to joining Software Freedom Conservancy, Karen was the executive director of the GNOME Foundation. Before that, she was the general counsel of the Software Freedom Law Center. She began her career as a lawyer at Clifford Chance and Gibson, Dunn & Crutcher LLP.</p>
|
||||||
|
<p>Karen received her law degree from Columbia Law School where she was a James Kent Scholar and co-founder of the Columbia Science and Technology Law Review. She also holds a bachelor of science in engineering from The Cooper Union for the Advancement of Science and Art.</p>
|
||||||
|
<p>Sandler has won awards for her work on behalf of software freedom, including the O’Reilly Open Source Award in 2011. She received an honorary doctorate from KU Leuven in 2023.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/c0a7c4a43df10e1b0d493df3e92eb0fd?s=120&d=mp" alt="Rick Sanders" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/527/index.html">Rick Sanders</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Rick is the General Counsel of Software Freedom Conservancy. He has been practicing law since 2000, mostly in the field of intellectual-property litigation. He started his legal careers in Silicon Valley and now resides in Nashville, Tennessee. From 2012 to 2015, he taught copyright law at Vanderbilt University Law School.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>There's a reason that some of the most popular shows on television for generations have been courtroom dramas. Court cases are dramatic by their nature!</p>
|
||||||
|
<p>Come ask us anything at all about the Software Freedom Conservancy's lawsuit against Vizio. The trial is only 6 weeks away, so hear about everything and get yourself ready to go down to Los Angeles and attend the trial.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/fu1L61-OOeQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/fu1L61-OOeQ" rel="nofollow">https://youtu.be/fu1L61-OOeQ</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
294
schedule/presentation/366/index.html
Normal file
294
schedule/presentation/366/index.html
Normal file
|
|
@ -0,0 +1,294 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: I Didn't Know Postgres Could Do That!</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: I Didn't Know Postgres Could Do That!">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/366/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: I Didn't Know Postgres Could Do That!" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">I Didn't Know Postgres Could Do That!</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
338 | <span class="presentation-time" data-starttime="2025-08-02T16:30:00" data-endtime="2025-08-02T17:15:00">Sat 02 Aug 4:30 p.m.–5:15 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/739be9db242144203129281edc44df36?s=120&d=mp" alt="Robert Treat" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/538/index.html">Robert Treat</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>PostgreSQL is often thought of as "The Database for DBAs", but what more
|
||||||
|
and more developers are finding out is that what makes Postgres "The
|
||||||
|
Worlds Most Advanced Open Source Database" is its wide array of
|
||||||
|
features, many of which are really geared towards users who want to
|
||||||
|
build applications on top of Postgres.</p>
|
||||||
|
<p>In this talk, we'll look at some of the features in Postgres you may not
|
||||||
|
have seen in other database systems, and talk about how you can make use
|
||||||
|
of those features in your applications. Queries, indexing, data types,
|
||||||
|
and more will all be up for discussion as we show you examples of just
|
||||||
|
what Postgres can do.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/XFyi6RjFNOE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/XFyi6RjFNOE" rel="nofollow">https://youtu.be/XFyi6RjFNOE</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
307
schedule/presentation/367/index.html
Normal file
307
schedule/presentation/367/index.html
Normal file
|
|
@ -0,0 +1,307 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: FOSS in A/V: How Open Signal uses FOSS to further their mission in a closed source industry</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: FOSS in A/V: How Open Signal uses FOSS to further their mission in a closed source industry">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/367/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: FOSS in A/V: How Open Signal uses FOSS to further their mission in a closed source industry" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">FOSS in A/V: How Open Signal uses FOSS to further their mission in a closed source industry</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
| <span class="presentation-time" data-starttime="2025-08-03T09:45:00" data-endtime="2025-08-03T10:30:00">Sun 03 Aug 9:45 a.m.–10:30 a.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/defb0eddb52e991820f90d0eecc944f7?s=120&d=mp" alt="Chris Polanco" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/513/index.html">Chris Polanco</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Chris is the Production Manager at Open Signal the Organization that helps FOSSY get online every year. While his background is in tradition film making his early start at Open Signal volunteering at 14 allowed him to get familiar with broadcast basics and techniques he later adapter to his film career. Combined with a passion for right to repair he really early on started to combine film and broadcast techniques with as much FOSS software he could get his hands on to recreate advanced industry practices at smaller self hosted scales. The unique combination of experience came in handy during the pandemic as he helped many small non-profits transition online while equipment shortages were common. He's now spending his time at Open Signal pushing a FOSS first philosophy in Video Production a usually heavily proprietary and secretive industry.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/9fa42951d6f1d5532c26032ca89a01b6?s=120&d=mp" alt="Allison Randal" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/539/index.html">Allison Randal</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><p>Open Signal is a media arts center in Portland, Oregon, with a mission
|
||||||
|
to nurture the change-making power of community media in service of a
|
||||||
|
just and equitable world. In this conversation with Chris Polanco, their
|
||||||
|
Production Services Production Manager, we'll talk about how and why
|
||||||
|
Open Signal chooses open source as much as they can in a world of SaaS
|
||||||
|
and proprietary products. They do this not just while partnering with
|
||||||
|
us to do audio/video for FOSSY, but across their work with local youth
|
||||||
|
and other media makers. We'll talk about some of the hardware and
|
||||||
|
software they use, how those choices are informed by their mission,
|
||||||
|
and what sort of future they are working toward.</p></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="mt-4">Videos</h4>
|
||||||
|
|
||||||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/mZurP-Uucn8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||||
|
|
||||||
|
|
||||||
|
<p style="margin-top: 1rem">Available sources:</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://youtu.be/mZurP-Uucn8" rel="nofollow">https://youtu.be/mZurP-Uucn8</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
286
schedule/presentation/368/index.html
Normal file
286
schedule/presentation/368/index.html
Normal file
|
|
@ -0,0 +1,286 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Presentation: Lightning Talks!</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Presentation: Lightning Talks!">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/schedule/presentation/368/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Presentation: Lightning Talks!" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Lightning Talks!</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
| <span class="presentation-time" data-starttime="2025-08-03T10:30:00" data-endtime="2025-08-03T12:30:00">Sun 03 Aug 10:30 a.m.–12:30 p.m.</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row presentation-details">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<h2 class="mt-4">Presented by</h4>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
|
||||||
|
<li class="mb-4 pb-2">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/cfc9c8fd254228bec9bf46dbeba90719?s=120&d=mp" alt="Pono Takamori" class="rounded-circle img-fluid">
|
||||||
|
<p>
|
||||||
|
<strong><a href="../../../speaker/profile/482/index.html">Pono Takamori</a></strong><br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<div class="bio"><p>Daniel Pono Takamori is the Community Organizer at Software Freedom Conservancy. He's been involved in FOSS for almost 20 years and worked for non-profit FOSS organizations for over a decade. While not at his computer he likes to play go, cook vegetables and ride his bike.</p></div>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-9 presentation-abstract">
|
||||||
|
<h2 class="mt-4">Abstract</h4>
|
||||||
|
|
||||||
|
<div class="abstract pb-4"><p><ol>
|
||||||
|
<li>Vagrant Cascadian: An Impatient Application of Reproducible Builds</li>
|
||||||
|
<li>Josh Lee: The OSS Hero's Journey</li>
|
||||||
|
<li>Julia Zimmerman: Quantifying Sky Signals: Simulating Visibility Correlations in Radio Interferometry</li>
|
||||||
|
<li>Zhi Qu: BLuE CRAB: RSSI Detection Pattern Analysis for Flagging System Development</li>
|
||||||
|
<li>Andrew Washburn: Using Quantum Computers to Detect Continuous Gravitational Waves</li>
|
||||||
|
<li>Audrey Evergreen: Avoiding Desk Neck While Coding</li>
|
||||||
|
<li>Neal Gompa: <a href="http://X.Org">X.Org</a> Foundation and SFC</li>
|
||||||
|
<li>Mark Davis: H.U.G.E. Announcement</li>
|
||||||
|
<li>Alya Abbott: Choosing Software that Won't Screw You</li>
|
||||||
|
<li>Emily Soward: What and Why we Need AI Preparedness</li>
|
||||||
|
<li>Brendan Conoboy: Command Line Control</li>
|
||||||
|
<li>Eric Schultz: Glasgow Embedded Code of Conduct</li>
|
||||||
|
</ol></p></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
330
speaker/create/index.html
Normal file
330
speaker/create/index.html
Normal file
|
|
@ -0,0 +1,330 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Log in</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Log in">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/account/login/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Log in" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title"></h1>
|
||||||
|
<p class="lead"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4">
|
||||||
|
<form method="POST" action="https://2025.fossy.us/account/login/" autocapitalize="off" >
|
||||||
|
<legend>Log in to an existing account</legend>
|
||||||
|
<div class="alert alert-primary">Please note that accounts from 2024 are not transferred for privacy reasons.</div>
|
||||||
|
<input type="hidden" name="csrfmiddlewaretoken" value="vp1vHSK5od1NHFAF4oX5EggOBifAxmvVK00r0ttEjKGY4HcJGm5bo9EHaGypfMaV">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
|
||||||
|
|
||||||
|
<label class="control-label " for="id_username">Username</label>
|
||||||
|
|
||||||
|
|
||||||
|
<div class=" ">
|
||||||
|
<input type="text" name="username" maxlength="30" class=" form-control" required id="id_username">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
|
||||||
|
|
||||||
|
<label class="control-label " for="id_password">Password</label>
|
||||||
|
|
||||||
|
|
||||||
|
<div class=" ">
|
||||||
|
<input type="password" name="password" class=" form-control" required id="id_password">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
|
||||||
|
<div class="">
|
||||||
|
<div class="checkbox">
|
||||||
|
|
||||||
|
<label >
|
||||||
|
<input type="checkbox" name="remember" id="id_remember"> <span>Remember Me</span>
|
||||||
|
</label>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<input type="hidden" name="next" value="/speaker/create/" />
|
||||||
|
|
||||||
|
<button type="submit" class="btn btn-primary">Log in</button>
|
||||||
|
<a href="../../account/password/reset/index.html" class="btn btn-link">Forgot your password?</a>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<p class="login-signup">
|
||||||
|
<small>
|
||||||
|
Don't have an account? <strong><a href="../../account/signup/index.html%3Fnext=%252Fspeaker%252Fcreate%252F.html">Sign up</a></strong>
|
||||||
|
</small>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function() {
|
||||||
|
$('#id_username').focus();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
274
speaker/profile/409/index.html
Normal file
274
speaker/profile/409/index.html
Normal file
|
|
@ -0,0 +1,274 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Nathan Willis</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Nathan Willis">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/409/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Nathan Willis" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Nathan Willis</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Nathan Willis is a type designer and consultant who arguably spends too much of his time thinking about personal-data exports, linkrot, and the use of conjunctions in software documentation. He currently owns no pets, and is using predictive next to complete this sentence to reach the recommended word-count; and I don't know what to do so I can find out if you can get a chance to chat with me about it on the way home till after 6pm pm but I will be there in a few minutes until the last time I get home I think that I can find out if you can get a chance to chat with me about it on the way home.</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/320/index.html">Reversing Metcalfe's Law: undermining the software-service–industrial complex with .zip files</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Saturday
|
||||||
|
5:30 p.m.–6:15 p.m.
|
||||||
|
in
|
||||||
|
338
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/3ca112e70c96f0995e6c22d629065a9d?s=512&d=mp" alt="Nathan Willis" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
276
speaker/profile/410/index.html
Normal file
276
speaker/profile/410/index.html
Normal file
|
|
@ -0,0 +1,276 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Romeo S</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Romeo S">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/410/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Romeo S" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Romeo S</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://punkto.org">https://punkto.org</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Romeo is a GNU/Linux sysadmin with nearly a decade of experience. As a college dropout, he has taught himself the ins and outs of GNU/Linux and of countless software projects from scratch with no tour guide or teacher. A consistent habit of "being the edge case that you want to see in the world" has forced him to develop a knack for solving problems that developers and maintainers typically don't see coming. Primarily specializing in HPC-related infrastructure management, he lives in a world of "except for on this cluster" and "except for in this context." This environment of asterisks has forced adaptability, which has translated into a lot of experience in diving into the weeds. He has spoken at several conferences in the PNW and nationwide, seeking to educate as well as to entertain. Originally a Portland native, he now lives in central Washington while working remotely for a company in Seattle.</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/305/index.html">Riding Subiquity With No Handlebars</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Thursday
|
||||||
|
2 p.m.–2:45 p.m.
|
||||||
|
in
|
||||||
|
329
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/a21b52ef15870f902160efdf7a59650f?s=512&d=mp" alt="Romeo S" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
281
speaker/profile/411/index.html
Normal file
281
speaker/profile/411/index.html
Normal file
|
|
@ -0,0 +1,281 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Karen Sandler</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Karen Sandler">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/411/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Karen Sandler" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Karen Sandler</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://floss.social/@karen">@karen@floss.social</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/o0karen0o">@o0karen0o</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Karen M. Sandler is an attorney and the executive director of Software Freedom Conservancy, a 501c3 nonprofit organization focused on ethical technology. As a patient deeply concerned with the technology in her own body, Karen is known as a cyborg lawyer for her advocacy for free software as a life-or-death issue, particularly in relation to the software on medical devices. She co-organizes Outreachy, the award-winning outreach program for people who face under-representation, systemic bias, or discrimination in tech. She is an adjunct Lecturer-In-Law of Columbia Law School and a visiting scholar at University of California Santa Cruz.</p>
|
||||||
|
<p>Prior to joining Software Freedom Conservancy, Karen was the executive director of the GNOME Foundation. Before that, she was the general counsel of the Software Freedom Law Center. She began her career as a lawyer at Clifford Chance and Gibson, Dunn & Crutcher LLP.</p>
|
||||||
|
<p>Karen received her law degree from Columbia Law School where she was a James Kent Scholar and co-founder of the Columbia Science and Technology Law Review. She also holds a bachelor of science in engineering from The Cooper Union for the Advancement of Science and Art.</p>
|
||||||
|
<p>Sandler has won awards for her work on behalf of software freedom, including the O’Reilly Open Source Award in 2011. She received an honorary doctorate from KU Leuven in 2023.</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/365/index.html">Q&A on SFC's lawsuit against Vizio</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Saturday
|
||||||
|
9:45 a.m.–10:30 a.m.
|
||||||
|
in
|
||||||
|
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/5e77b6e5743dd274a0bc00806cb082de?s=512&d=mp" alt="Karen Sandler" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
280
speaker/profile/412/index.html
Normal file
280
speaker/profile/412/index.html
Normal file
|
|
@ -0,0 +1,280 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Bryan T Ollendyke</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Bryan T Ollendyke">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/412/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Bryan T Ollendyke" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Bryan T Ollendyke</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="index.html">@btopro</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/btopro">@btopro</a>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://hax.psu.edu">https://hax.psu.edu</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Educator and Full time Open source front-end developer at Penn State. Bryan's life is open source web contribution. He is the lead of the HAX community. HAX The Web is an effort to "hack" the way the world works with the web by making web authoring ubiquitous for all users, regardless of skill and ability. Treat the web like a file format and make high quality, accessible, fast, usable tools for anyone to self publish.</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/333/index.html">HAX Lab: FOSS community becomes the classroom</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Saturday
|
||||||
|
3 p.m.–3:45 p.m.
|
||||||
|
in
|
||||||
|
329
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/a7fb7ea999fa93ee6c34445dbe95b150?s=512&d=mp" alt="Bryan T Ollendyke" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
281
speaker/profile/413/index.html
Normal file
281
speaker/profile/413/index.html
Normal file
|
|
@ -0,0 +1,281 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Rich Bowen</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Rich Bowen">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/413/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Rich Bowen" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Rich Bowen</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://rbowen/@https://mastodon.social/">@https://mastodon.social/@rbowen</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/rbowen">@rbowen</a>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://rcbowen.com/">https://rcbowen.com/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Rich Bowen has been involved in open source since before we started calling it that. He's a member of the Apache Software Foundation, where
|
||||||
|
he currently serves as a board member and Vice Chair. Rich is an Open Source Strategist at AWS.</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/282/index.html">Raising the bar on your conference presentation</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Friday
|
||||||
|
11:45 a.m.–12:30 p.m.
|
||||||
|
in
|
||||||
|
328
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/ca2ff6fc6168da8d5d183f6cc182e048?s=512&d=mp" alt="Rich Bowen" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
278
speaker/profile/414/index.html
Normal file
278
speaker/profile/414/index.html
Normal file
|
|
@ -0,0 +1,278 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Tom Lechner</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Tom Lechner">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/414/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Tom Lechner" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Tom Lechner</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://mastodon.social/@tomsart">@tomsart@mastodon.social</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://tomlechner.com">https://tomlechner.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Tom Lechner has been using open source software to produce his artwork since the early 2000s. He created the desktop publishing program Laidout to quickly lay out his comic books, and is currently using various open source software to work on video game projects, including VR with the Godot Engine. Tom is based in the Portland, Oregon area.</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/353/index.html">Making waterfalls in Godot</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Thursday
|
||||||
|
3 p.m.–3:45 p.m.
|
||||||
|
in
|
||||||
|
338
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/49c733dd94c6a53e2c79b3c7bab5ac24?s=512&d=mp" alt="Tom Lechner" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
281
speaker/profile/416/index.html
Normal file
281
speaker/profile/416/index.html
Normal file
|
|
@ -0,0 +1,281 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Patrick Masson</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Patrick Masson">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/416/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Patrick Masson" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Patrick Masson</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://fosstodon.org/@massonpj">@massonpj@fosstodon.org</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/- -">@- -</a>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://pmasson.wordpress.com/">https://pmasson.wordpress.com/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Patrick joined Apereo as Executive Director in 2023, serving previously as Interim General Manager of the Foundation. Before Apereo, Patrick served as General Manager for the Open Source Initiative after working within higher education IT for over twenty years, including roles as CIO within the State University of New York and CTO at the University of Massachusetts' Office of the President. He was the Director of Technology at the SUNY Learning Network and the UCLA Media Lab.</p>
|
||||||
|
<p>Patrick is an adjunct instructor with SUNY Albany's College of Computing and Information and speaks frequently on topics related to open source software, open education, and educational technology. Patrick is the co-founder of EDUCAUSE's "Openness" Constituency Group and served on his local school board from 2014-2018.</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/329/index.html">Open Source Software in Higher Education: A Community Report</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Saturday
|
||||||
|
10:45 a.m.–11:30 a.m.
|
||||||
|
in
|
||||||
|
329
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/fa1314a7ff59cc080caa13d08e8af83e?s=512&d=mp" alt="Patrick Masson" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
276
speaker/profile/418/index.html
Normal file
276
speaker/profile/418/index.html
Normal file
|
|
@ -0,0 +1,276 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Mark Wong</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Mark Wong">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/418/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Mark Wong" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Mark Wong</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="index.html">@markwkm</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Mark Wong is currently employed by EDB and is a PostgreSQL Major Contributor. His background is in database systems solutions and performance. He has contributed to various aspects of the community such as a benchmarking kits, Google Summer of Code mentor, <a href="http://PGConf.US">PGConf.US</a> Organizer, Portland PostgreSQL Users Group Co-Organizer, PostgreSQL Fundraising Group Member, and Treasurer and President of PgUS.</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/363/index.html">An Adventure in Data Modeling</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Saturday
|
||||||
|
2 p.m.–2:45 p.m.
|
||||||
|
in
|
||||||
|
338
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/3a0b97dae73e7e0caef2caf1cbf360ae?s=512&d=mp" alt="Mark Wong" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
280
speaker/profile/421/index.html
Normal file
280
speaker/profile/421/index.html
Normal file
|
|
@ -0,0 +1,280 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Tyler Menezes</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Tyler Menezes">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/421/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Tyler Menezes" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Tyler Menezes</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/tylermenezes">@tylermenezes</a>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://www.tyler.vc/">https://www.tyler.vc/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Tyler Menezes is the CEO of CodeDay, where he has helped more than 70,000 students use technology and creativity to make meaningful changes to their world.
|
||||||
|
Born in Canada but raised in the Pacific Northwest, he briefly attended the University of Washington before dropping out to start a Y Combinator and venture-backed social video startup in 2011. This, combined with stints working in machine learning at Microsoft Research and as a programmer at several Seattle startups, led to his work finding data-driven solutions to build a more talented, creative, and innovative technology workforce since 2014.</p>
|
||||||
|
<p>Tyler's work in education has led to his recognition as one of Forbes Magazine's "30 Under 30" in 2019, Forbes "Under 30 Innovators You Need to Know", Tech&Learning Magazine's "Most Inspiring in EdTech", and others. He has authored many peer-reviewed publications on CS education, served as Principal Investigator on National Science Foundation awards for STEM education, and has spoken about technical mentorship at leading software engineering and education conferences around the world.</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/330/index.html">Nurturing the Next Generation of Open Source Contributors</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Friday
|
||||||
|
2 p.m.–2:45 p.m.
|
||||||
|
in
|
||||||
|
329
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/f08a209cc18b45478bcf963761e09329?s=512&d=mp" alt="Tyler Menezes" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
287
speaker/profile/422/index.html
Normal file
287
speaker/profile/422/index.html
Normal file
|
|
@ -0,0 +1,287 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Darrick J. Wong</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Darrick J. Wong">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/422/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Darrick J. Wong" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Darrick J. Wong</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://djwong.org/">https://djwong.org/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Darrick was the Linux maintainer of the XFS filesystem from 2016 to 2023, and wrote the (recently released) online fsck tool for it. He is now experimenting with improving the fuse I/O model so that filesystem metadata parsing can occur in userspace while most of the I/O hot path remains in the kernel.</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/359/index.html">Panel: Ongoing Things in the Kernel Community</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Thursday
|
||||||
|
3 p.m.–3:45 p.m.
|
||||||
|
in
|
||||||
|
328
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/345/index.html">Things I've Learned as a Linux Kernel Maintainer</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Saturday
|
||||||
|
10:45 a.m.–11:30 a.m.
|
||||||
|
in
|
||||||
|
333
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/03b253c356505f59dccbcea9438ab049?s=512&d=mp" alt="Darrick J. Wong" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
274
speaker/profile/424/index.html
Normal file
274
speaker/profile/424/index.html
Normal file
|
|
@ -0,0 +1,274 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Root</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Root">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/424/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Root" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Root</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Root has been a long time advocate in the privacy and security space, and enjoys teaching others how to stay safe and secure while online and to avoid common pitfalls. Root is a beginner developer and enjoys breaking things while learning what makes it tick ;) this has lead to a wide range of experience across many different subjects. Root is also part of the team that runs <a href="http://Soprani.ca">Soprani.ca</a>, <a href="http://Cheogram.com">Cheogram.com</a> and JMP.chat and is heavily focused on their acceptance and success, in both the freedom-ware communities and beyond.</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/286/index.html">Setting Up A Simple XMPP Server</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Saturday
|
||||||
|
2 p.m.–2:45 p.m.
|
||||||
|
in
|
||||||
|
327
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/5b2b58c93321529b9daf5353f51cf4c3?s=512&d=mp" alt="Root" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
276
speaker/profile/427/index.html
Normal file
276
speaker/profile/427/index.html
Normal file
|
|
@ -0,0 +1,276 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Stacey Haysler</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Stacey Haysler">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/427/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Stacey Haysler" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Stacey Haysler</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://fosstodon.org/@shaysler">@shaysler@fosstodon.org</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>By day, Stacey is the CFO and COO of PGX, Inc., a Postgres-only consultancy in San Francisco, California. She is also the President of the U.S. PostgreSQL Association (PgUS), a nonprofit dedicated to the advancement of PostgreSQL through education and advocacy. Stacey is an organizer of the San Francisco Bay Area PostgreSQL Users Group. Stacey is also the creator of the original PostgreSQL Community Code of Conduct, and was the first Chair of the Community CoC Committee for three years. Stacey is a Django Software Foundation Member, as well as a former Board Member of the DSF. She founded and served on the Board of the Django Events Foundation North America, and was a primary organizer of DjangoConUS 2015 – 2018. Stacey is a Contributing Member of Software in the Public Interest. By night, she sleeps, since that's a lot to do every day!</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/292/index.html">Databases and Diversity</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Friday
|
||||||
|
3 p.m.–3:20 p.m.
|
||||||
|
in
|
||||||
|
327
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/e623438da0a375c5f1a910c3cbb9048e?s=512&d=mp" alt="Stacey Haysler" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
280
speaker/profile/428/index.html
Normal file
280
speaker/profile/428/index.html
Normal file
|
|
@ -0,0 +1,280 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Christophe Pettus</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Christophe Pettus">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/428/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Christophe Pettus" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Christophe Pettus</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://fosstodon.org/@cep">@cep@fosstodon.org</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/xof">@xof</a>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://thebuild.com">https://thebuild.com</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Christophe is the CEO of PGX Inc., a boutique PostgreSQL consultancy based in Alameda, California. He has been working with PostgreSQL since version 7, and databases for even longer.</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/355/index.html">Up Against the WAL: The Write-Ahead Log in PostgreSQL</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Friday
|
||||||
|
11:45 a.m.–12:30 p.m.
|
||||||
|
in
|
||||||
|
327
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/6a961946320454083402aab4cde4bba9?s=512&d=mp" alt="Christophe Pettus" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
278
speaker/profile/429/index.html
Normal file
278
speaker/profile/429/index.html
Normal file
|
|
@ -0,0 +1,278 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Nate Boot</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Nate Boot">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/429/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Nate Boot" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Nate Boot</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://nateynateynate/@https://fosstodon.org/">@https://fosstodon.org/@nateynateynate</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/nateboot">@nateboot</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Nate is a life-long tech enthusiast, only recently finding himself in the world of developer advocacy at AWS. He currently works exclusively with the open source OpenSearch project. He loves show-and-tell, and really enjoys learning about new stuff and then sharing it with anyone who will listen. He has a particular love for retro technology and old video games. His most formative years were spent in BBS teleconferences in the pacific northwest.</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/296/index.html">Herding Hackers and Hawking Code: The Hustle of a Developer Advocate</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Friday
|
||||||
|
10:45 a.m.–11:30 a.m.
|
||||||
|
in
|
||||||
|
328
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/025f12920bbddc2c9abdad0a0a9e435a?s=512&d=mp" alt="Nate Boot" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
291
speaker/profile/432/index.html
Normal file
291
speaker/profile/432/index.html
Normal file
|
|
@ -0,0 +1,291 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>FOSSY 2025 | Speaker - Neal Gompa</title>
|
||||||
|
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
|
||||||
|
<link rel="icon" href="../../../static/build/img/favicon.ico" />
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<meta property="og:title" content="FOSSY 2025 | Speaker - Neal Gompa">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://2025.fossy.us/speaker/profile/432/">
|
||||||
|
<meta name="twitter:site" content="@conservancy">
|
||||||
|
<meta name="twitter:image:alt" content="FOSSY 2025 | Speaker - Neal Gompa" />
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image" content="https://2025.fossy.us/static/build/img/conservancy_logo_tall_mono.png" />
|
||||||
|
<meta property="og:image:width" content="400" />
|
||||||
|
<meta property="og:image:height" content="400" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||||
|
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css">
|
||||||
|
<link href="../../../static/build/scss/app.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var CONF_TZ = "US/Pacific";
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body class="">
|
||||||
|
|
||||||
|
<header class="bg-washed-yellow pa2"><div class="container"><strong>Archived:</strong> This is an archive from the 2025 conference. See <a href="https://fossy.us/">fossy.us</a> for the latest event.</div></header><header class="clearfix d-print-none">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: rgb(19,119,82); background: linear-gradient(124deg, rgba(19,119,82,1) 0%, rgba(19,106,119,1) 100%); margin-bottom: 1rem">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||||
|
<a class="washed-yellow hover-washed-yellow" href="../../../index.html" style="text-decoration: none">
|
||||||
|
FOSSY 2025
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse" id="navbarText">
|
||||||
|
<ul class="navbar-nav mr-auto">
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../about/index.html">About FOSSY</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Attend
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/tickets/index.html">Tickets</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../travel/index.html">Travel and Lodging</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/volunteer.html">Volunteer</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/code-of-conduct.html">Code of Conduct</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/health-and-safety/index.html">Health and Safety</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../attend/terms-and-conditions/index.html">Terms and Conditions</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="https://sfconservancy.org/privacy-policy/">Privacy policy</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
|
||||||
|
<a class="nav-link dropdown-toggle" href="index.html#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
Program
|
||||||
|
</a>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../schedule/index.html">Schedule</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../pages/tracks/index.html">Tracks</a>
|
||||||
|
|
||||||
|
<a class="dropdown-item " href="../../../call-for-proposals/index.html">Proposals</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="nav-item ">
|
||||||
|
|
||||||
|
<a class="nav-link" href="../../../sponsorship/index.html">
|
||||||
|
Sponsorship
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<main role="main" class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col page-header">
|
||||||
|
<h1 class="page-title">Speaker - Neal Gompa</h1>
|
||||||
|
<p class="lead">
|
||||||
|
|
||||||
|
<i class="bi-mastodon"></i> <a href="https://social.gompa.me/@neal">@neal@social.gompa.me</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
<i class="bi-twitter-x"></i> <a href="https://x.com/Det_Conan_Kudo">@Det_Conan_Kudo</a>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
||||||
|
<i class="bi-globe2"></i> <a href="https://neal.gompa.dev/">https://neal.gompa.dev/</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8">
|
||||||
|
|
||||||
|
|
||||||
|
<h3>Biography</h3>
|
||||||
|
|
||||||
|
<div class="bio"><p>Neal Gompa is a developer for–and contributor to–Fedora, CentOS, and openSUSE. Neal focuses primarily on the base Linux system components, such as package and software management, and desktop Linux. He believes in “upstream first,” which has led him all over the open source world. In addition to open source work as a consultant through Velocity Limitless, he is also a co-host on the Sudo Show podcast where he talks about "the business of open source."</p></div>
|
||||||
|
|
||||||
|
<h3 class="my-4">Presentations</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/299/index.html">Popping kernels for Linux distributions</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Thursday
|
||||||
|
2 p.m.–2:45 p.m.
|
||||||
|
in
|
||||||
|
328
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="../../../schedule/presentation/359/index.html">Panel: Ongoing Things in the Kernel Community</a>
|
||||||
|
|
||||||
|
–
|
||||||
|
Thursday
|
||||||
|
3 p.m.–3:45 p.m.
|
||||||
|
in
|
||||||
|
328
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
|
||||||
|
<img src="https://secure.gravatar.com/avatar/af8a9293484ed04b89081d848929b19a?s=512&d=mp" alt="Neal Gompa" class="rounded-circle img-fluid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/js/app.js" type="text/javascript"></script>
|
||||||
|
<script src="../../../static/build/js/jquery.formset.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||||
|
<script src="../../../static/build/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!--no-analytics-->
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../../../static/build/js/luxon.min.js"></script>
|
||||||
|
<script src="../../../static/build/js/schedule.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-4 d-print-none">
|
||||||
|
<div class="container py-4">
|
||||||
|
<!-- <div class="row">
|
||||||
|
<div class="col-md-12 pb-12 text-center" style="margin-top: 0px;margin-bottom: 0px;border-bottom-style: solid;border-bottom-width: 0px;padding-bottom: 20px;">Wifi: FOSSY <i>(see Registration for older wifi)</i><br/>PIN: outreachy1000</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4 pb-4">
|
||||||
|
<strong>FOSSY 2025</strong> <br>
|
||||||
|
July 31st – August 3rd 2025 <br>
|
||||||
|
Portland, OR<br>
|
||||||
|
Timezone: PDT - UTC-7 <br>
|
||||||
|
<a href="mailto:conference@sfconservancy.org" alt="Email"><i class="bi-envelope-fill"></i></a>
|
||||||
|
<a href="https://x.com/conservancy" alt="Twitter"><i class="bi-twitter-x"></i></a>
|
||||||
|
<a href="https://social.sfconservancy.org/conservancy" alt="Mastodon"><i class="bi-mastodon"></i></a>
|
||||||
|
<a href="https://www.facebook.com/SoftwareFreedomConservancy/" alt="Facebook"><i class="bi-facebook"></i></a>
|
||||||
|
<a href="https://www.youtube.com/@softwarefreedomconservancy8558/videos" alt="YouTube"><i class="bi-youtube"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-center">
|
||||||
|
<p class="text-secondary">Brought to you by</p>
|
||||||
|
<a href="https://sfconservancy.org"><img src="../../../static/build/img/conservancy_logo.svg" alt="Software Freedom Conservancy logo" class="footer-image"></a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 pb-4 text-right">
|
||||||
|
<small>
|
||||||
|
<a href="index.html#">Back to top</a><br>
|
||||||
|
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||||
|
<a href="../../../credits/index.html">Credits</a>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue