HN user

czue

1,765 karma

An American software developer and solopreneur living in Cape Town, South Africa.

http://www.coryzue.com

Posts58
Comments173
View on HN
github.com 29d ago

Show HN: SaaS Pegasus – the original Django boilerplate, now MIT-licensed

czue
6pts1
www.astralcodexten.com 5mo ago

Best of Moltbook

czue
10pts1
www.coryzue.com 6mo ago

When the line stops going up

czue
5pts1
posthog.com 7mo ago

Learnings from 1 year of agents: PostHog AI

czue
4pts3
www.coryzue.com 8mo ago

How to disable Cloudflare proxying when you can't access the dashboard

czue
8pts0
www.coryzue.com 1y ago

Using Claude in GitHub: Hype and Reality

czue
2pts0
www.coryzue.com 1y ago

What will it feel like living a world where AI is smarter than all of us?

czue
1pts5
www.joshwcomeau.com 1y ago

The Height Enigma (CSS)

czue
26pts1
www.astralcodexten.com 1y ago

My Takeaways from AI 2027 [Scott Alexander]

czue
5pts0
www.coryzue.com 1y ago

I spent the last day using MCP and it kind of blew my mind

czue
3pts0
lifeweeks.app 1y ago

Show HN: I made a website where you can create your own "Life in Weeks" timeline

czue
247pts68
andysblog.uk 1y ago

How Your Thinking Changes at 60

czue
2pts3
www.coryzue.com 1y ago

Using coding skills to make passive income

czue
259pts141
www.coryzue.com 1y ago

Headspace Is Perishable

czue
11pts0
www.saaspegasus.com 1y ago

Better, Faster Python Projects: A Deep Dive into Uv

czue
3pts0
www.coryzue.com 1y ago

Adding Bluesky-powered comments to any website in five minutes

czue
17pts1
longform.asmartbear.com 1y ago

Legacy

czue
1pts0
www.coryzue.com 1y ago

Time Wealth: Why having more free time can be better than becoming rich

czue
6pts1
www.saaspegasus.com 2y ago

Learn to use WebSockets with Django by building your own ChatGPT

czue
1pts0
www.astralcodexten.com 2y ago

The Road to Honest AI

czue
6pts0
www.coryzue.com 2y ago

The Sport of Indie Hacking

czue
1pts0
www.coryzue.com 2y ago

The slow death of authenticity in an attention economy

czue
469pts333
scriv.ai 2y ago

How do domain-specific chatbots work? A retrieval augmented generation overview

czue
136pts37
www.saaspegasus.com 3y ago

A Codebase That Makes Codebases

czue
88pts23
synthetic-times.com 3y ago

The Synthetic Times: an AI-generated artificial news site

czue
2pts2
www.coryzue.com 3y ago

Quit Monkey, Grit Monkey

czue
1pts1
gurwinder.substack.com 3y ago

TikTok May Be a Chinese Superweapon

czue
12pts7
www.coryzue.com 3y ago

Farewell, Building in Public

czue
2pts0
www.saaspegasus.com 3y ago

The Essential Django Deployment Guide

czue
2pts0
www.saaspegasus.com 3y ago

Django and OpenAPI: Front end the better way

czue
2pts0

Author/creator here. I just released an MIT-licensed version of SaaS Pegasus - a proprietary Django starter codebase I've been maintaining nearly full-time for the last 7 years. Hoping to make it the best way to start new Django projects. If you're a Django dev, give it a look and let me know if you have any feedback!

This is cool! The UI is very slick. I made lifeweeks.app around this time last year, and have wanted to add more future-facing stuff ever since. There's some fun ideas in here I might "borrow" :)

I tried to figure out ideas for monetizing lifeweeks when it blew up, but I just don't think there is much money in apps like this. Maybe if you can do something around physical products, e.g. posters or something and take a cut or affiliate. But I think these apps just don't have the shape of something that people think they should pay for. Would be happy to be proven wrong though!

As I said in the post, whether or not you believe it's coming (which I am somewhat agnostic on) it's worth taking seriously because the probability is definitely not zero. It's worth listening to how some of the people on the forefront of the research/commercial AI developments talking about it. E.g. Dwarkesh podcast.

I just added an embedding option. It's not documented yet, but you can view the source of my own site to see how it works. In terms of styling, it currently only supports specifying the background color (color or hex code) via url param.

https://www.coryzue.com/life/

This is the relevant source code. The only somewhat complicated bit is dynamically setting the height via messages:

<section class="section"> <div class="container"> <iframe id="life-timeline" src="https://lifeweeks.app/embed/life/czue/?bg=white" frameborder="0" width="100%" scrolling="no" ></iframe> </div> </section> <script> window.addEventListener('message', function(e) { if (e.data.type === 'resize') { document.getElementById('life-timeline').style.height = e.data.height + 'px'; } }); </script>

After I saw Gina Trapani's "Life in Weeks" last week I got the idea that letting anyone make one would be a cool product. I've been working on this off and on for the last week, and have gotten it good enough where I'm ready to get feedback. You can add "Periods" (colors) as well as "Events" to your timeline. You can also record longer details that show up on hover, automatically add world events, and export/import the entire thing to a file.

Happy to answer any questions about the app or build any feature requests in near-real time!