mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-21 14:50:57 +00:00
ec004bdbac
The thread is broader than just the tech intersection — it covers lived experience, design implications, and recovery. Updated all 14 references across essays, themes, homepage, and indexes. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
61 lines
3.9 KiB
HTML
61 lines
3.9 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Kenneth Reitz{% endblock %}
|
|
|
|
{% block extra_head %}
|
|
<style>
|
|
.muted { color: #888; font-size: 0.95rem; }
|
|
body.dark-mode .muted { color: #777; }
|
|
.muted a { color: #888; }
|
|
body.dark-mode .muted a { color: #777; }
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="post-content">
|
|
<h1>Kenneth Reitz</h1>
|
|
|
|
<p class="subtitle muted">Creator of <a href="/software/requests" class="project-link color-software">Requests</a>,
|
|
<a href="/software/certifi" class="project-link color-software">Certifi</a>,
|
|
<a href="/software/pipenv" class="project-link color-software">Pipenv</a>, <a href="/software/records" class="project-link color-software">Records</a>,
|
|
<a href="/software/maya" class="project-link color-software">Maya</a> & <a href="/software" class="project-link color-software">more</a>.</p>
|
|
|
|
<section>
|
|
<p>I'm best known for <a href="/software/requests">Requests</a>, the Python HTTP library. I built <a href="https://kjvstudy.org">kjvstudy.org</a>, a free digital study Bible. Most of what I write these days lives at the intersection of technology and consciousness — what we owe each other when we build things people think through.</p>
|
|
|
|
<p>I live openly with <a href="/mental-health">schizoaffective disorder</a>. I'm a husband and father. Tech used to be my identity. Now it's <a href="/essays/2026-03-18-values_i_outgrew_and_the_ones_that_stayed">craft, not lifestyle</a>.</p>
|
|
|
|
<p>This site is the whole picture — <a href="/essays">essays</a>, <a href="/software">software</a>, <a href="/poetry">poetry</a>, <a href="/photography">photography</a>, <a href="/music">music</a>, and the <a href="/artificial-intelligence">AI work</a> that ties it together. Fifteen years of thinking out loud.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Recent Writing <small style="font-size: 0.6em; font-weight: normal;">(<a href="/archive">archive</a>)</small></h2>
|
|
|
|
{% for post in recent_posts %}
|
|
<div style="display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem;">
|
|
{% if post.unique_icon %}<img src="{{ post.unique_icon }}" alt="" style="width: 22px; height: 22px; flex-shrink: 0; margin-top: 0.1rem;">{% endif %}
|
|
<div style="font-size: 1.15rem;">
|
|
<strong><a href="{{ post.url }}">{{ post.title }}</a></strong>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<p class="muted">Browse the full <a href="/archive">archive</a>, or subscribe via <a href="/feed.xml">RSS</a>.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Threads</h2>
|
|
|
|
<p>A few threads run through everything here. <a href="/themes/for-humans-philosophy">The "for humans" philosophy</a> — that technology should serve human mental models, not the other way around. A growing body of <a href="/themes/algorithmic-critique">algorithmic critique</a>, tracing how engagement optimization consumes <a href="/essays/2025-08-26-the_algorithm_eats_virtue">virtue</a>, <a href="/essays/2025-08-27-the_algorithm_eats_language">language</a>, <a href="/essays/2025-08-27-the_algorithm_eats_love">love</a>, <a href="/essays/2025-08-27-the_algorithm_eats_democracy">democracy</a>, <a href="/essays/2025-08-27-the_algorithm_eats_reality">reality</a>, and <a href="/essays/2025-09-01-the_algorithm_eats_time">time</a>. Writing about <a href="/themes/mental-health">mental health</a>, <a href="/themes/consciousness-and-ai">consciousness and AI</a>, <a href="/themes/open-source-and-community">fifteen years of open source</a>, and <a href="/themes/spiritual-practice-and-technology">programming as contemplative practice</a>.</p>
|
|
</section>
|
|
|
|
<hr>
|
|
|
|
<section style="margin-top: 2rem;">
|
|
<p>Thank you for your attention — it's the only currency that actually matters. If anything here resonated, I'm glad. If you're curious about what drives the work, my <a href="/values">values</a> are the closest thing to a map I've got.</p>
|
|
</section>
|
|
|
|
|
|
</div><!-- end post-content -->
|
|
{% endblock %}
|