Skip to content

Instantly share code, notes, and snippets.

View unforced's full-sized avatar

Aaron Gabriel Neyer unforced

View GitHub Profile
@unforced
unforced / index.html
Created January 18, 2026 16:55
Parachute Daily launch post - HTML preview
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Parachute Daily: Start With Your Own Thinking</title>
<style>
body {
font-family: Georgia, serif;
max-width: 680px;
margin: 40px auto;
@unforced
unforced / parachute-daily-launch.md
Last active January 18, 2026 16:54
Parachute Daily launch blog post draft

Parachute Daily: Start With Your Own Thinking

We might augment our intelligence with new AI tools, but in order to do so well, we need to start with our own intelligence. To write, to think, to explore our own minds—this is the essence of Parachute Daily.

We simply start by writing. Or speaking. Or typing. However we best find ourselves. Let's begin there.


A Simple Journal

@unforced
unforced / lvb-announcement.html
Created January 18, 2026 14:40
Learn Vibe Build announcement for Substack
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>You Have Ideas. Now Make Them Real.</title>
<style>
body { font-family: Georgia, serif; max-width: 600px; margin: 40px auto; padding: 20px; line-height: 1.6; }
h1 { font-size: 28px; }
h2 { font-size: 22px; margin-top: 32px; }
h3 { font-size: 18px; margin-top: 24px; }
@unforced
unforced / index.html
Created January 16, 2026 01:34
Week in Review - January 8-15, 2026
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Week in Review | January 8-15, 2026</title>
<style>
* {
margin: 0;
padding: 0;
@unforced
unforced / parachute-hosted-tiers.html
Created January 7, 2026 00:05
Parachute Hosted - Tiered Pricing Model Research
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parachute Hosted - Pricing Tiers</title>
<style>
* {
margin: 0;
padding: 0;
@unforced
unforced / analysis.md
Created June 27, 2025 22:12
Gemini, Codex, Goose - Comparative Analysis

Comparative Analysis: Gemini CLI vs Goose vs Codex

Executive Summary

This comparative analysis examines three leading AI-powered development tools: Gemini CLI (Google), Goose (Block), and Codex (OpenAI). Each represents a different approach to AI-driven development assistance, with distinct architectural philosophies, implementation strategies, and target audiences. This analysis identifies key strengths, learning opportunities, and potential cross-pollination areas between these sophisticated systems.

Architecture Comparison

Implementation Languages and Paradigms

@unforced
unforced / index.html
Created June 3, 2025 07:15
A better second brain
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Future of AI Memory: An Interactive Exploration</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
body {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Confluence - A Vision for Sovereign Knowledge</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
import time
import random
import uuid
from functools import partial
from google.cloud import storage
def time_test(func):
start_time = time.monotonic()
func()
end_time = time.monotonic()
FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -y ruby2.2.1 git
RUN apt-get clean
RUN gem install bundler
RUN locale-gen en_US en_US.UTF-8
EXPOSE 8080
RUN git clone https://github.com/cwruacm/acm.case.edu /opt/acm/
RUN cd /opt/acm && bundle install