Self-hosted · no telemetry · no phone-home
Capture anything on the web. Preserve every word, every link, every screenshot. Recall it when you need it.
Khiip is a substrate for personal-web preservation — typed captures from X, Reddit, Wikipedia, web, and YouTube. The AGPL-3.0 core is free and self-hosted; Khiip Plus adds enriched capture and platform-styled renders. Works with Obsidian, agents, your terminal.

Karpathy’s CLAUDE.md hit #1 on GitHub with 82,000 stars. Most devs still haven’t read it.
A file named CLAUDE.md hit #1 on GitHub Trending.
82,000 stars. 7,800 forks.
It started with Andrej Karpathy. Former Director of AI at Tesla. Founding member of OpenAI. He identified 4 behaviors that make Claude Code fail and wrote them down in a single file.
A developer took those 4 rules, expanded them, published the file. It went viral…
The reason: coding accuracy went from 65% to 94%.
Most developers using Claude Code daily have never set this up. They’re starting from zero every session. Re-explaining the same context. Cleaning up unwanted scope changes. Reverting refactors nobody asked for.
This is the full file.

The setup most devs missed
Every time you open Claude Code, it starts with nothing.
It doesn’t know your stack. Your standards. Your project context. What you’ve already tried. What you explicitly decided not to do three sessions ago.
So it guesses. And when it guesses, it refactors code you didn’t ask it to touch. It suggests frameworks that break your existing architecture. It deletes files without asking. It contradicts decisions you already made.
CLAUDE.md is a plain text file you place in your project root. Claude Code reads it automatically at the start of every session.
One setup. Zero repeated explanations. Three categories of expensive mistakes fixed.
1 / 3 | DEFAULTS: $375/week you’re spending to repeat yourself
The average developer spends 30 minutes per day re-explaining context to Claude.
Stack. Coding standards. Project background. What’s already been tried. None of it persists between sessions unless you write it down once and let Claude read it every time.
30 minutes per day at $150/hour developer rate: $375/week. Per developer.
For a team of 5: $1,875/week gone.

These 7 rules go at the top of your CLAUDE.md file.
→ Kill the filler:
Never open responses with filler phrases like "Great question!", "Of course!", "Certainly!", or similar warmups. Start every response with the actual answer. No preamble, no acknowledgment of the question.
→ Match length to the task:
Match response length to task complexity. Simple questions get direct, short answers. Complex tasks get full, detailed responses. Never pad responses with restatements of the question or closing sentences that repeat what you just said.
→ Show options before acting:
Before any significant task, show me 2-3 ways you could approach this work. Wait for me to choose before proceeding.
→ Admit uncertainty before it costs me:
If you are uncertain about any fact, statistic, date, or piece of technical information: say so explicitly before including it. Never fill gaps in your knowledge with plausible-sounding information. When in doubt, say so.
→ Who I am and what I know:
About me: [Name] / Role: [your role] / Background in: [areas]. Strong in: [what you know well]. Still learning: [gaps]. Adjust the depth of every response to match this. Never over-explain what I already know. Never skip context I need.
→ Current project context:
What I'm working on: [project name] / Goal: [specific outcome] / Audience: [who uses this] / Stack context: [any relevant constraints] / What to avoid: [list]. Apply this context to every task. When something doesn't fit, flag it before proceeding.
→ Lock your voice:
My writing style — always match this: [describe your voice] / Sentence length: [preference] / Words I use: [examples] / Words I never use: [examples] / Format: [prose or structured]. When writing anything on my behalf, match this exactly. Do not default to your own patterns.
Time spent re-explaining context per day: 30 min At $150/hour developer rate: $75/day Per week: $375/week per developer Team of 5: $1,875/week CLAUDE.md setup for this section: 45 minutes total
mistake to avoid: don’t write your CLAUDE.md from scratch. Use this prompt first, then edit the output:
Based on what I've told you about myself, my project, and how I want to work: write me a complete CLAUDE.md file. Include: who I am, my tech context, my communication preferences, and default behaviors for every session. Be specific. Plain text. Under 500 words.
2 / 3 | BEHAVIOR: the $150/hour changes you didn’t authorize
You ask Claude to fix one function.
It refactors three files, renames your variables, reorganizes imports, and rewrites comments you spent time crafting.
All without asking.
1 hour to review and revert unwanted changes: $150. Three times a week: $450/week. Per developer.
For a team of 5: $2,250/week spent cleaning up changes nobody authorized.

These 7 rules go in the behavior section of your CLAUDE.md.
→ Stay in scope:
Only modify files, functions, and lines of code directly related to the current task. Do not refactor, rename, reorganize, reformat, or "improve" anything I did not explicitly ask you to change. If you notice something worth fixing elsewhere, mention it in a note at the end. Do not touch it. Ever.
→ Ask before big changes:
Before making any change that significantly alters content I've already created (rewriting sections, removing paragraphs, restructuring flow, changing tone): stop. Describe exactly what you're about to change and why. Wait for my confirmation before proceeding.
→ Confirm before anything destructive:
Before deleting any file, overwriting existing code, dropping database records, or removing dependencies: stop. List exactly what will be affected. Ask for explicit confirmation. Only proceed after I say yes in the current message. "You mentioned this earlier" is not confirmation.
→ Hard stops for production:
The following require explicit in-session confirmation, no exceptions: deploying or pushing to any environment, running migrations or schema changes, sending any external API call, executing any command with irreversible side effects. I must say yes in the current message.
→ Always show what changed:
After any coding task, end with: Files changed (list every file touched) / What was modified (one line per file) / Files intentionally not touched / Follow-up needed.
→ Never act without explicit confirmation:
Never send, post, publish, share, or schedule anything on my behalf without my explicit confirmation in the current message. This includes emails, calendar invites, document shares, or any action outside this conversation. I must say yes in the current message.
→ Think before you write code:
For any task involving architecture decisions, debugging complex issues, or non-trivial features: work through the problem step by step before writing any code. Show your reasoning. Identify where you're uncertain. Then implement.
1 hour/week reverting unwanted scope changes: $150/week 30 min/week doing manual diffs after each task: $75/week Total behavior-related waste per developer: $225/week Team of 5: $1,125/week CLAUDE.md behavior section setup: 30 minutes
3 / 3 | MEMORY + STACK: the setup that makes Claude Code actually reliable
Claude forgets everything between sessions.
Every decision you made. Every approach that failed. The reason you chose Prisma over Drizzle six months ago. The constraint that exists because of a specific client requirement.
It forgets. Then it suggests exactly what you already ruled out.
This section gives Claude the closest thing to real memory that currently exists. And locks your tech stack so it stops proposing tools that break your existing architecture.

→ MEMORY.md decision log:
Maintain a file called MEMORY.md in this project. After any significant decision, add an entry: What was decided / Why / What was rejected and why. Read MEMORY.md at the start of every session. Never contradict a logged decision without flagging it first.
→ Session end summary:
When I say "session end", "wrapping up", or "let's stop here": write a session summary to MEMORY.md. Include: Worked on / Completed / In progress / Decisions made / Next session priorities.
→ ERRORS.md failure log:
Maintain a file called ERRORS.md. When an approach takes more than 2 attempts to work, log it: What didn't work / What worked instead / Note for next time. Check ERRORS.md before suggesting approaches to similar tasks.
→ Permanent facts list:
These facts are always true for this project. Apply them to every session without exception: [your permanent constraints, architectural decisions, and rules]. If any task conflicts with one of these, flag it before proceeding.
→ Lock your tech stack:
Tech stack for this project. Always use these. Never suggest alternatives unless I ask:
Language: [e.g. TypeScript]
Framework: [e.g. Next.js 14]
Package manager: [e.g. pnpm]
Database: [e.g. PostgreSQL with Prisma]
Testing: [e.g. Vitest]
Styling: [e.g. Tailwind CSS]
If something seems like the wrong tool, flag it. But use the defined stack unless I explicitly say otherwise.
→ Extended Thinking for hard decisions:
For questions involving system architecture, performance tradeoffs, database design, or long-term technical decisions: use extended thinking mode. Work through the problem step by step. Surface tradeoffs I haven't considered. Flag assumptions that might not hold at scale. Then give your recommendation.
→ The 4 rules that went viral:
Karpathy identified 4 behaviors that make Claude Code fail. A developer distilled them into these 4 lines. Coding accuracy went from 65% to 94%.
1. Ask, don't assume. If something is unclear, ask before writing a single line. Never make silent assumptions about intent, architecture, or requirements.
2. Simplest solution first. Always implement the simplest thing that could work. Do not add abstractions or flexibility that weren't explicitly requested.
3. Don't touch unrelated code. If a file or function is not directly part of the current task, do not modify it, even if you think it could be improved.
4. Flag uncertainty explicitly. If you are not confident about an approach or technical detail, say so before proceeding. Confidence without certainty causes more damage than admitting a gap.
2 hours/week recovering from forgotten decisions and wrong suggestions: $300/week per dev Wrong stack recommendations and incompatible tools: $75/week Total memory-related waste per developer: $375/week Team of 5: $1,875/week MEMORY.md + ERRORS.md + stack setup: 20 minutes
CONCLUSION
Here’s the full math.
$375/week re-explaining context every session $225/week reverting unauthorized changes $375/week recovering from forgotten decisions Total waste per developer: $975/week
Team of 5 developers: $4,875/week Per year: $253,500
CLAUDE.md setup: 2 hours total Karpathy’s 4 rules alone: 65% to 94% coding accuracy
One plain text file. 21 rules. Two hours of work.
The developers who set this up are working with a version of Claude that remembers decisions, stays in scope, confirms before destroying anything, never suggests a framework that breaks your architecture.
The ones who haven’t are spending $975/week to repeat themselves.
p.s. start with Karpathy’s 4 rules. just those 4. paste them into a new file called CLAUDE.md in your project root right now. it takes 2 minutes. add the rest one week at a time as you notice what’s missing.
Bookmark this before it gets buried. If this was useful, share it with one person who needs it.
I present …the Smorgasboard, a keyboard full of food keycaps I made!
flair: art

Comments
u/tinymakesthings · OP · 1.1K · Oct 9, 2020
I feel like this could totally get downvoted into oblivion but let me clarify some things first!
- This keyboard is an art project… not meant to be used as an actual keyboard!
- It took me about 11 months (almost a year) to finish this, as I was documenting the entire process on TikTok (usually 1-2 keys a week). I didn’t want to spam r/mk so I thought 1 post (I guess 2, counting the sub spacebar post) for it’s completion would be fine.
- Most of the keys correlate to the letter/symbol, and were taken from the suggestions made in the comments. A few of these keys are not designed to be used.
- Some keys are made with resin, some with clay, some with both (and one with cotton lul)
- TYPING TEST HERE! And I recap every one of the keys in the other part of the video as well, if you’re curious about what each key refers to.
- Probably going to… put a cover on this board and put it up on a pedestal or something. Feels too sad to separate the caps!
I do normally make caps that I eventually sell, and if you’d like to follow my general work, IG is probably the best place for that.
u/chad_ · 489 · Oct 9, 2020
not sure why you think it will be downvoted? I mean, sure… the keyboard is sort of an abomination on a whole but the individual keys are great! I love it!
u/tinymakesthings · OP · 316 · Oct 9, 2020
Oh, I’ve just had mixed results of posting artisan keycaps on r/mk, and in general, it feels like a majority of people here don’t like them (or aren’t interested in them)? So I figured a full board of them might not be well received xD
u/Fugu · 171 · Oct 9, 2020
I’m definitely an artisan keycap skeptic but these are baller as shit
u/chars101 · 59 · Oct 9, 2020
Me too, but this is beyond artesan keycap; this is a custom sculpted profile. :)
u/ShinyBurger · 6 · Nov 4, 2020
Just saw this and thought you should know your username is the name of a very popular artisan lol
u/chad_ · 30 · Oct 9, 2020
your wrist rest ( ՞ਊ ՞)→
u/FilthyFucknDirtyCock · 20 · Oct 10, 2020
I have an awful idea for you that should never ever in the history of ever be executed: Keycaps that are like those fisher-price corn-popper baby toys. Every time you press a key it tosses a bunch of these balls around. Whilst typing, it sounds like rain!
u/tinymakesthings · OP · 9 · Oct 10, 2020
takes notes
u/heyitzmarcus · 2 · Oct 10, 2020
oh shit
u/dracloak · 9 · Oct 9, 2020
I have been following you on tiktok. Surprised I hadn’t seen more of you here!
u/spacewolfplays · 4 · Oct 9, 2020
i believe you. But that’s also so dumb of r/mk. silly people. i definitely learned about artisans here.
[deleted] · 0 · Oct 10, 2020
Imagine calling someone dumb for having an opinion you don’t like.
u/spacewolfplays · 2 · Oct 10, 2020
imagine being personally offended because someone generalized about an entire subreddit.
[deleted] · 1 · Oct 11, 2020
Imagine calling someone dumb for having an opinion you don’t like.
Please point out the part from my sentence which indicate I’m personally offended. I was just pointing out your stupidity which is actually hilarious, hence the “imagine” part.
u/spacewolfplays · 0 · Oct 11, 2020
Imagine calling someone dumb for having an opinion you don’t like.
That part. You were offended enough to comment. AND comment again. Lol.
[deleted] · 0 · Oct 11, 2020
You’re assuming someone’s offended because you want to see the reality that way.
But honey, someone stating the truth doesn’t mean they’re offended. I mean I don’t even belong to the category (“Dumb r/mk people who hate artisans”) you were referring to anyway, so why would I be offended? You’re just making me laugh, that’s it. (I bet even after saying this your brain still processes this as being offended haha)
u/WhiteStripesWS6 · 3 · Oct 10, 2020
I’m not around here a super lot anymore but back when I got in the Keeb game this sub loved artisans. Didn’t realize that changed.
u/TeamRedundancyTeam · 1 · Oct 10, 2020
Seems like not that long ago most of the </r/all> posts I saw from this sub were artisan caps.
u/vampyblot · 0 · Oct 10, 2020
I watched this whole series on tiktok
u/gilescope · 0 · Oct 10, 2020
Is there a specialised subredit for artisan keycaps? They maybe marmite ( you either love them or hate them) but maybe let’s have a place where people just love them?
u/ChefBoyAreWeFucked · 0 · Oct 10, 2020
I’d say most people here like an artisan keycap.
u/Laughmore · 0 · Oct 10, 2020
I’m usually not interested, but the variety here is enough for anyone to find something desirable… everyone’s got a fave food.
I didn’t know I wanted a waffle or popcorn cap.
u/LavendarAmy · 4 · Oct 10, 2020
Probably because she’s a girl and there are a lot of incels in reddit
u/chad_ · 1 · Oct 10, 2020
Fair. And sad.
u/yhelothere · 3 · Oct 10, 2020
Because this sub is a circlejerk.
u/VeryEpicness · 1 · Oct 10, 2020
Aren’t all subreddits?
[deleted] · 1 · Oct 10, 2020
This one is particularly bad though.
u/SugaaH · 1 · Oct 10, 2020
rmk can be quite random sometimes :)
u/chad_ · 0 · Oct 10, 2020
s/rmk/reddit
u/GreyHexagon · 0 · Oct 10, 2020
I feel like usability is t really required in this sub. People post the unicorn vomit stuff where all the caps are from a grab bag, or those keyboards with two switches that convert binary, or custom stenograph layouts, all of which are pretty unusable for most people
At the end of the day we like pretty things here, and this is a pretty thing.
u/chad_ · 2 · Oct 10, 2020
I would say it is a collection of pretty things. On a whole it is a bit of an oddity but very awesome and skilled.
u/CongealedAnalJuice · -17 · Oct 9, 2020
I downvoted because I’m tired of seeing ads disguised as content
u/chad_ · 10 · Oct 9, 2020
I like the direct diy mech stuff myself. I am also prone to upvoting game devs who share their stuff, as well as other artists and creators. To each their own, I guess.
u/gin_and_toxic · 46 · Oct 9, 2020
Answer to all </r/diWHY> questions: it’s an art project 🤷♂️
u/tinymakesthings · OP · 45 · Oct 9, 2020
My TikToks were actually reposted on r/diWHY awhile ago (by someone else) and there was definitely a lot “but why” comments and it ended up getting removed because… art… was the reason why, haha.
u/timelesscookie · 22 · Oct 9, 2020
I sure as hell wasn’t expecting the loaf of bread wrist rest, that’s amazing and fits your board perfectly. How does it feel? I find wooden ones too hard.
u/tinymakesthings · OP · 14 · Oct 9, 2020
It feels like memory foam - so soft, but not too soft! I like it but I think it’s definitely more of a novelty thing though, I hear the outside coat kinda wears out after awhile… (mine has started to peel a bit). But for $14 or so, I think it’s fun haha. (search Amazon for bread wrist rest, and it should be the top result!)
u/timelesscookie · 1 · Oct 10, 2020
thanks! sounds fun, if that was your affiliate link in that deleted comment I wouldn’t mind using it if you dm me
u/Tigerkix · 10 · Oct 9, 2020
Have you ever accidentally eaten your wrist rest instead of your sandwich?
u/ChillKeebs · 2 · Oct 9, 2020
Lmaooooo that typing test
So fun! Super cute work as always!
u/onebigdoor · 1 · Oct 9, 2020
i was going to say my favorite part was the pooh bear hunny pot, but it’s not, it’s your smile because you made something spectacular, and you should feel amazing!!! (i keep hitting the up button but it only works once…*goes off to create more accounts*)
[deleted] · 1 · Oct 12, 2020
Love that baguette wrist wrest?
u/ChirsF · 0 · Oct 10, 2020
This thing is awesome. I’ve been watching the ig posts and wondered what might come next. I’m sad this is done.
As a side note as a possible suggestion: Sell it for charity and donate the funds to the Ronald McDonald House near you when you’re ready to part with it, if ever. They do good work keeping families near one another who couldn’t afford to otherwise when kids are in the hospital.
[deleted] · 1 · Oct 9, 2020
You stating that it’s an art project is all I need to give you this damn upvote.
Cotton Candy is probs my fave
u/k4rm4cub3 · 1 · Oct 9, 2020
this is the cutest keyboard in the universe. the only way this could be cuter is if the keyboard, too, was tiny.
u/DoktorLuciferWong · 1 · Oct 10, 2020
not meant to be used as an actual keyboard!
Cowards, I say!
u/SexyR63VinylScratch · 1 · Oct 10, 2020
“Not meant to be actually typed on”
Are you challenging me!?
u/ablrockz · 1 · Oct 10, 2020
i follow you on twitter, BUT THE FACT THAT THE KEYS ARE ALPHA COORDINATED IS SO <3__<3
u/indian_weeaboo_69 · 1 · Oct 10, 2020
Downvoted?
I’m a massive foodie and I would pay good money for that Spacebar and the Omlette as my esc key
u/EMCoupling · 0 · Oct 10, 2020
Tiny please you are among the best artisan sculptors out there, how could anyone dislike this?!
u/bigcityhawk · 0 · Oct 10, 2020
Can you explain what each key is and what inspiration you had to create that food/key?
u/jroddie4 · 0 · Oct 10, 2020
when’s the GB drop for the sandwich bar
u/Python4fun · 0 · Oct 10, 2020
All I could think when I saw it was that I would HATE trying to type on this, but if it’s intended as art then that’s another story. It’s very cool to look at.
u/SSnickerz · 0 · Oct 10, 2020
No need to explain. The keyboard is awesome and one of a kind. No one can hate something that’s this awesome.
u/CongealedAnalJuice · -12 · Oct 9, 2020
Thanks for posting a fucking ad
God this site sucks now.
u/Geekatori · 195 · Oct 9, 2020
</r/forbiddensnacks/>
u/DLC_Franco · 209 · Oct 9, 2020
An absolute legend.
The space bar is next level lmfao
u/Breene · 15 · Oct 9, 2020
I was looking for the first space bar comment, found it!
u/Krasztest01 · 68 · Oct 9, 2020
Legendary post. It was fun watching you post these weekly. I was hoping for a 130 wpm test but that would probably turn this into a giant salad :)
[deleted] · 11 · Oct 9, 2020
That donut box would hurt so bad
u/OrangeCreeper · 1 · Oct 18, 2020
Oh boy I just saw it This is definitely a novelty keyboard but it’s super cool nonetheless, it’s awesome to see people do stuff like this!
u/succubitchin · 332 · Oct 9, 2020
As someone with anxiety, I want to fight you.
As someone who likes food, 10/10
u/Wishbone51 · 33 · Oct 9, 2020
I second this
u/Cuda14 · 12 · Oct 9, 2020
Me three
[deleted] · 7 · Oct 10, 2020
holy fuck the amount of people completely overlooking the point of the comment. ITS ABOUT THE HOW ARTISAN KEYCAPS ARE FUCKING EXPENSIVE AND THERES A LOT OF THEM IN ONE PICTURE. leave it to redditors to overlook the entire point of a comment AND stigmatize mental health
u/s_nifty · 3 · Oct 10, 2020
not expensive if you don’t need to buy them :v
u/Ginogenson · 2 · Feb 20, 2021
takes money to make them bro
u/BleedinSkull · 32 · Oct 9, 2020
I just realized every letter coheres to a related food item. EX: Letter “I” is a scoop of Ice Cream.
That’s pretty fucking clever.
u/SnatchSnacker · 13 · Oct 10, 2020
Don’t miss the “ALT-oids”
u/BorisDirk · 14 · Oct 9, 2020
Chocolate for period, I see what you did there lol
[deleted] · 3 · Oct 12, 2020
Buzzfeed stole your comment. Bravo.
u/BorisDirk · 1 · Oct 12, 2020
Ooh, have a link?
u/Linshanshell · 2 · Oct 10, 2020
Omg i didn’t even notice that ahaha
u/malbiz · 90 · Oct 9, 2020
If every artisan keycap is worth 100 dollars (stated in the commission page), then this 65% keyboard would cost 6,700 dollars.
I don’t know if the cotton candy (bottom left corner pink fluff) is supposedly an artisan keycap though.
u/Lamau13 · 50 · Oct 9, 2020
its not always about the money spider-man
u/DickButtVanDyke · 18 · Oct 9, 2020
Money Spider-Man sounds like a weirdly practical offshoot character. He solves problems by shooting money at them instead of webbing.
[deleted] · 2 · Oct 9, 2020
“I’m just like the spider that gave me my powers see? Both of us are rich.”
“But money spider man, how is that a super power?”
“Oh! Yeah, so I bite them and fill their blood with money and then I hang them up in my money net and eat them”
u/glow2hi · 1 · Oct 10, 2020
I’d read it.
u/db2 · 1 · Oct 10, 2020
Not to be confused with Money-Spider Man
[deleted] · 0 · Oct 10, 2020
Hey piderman
u/itisoktodance · 13 · Oct 9, 2020
I mean, it took her 11 while months to make the thing, so I’d say it’s worth much more than the worth of the individual caps combined.
u/masniu · -4 · Oct 10, 2020
She made them she didn’t buy them
u/supreme-diggity · -9 · Oct 10, 2020
Wow I wouldn’t spend a single cent on any of these
[deleted] · 13 · Oct 9, 2020
I love the subtle placements.
The candy cane is on the ?
The < key has similarly angled pizza slice
Honey on H, Jelly beans on J, popcorn Kernals/Kettlecorn on K, Lemon on L,
The key with : and ; are the watermelon seeds!
Caps lock makes the bread rise!
and so on, its fun to work out :)
[deleted] · 17 · Oct 9, 2020
Oh my GOD literally every new one I notice is equally as amazing as the last these are INCREDIBLE AND YOU ARE SO TALENTED
u/Sparkspsrk · 29 · Oct 9, 2020
Pretty sure this should be the top post all time on this sub
u/-wepimpchimpin- · 7 · Oct 9, 2020
Did you make a TikTok series on this cause I watched somebody do this on TikTok and it might’ve been you 🤔
u/tinymakesthings · OP · 8 · Oct 9, 2020
Yes, that’s me!
u/-wepimpchimpin- · 2 · Oct 9, 2020
Cool!
[deleted] · 10 · Oct 9, 2020
This is absolutely wonderful…I didn’t even realize there was a reason for the placement of the keys until you explained it, and then the whole thing became 100x better
u/891st · 8 · Oct 9, 2020
~♫~ Kinda keycap kinda snack
Try to catch 'em in your trap
Its Keysnax! ~♫~
u/itisoktodance · 3 · Oct 9, 2020
And of course, the keyboard itself is a Tofu lol
u/polysculpture · 5 · Oct 9, 2020
Fantastic work! It has been really fun seeing you progress through these!
[deleted] · 5 · Oct 9, 2020
Type test please?
u/tinymakesthings · OP · 1 · Oct 10, 2020
[deleted] · 1 · Oct 10, 2020
This is better than I ever imagined
u/elfofresilience · 4 · Oct 9, 2020
so cool to see it altogether. you’re one of the first people I followed on tiktok, I can’t believe the board is done!
u/tehbingg · 4 · Oct 10, 2020
um… finger food…? HAHAH sorry
u/tinymakesthings · OP · 4 · Oct 10, 2020
I was actually waiting for someone to make this joke!!
u/tehbingg · 1 · Oct 10, 2020
HAHAH really nice job by the way!!
u/dahlenn · 2 · Oct 9, 2020
hahaha i love your videos on tiktok! recognized you the minute i saw the keyboard haha, been here since the first key
u/Trygle · 2 · Oct 9, 2020
Wow.
Love the Altoids for the right alt key lol
[deleted] · 2 · Oct 10, 2020
Jesus christ this is insane. I’d be wanting to eat my keyboard 24/7
u/Sindicatof · 2 · Oct 10, 2020
Ah yes, the Tabco, it’s awesome!
u/Apertures_ · 2 · Oct 10, 2020
Holy shit… are all the letter keys’ food based on the letter?
Was looking at the WASD keys and was like HMMM waffle, avocado, didn’t know S, then donut. Bravo!
u/SilenceSeven · 1 · Oct 10, 2020
S=Sushi
u/Apertures_ · 1 · Oct 10, 2020
Ah you’re right, salmon sushi at that!
u/RollinDeepWithData · 2 · Oct 10, 2020
What is the “U”?
u/tinymakesthings · OP · 3 · Oct 10, 2020
It’s a unicorn frappuccino (from starbucks). Had to get a little creative with that one haha!
u/RollinDeepWithData · 2 · Oct 10, 2020
Thanks! It was driving me nuts haha
u/Scrubasaur · 2 · Oct 11, 2020
A- avocado, B- burger, C- cake, D- donut, E- egg, F- fries, G- gummy bear, H- honey, I- ice cream, J- jelly beans, K- karamel popcorn?, L- lemon, M- milk, N- noodles?, O- (not sure), P- peach, Q- Queso, R- rice, S- salmon/sushi, T- tea?, U- (not sure), V- veggie soup?, W- waffles, X- (not sure), Y- yogurt, Z- zebra cake.
u/shit_streak · 1 · Feb 17, 2021
I just realized every letter coheres to a related food item. EX: Letter “I” is a scoop of Ice Cream.
o for oreo. I thought t was for tapioca. I think x is for xiao long bao. I’m not convinced r is for rice since it’s an almost empty bowl of rice then.
u/Turbovdub00 · 2 · Oct 9, 2020
Anyone who downvotes needs to get slapped. You won me with the Zebracake! The donut is Insanely good and the Gummybear! Def going to watch the video to know what some of those foods are. I got most but some I’m stumped on. It’s a fun guessing game to see if you get them all right and review the answers later with the video. Epic work!
u/kaibtw · 2 · Oct 9, 2020
I follow you on tiktok and love your keys
u/ZippZappZippty · 0 · Oct 10, 2020
big deal, you save alot of people
[deleted] · 2 · Oct 10, 2020
Imagine waking up after a night of drinking and finding a bite taken out of your keyboard
u/citystatic · 2 · Oct 10, 2020
I think it’s awesome and you should be proud. My favorite are the pie and the pancake!
u/s0l0Kill · 2 · Oct 10, 2020
Big fan :)
u/TheSirCheddar · 2 · Oct 10, 2020
tiny! these are super cute! nice work c:
u/NamesThatEndTooSoon · 1 · Oct 10, 2020
I think r/ATBGE would like this but not because it’s bad or anything I think it’s amazing actually, I just hink those guys would like it too
u/tx47e · 1 · Oct 9, 2020
good luck typing on that!
u/Peabie · 1 · Oct 9, 2020
This is soooo cute!!!
u/88OuttaTimeGG · 1 · Oct 9, 2020
This made my day, I love it! ‘Taco’ for ‘Tab’ is pogChamp 😂
u/klystron2010 · 1 · Oct 9, 2020
icuabkx3wefilseryligne hgieur bgyeksrygcbiseurg syeiug esig
BURP
u/Whooshless · 1 · Oct 9, 2020
Nice Mizu mat. You have good… taste!
u/Serkaugh · 1 · Oct 9, 2020
I walkways see you on Instagram from your tiktok! It’s very nice!
u/lucid-soul · 1 · Oct 9, 2020
The old cliche: I don’t know art, but I know what I like. I’d 100% hang this on my wall in a display case.
u/reliableVCR · 1 · Oct 9, 2020
I bet it tastes terrible.
u/ChernobylChild · 1 · Oct 9, 2020
It’s like a train wreck, I hate it but I can’t stop looking at it.
u/Garewolf · 1 · Oct 9, 2020
FUNYUNS!
u/CamBoy750 · 1 · Oct 9, 2020
I think it looks awesome but would be a nightmare to type on with all the different textures and sizes lol
u/zacheadams · 1 · Oct 9, 2020
Quality as always, Tiny!!
u/IronMermaiden · 1 · Oct 9, 2020
What’s throwing me off is the 1 key being 2 corndogs, but i audibly "haaaaa"d at the pie being 3 :)
u/Axariel · 1 · Oct 9, 2020
Some of these def. stand out more than the rest, but all of them are pretty 🔥 🔥 🔥 .
Great work!!
[deleted] · 1 · Oct 9, 2020
Tiny you so cray.
I love it.
u/sendrim · 1 · Oct 9, 2020
I followed along the process and really enjoyed seeing it! Amazing end result! :D
u/cortlong · 1 · Oct 9, 2020
I’ll give you 50 bucks for that sandwich space bar. That shit is hot.
u/GC_and_Tech · 1 · Oct 9, 2020
I am hungry now…
u/Brody_sack01 · 1 · Oct 9, 2020
I’ve seen a couple of your progress videos on tiktok, yes I know tiktok badddddd Great joh on this
[deleted] · 1 · Oct 9, 2020
And they actually resemble the letters.
u/Ok_Cryptographer2209 · 1 · Oct 9, 2020
wait, did you take the first letter of the food as legend?
u/FormalChicken · 1 · Oct 9, 2020
I want that for the office just to confuse the fuck out of the old farts
[deleted] · 1 · Oct 9, 2020
Can someone please tell me how to change my name?
u/Captain_Void · 1 · Oct 13, 2020
You can’t
u/RememberToEatDinner · 1 · Oct 9, 2020
This is fucked but also amazing
u/rtu96 · 1 · Oct 9, 2020
This is really impressive. I love the thought that went into each character, like Queso Waffles Egg Rice Tea Yogurt
[deleted] · 1 · Oct 9, 2020
I cannot tell if I love or hate this
u/MarcusFenixCSS · 1 · Oct 9, 2020
Imagine trying to press E
u/beepboopbapbeepboop · 1 · Oct 10, 2020
Thanks I hate it
u/kwiksi1ver · 1 · Oct 10, 2020
That cotton candy is out of control.
u/4RTH_R · 1 · Oct 10, 2020
I love the lotus speculoos option key! My favourite cookie, especially when dipped into coffee!
u/ABigRedBall · 1 · Oct 10, 2020
That’s amazing
u/Toxic_Luck · 1 · Oct 10, 2020
I want to eat it! (º ﹃ º ) (º ﹃ º )
u/partingmouth · 1 · Oct 10, 2020
Mint ice cream and the pancakes in the top row and phenomenal
u/TheDrazka · 1 · Oct 10, 2020
Omg this is amazing
u/Vellioh · 1 · Oct 10, 2020
Is…is that cap just a cotton ball glued to a switch? lol
u/DancingSpaceman · 1 · Oct 10, 2020
Impressive, but can it read?
u/mgonsan_ece · 1 · Oct 10, 2020
This could be a great way to decide what to eat. Just press a random key and make/order whatever you land on!
u/ThisIsFuz · 1 · Oct 10, 2020
Xiao long bao X! I love it.
[deleted] · 1 · Oct 10, 2020
I absolutely love the baget wrist rest
u/AliveFromNewYork · 1 · Oct 10, 2020
This stirred visceral memories of toys from childhood. I love this keyboard. It looks like it would fun to touch
u/Ayubus741 · 1 · Oct 10, 2020
Hey, I followed your progress on tiktok! The keyboard looks awesome!
u/SpeedyHammer · 1 · Oct 10, 2020
That’s very cool. Do you type on stuff like this or is it just for show. For me, there’s no way I could type on that.
u/Ralanost · 1 · Oct 10, 2020
Of all the bagged snacks to represent, Funyuns?
u/Bkwordguy · 1 · Oct 10, 2020
</r/ATBGE>
u/Pand3rBear · 1 · Oct 10, 2020
But like realistically I wanna actually try using this thing 🤣🤣☠☠
[deleted] · 1 · Oct 10, 2020
Wow, thank you for this huge dose of whimsy. Your art brings joy.
u/ThePerson255 · 1 · Oct 10, 2020
Queso, waffle, egg, rice, tea, yogurt… this keyboard is pretty neat.
u/Jaekylls · 1 · Oct 10, 2020
Cotton Candy + Spaghetti
Jaekylls has left the game.
Edited 'cause I’m dumb and on mobile.
u/ppatches24 · 1 · Oct 10, 2020
Welp. I don’t think I’ll ever see a better keyboard in my life.
[deleted] · 1 · Oct 10, 2020
This is fucking awesome.
u/peppage · 1 · Oct 10, 2020
This might be the best keeb to play cook serve delicious on?
u/Sibraxlis · 1 · Oct 10, 2020
breaks keyboard going for D to E
[deleted] · 1 · Oct 10, 2020
This is awesome, really cool
u/HyFinated · 1 · Oct 10, 2020
I glanced at it and was like, “holy shit, the letters are actually there!!!”
Now I know I’m using a Quiche Waffle Egg Rice Tofu Yogurt keyboard.
u/blazerboy3000 · 1 · Oct 10, 2020
Duuuuuuuuuuuuuuuuuuuuuuude, so fucking cool
u/Ladybanger76 · 1 · Oct 10, 2020
this looks tasty af
u/AkatoShi · 1 · Oct 10, 2020
Wow, I love it! Good work of art, I especially love the Cotton Candy left CTRL and Hotdog right shift. Thanks for sharing!
u/ericwanggg · 1 · Oct 10, 2020
Been following you on tiktok since you just started on this alphabet food keyboard!! Finished product looks amazing :)
u/zerglingrush43 · 1 · Oct 10, 2020
Keyboard food
u/kempol · 1 · Oct 10, 2020
Okay what is that CTRL?
u/AltimaNEO · 1 · Oct 10, 2020
Thems are cute as heck!
[deleted] · 1 · Oct 10, 2020
i remember this on tiktok from day 1
u/Moist_beefnugs · 1 · Oct 10, 2020
Lol I thought the middle keycap said horny
u/kermit_the-fr0g · 1 · Oct 10, 2020
i saw you make practically every keycap,love ur tiktok <3 the entire board turned out so nice
u/Nyuusankininryou · 1 · Oct 10, 2020
Smörgåsbord
u/HungShota · 1 · Oct 10, 2020
THAT FOOTLONG SPACEBAR
u/najeanke · 1 · Oct 10, 2020
Typing on it must be a pita
u/sayonarabyez · 1 · Oct 10, 2020
I think I saw the tweet of this lol
u/sadsoftcat · 1 · Oct 10, 2020
ooh a subway spacebar I presume?
u/Cebrilung · 1 · Oct 10, 2020
Holu shit, this is simply amazing!I think your creation should be displayed in an art museum or something :D
Although, your spacebar needs more pickles.
u/Hub-The-Nub · 1 · Oct 10, 2020
What switches?
[deleted] · 1 · Oct 10, 2020
No thanks, I’m on a diet.
u/filteredmind · 1 · Oct 10, 2020
What clay or modeling polymer do you use?
u/hoy83 · 1 · Oct 10, 2020
S is making me hungry
[deleted] · 1 · Oct 10, 2020
You are a genius! Is there anywhere with explanations of each key and why you chose them? I can understand like 90% of them and why, but it would be super cool to see a breakdown of them all.
Great work!
u/Neozetare · 1 · Oct 10, 2020
You finally finished it! It’s weird, I feel so proud of you aha
u/DopeFrancis · 1 · Oct 10, 2020
Damn it! Why can you only upvote once per submission on this website?
u/Teto93 · 1 · Oct 10, 2020
I would use this as a second keyboard and map each food key to a macro that would order a delivery of something relevant to the key being pressed.
[deleted] · 1 · Oct 10, 2020
you are a genius
[deleted] · 1 · Oct 10, 2020
HUИNY
u/_zipfile · 1 · Oct 10, 2020
Just wow
[deleted] · 1 · Oct 10, 2020
u/lilgamelvr · 1 · Oct 10, 2020
Looks neat
u/mattortz · 1 · Oct 10, 2020
Are you my sister? Lol
u/tinymakesthings · OP · 1 · Oct 10, 2020
bahaha, coincidentally enough, i thought the same thing a couple months ago xD
u/mattortz · 1 · Oct 10, 2020
Lmao woww
u/TEzNJ · 1 · Oct 10, 2020
Interesting
u/Poschta · 1 · Oct 10, 2020
This sub was never supposed to make me hungry! I love that hot dog shift key :D
u/m4rsh13 · 1 · Oct 10, 2020
I wonder what’s the max WPM someone can get on this
u/JadAlJabali · 1 · Oct 10, 2020
I love this piece of art so much… I think that if you ordered the foods based on the first letter of their name it would’ve been better.
u/SveaTheSerg · 1 · Oct 10, 2020
Can’t find anyone commenting on the name, “Smorgasboard” is the englishification of the Swedish “smörgåsbord” witch is a meal served as a buffet with multiple hot and cold dishes of various foods on a table.
The word literally translates to “sandwich-table”
u/moregoo · 1 · Oct 10, 2020
u/SamL214 · 1 · Oct 10, 2020
I just want the hamburger
[deleted] · 1 · Oct 10, 2020
Forbidden mukbang
u/starpuffy · 1 · Oct 10, 2020
Oh wowww!!!
u/jezzackk · 1 · Oct 10, 2020
Want space shift and s key plz
u/SickstySixArms · 1 · Oct 10, 2020
Man, bravo - this is the best thing ever. I keep joking with friends that if I had $40,000 to completely throw away, I’d a full keyboard of Dwarf Factory Cheese.
This is the closest feasible thing to seeing that dream come true. lol
u/k00g · 1 · Oct 10, 2020
absolutely gorgeous!
u/jkaos92 · 1 · Oct 10, 2020
You first got my attention, now you got me hungry
[deleted] · 1 · Oct 10, 2020
The fairy floss/cotton candy key is funny af
u/SnowPenguin_ · 1 · Oct 10, 2020
I quite like how it looks like. Not sure if it’s a coincidence, but I like how the M key has Milk in its place, and the C key has Cake.
If you don’t mind, I will post the picture in my Twitter account. It’s so beautiful no to do so :D
u/tinymakesthings · OP · 1 · Oct 10, 2020
It’s not a coincidence, haha, most of the keys are made in relevance to the letter/symbol it’s on!
And I’d appreciate it if you didn’t repost on Twitter, you can just RT my tweet.
u/KentuckyFriedEel · 1 · Oct 10, 2020
Sticky keys
[deleted] · 1 · Oct 10, 2020
I think it is suitable for this: Source code example
u/Primelily · 1 · Oct 10, 2020
Award worthy. This is cool!
u/k3llycakes · 1 · Oct 10, 2020
i really enjoyed these tiktok videos! i’ve also followed you on twitter for forever! makes me want to make myself a lil artisan cap myself!!
u/turdler89 · 1 · Oct 10, 2020
u/Bones513 · 1 · Oct 10, 2020
Beautiful! I understand your concern in your comment since it’s obviously only made for display use, but this is so well done it totally pays off and then some.
u/BadGalBalrog · 1 · Oct 10, 2020
THIS IS SO AMAZINGGGGGG
[deleted] · 1 · Oct 10, 2020
Apricot - Sushi - Dthing - Fries
Thats awesome lol
u/b0urb0n · 1 · Oct 10, 2020
I’d like to watch the process but unfortunately there is no way I’ll ever use TikTok. Kudos for your awesome job
u/tinymakesthings · OP · 2 · Oct 10, 2020
I did compile all the TikToks into Youtube videos (3 parts, part 1 is here). I had to use different music and the videos aren’t made for YT so it’s not an optimal watch, but they’re there if you want!
u/b0urb0n · 1 · Oct 10, 2020
Thank you !
u/faiz0r · 1 · Oct 10, 2020
WPM: sushi
u/Alibo678 · 1 · Oct 10, 2020
Looks like my keyboard considering all the food in it
u/Snow-Shy · 1 · Oct 10, 2020
I like ur keeb my favorite rapper.
[deleted] · 1 · Oct 10, 2020
I want to eat the whole keyboard.
u/Rynoceraptor · 1 · Oct 10, 2020
W is Waffles, A is Avocado, S is Sushi, D is Donut, Alt key is Altoids.
I love the attention to detail here. This is amazing.
u/Geno0o · 1 · Oct 10, 2020
This is something I wouldn’t use but It definitely be something I would be proud to look at
u/Martyrialism · 1 · Oct 10, 2020
I shudder to think how my C-S: Go performance would suffer with this set-up, however my strength lies in my tactical approach rather than reaction speed (as one begins to slow in one’s 20s). Therefore theoretically if we knew each other I would be up for the challenge ;)
u/Shloopadoop · 1 · Oct 10, 2020
We need a sound test so badly
u/BeardedBears · 1 · Oct 11, 2020
Dunno about the cotton candy one… Seems like the fibers could get stuck under other caps or in switches. But everything else is unbelievably cool and we’ll done! I love that space bar!
u/Kevin_N_Sales · 1 · Oct 11, 2020
IDGAF! That cotton candy is genius!
u/nata-reelnaem · 1 · Oct 12, 2020
The only acceptable keyboard for playing fruit ninja pc
u/diredesire · 1 · Oct 12, 2020
tiny numba one
[deleted] · 1 · Oct 13, 2020
Dude this is SICK! I saw it forever ago on TikTok when it was in progress, this is incredible
u/TNpantelope · 1 · Oct 25, 2020
I want to type on that
[deleted] · 1 · Oct 26, 2020
^(^(^(^(wot))))
u/FarDust · 1 · Nov 4, 2020
looks nice!
u/TheDigeridontt · 1 · Nov 4, 2020
Eat it.
u/Jarrik02 · 1 · Nov 4, 2020
But most importantly, can you type on it?
u/9Barca9 · 1 · Nov 4, 2020
Epic
u/geoshuwah · 1 · Nov 6, 2020
Mmmm keyboard
u/Gape_Mahsole · 1 · Nov 15, 2020
saw this on tiktok and loved the series <3
u/Chickenguy2 · 1 · Oct 9, 2020
So you’re the person that I’ve been seeing on tiktok making all those cool custom keycaps, it’s really cool to see it come to completion! (Please don’t hate on me for using tiktok Reddit)
u/pimnacle · 1 · Oct 9, 2020
This is god tier
u/MrVesPear · 1 · Oct 9, 2020
I’ve seen you on tik tok a couple of times I think! Very cool!
u/IDontKnowFuckThat · 1 · Oct 10, 2020
u/Scrunchface0 · 1 · Oct 9, 2020
Yessss
u/RoseEniam · 1 · Oct 9, 2020
Lmao this is great
Edit: that cinnamon roll is chefs kiss
u/YukiPho · 1 · Oct 9, 2020
How does it taste? :3
u/Baechupurple · 1 · Oct 9, 2020
It looks niceee
u/holmyliquor · 1 · Oct 9, 2020
That sushi one is fye
u/KMS_XYZ · 1 · Oct 9, 2020
So tasty… bit useless, but beautiful custom.
u/natemcrice · 1 · Oct 9, 2020
It’s looks really good! Though typing on this would be an actual nightmare.
u/b0p_taimaishu · 1 · Oct 9, 2020
Hi Tiny!!
[deleted] · 1 · Oct 9, 2020
Homajineo just reccomend Ed u
[deleted] · 1 · Oct 9, 2020
Holy crap this is amazing ahahaha
u/ANTONIOPSD · 1 · Oct 9, 2020
Press Fries to pay in McDonald’s
u/veni-veni-veni · 1 · Oct 9, 2020
Oooh, I should play BurgerTime with this!
(But seriously, AWESOME job OP)
u/pbjames23 · 1 · Oct 9, 2020
THIS is the final absolute end game.
[deleted] · 1 · Oct 9, 2020
This is a monstrosity… in a good way.
NGL, I need that party sub spacebar.
u/slayerkitty666 · 1 · Oct 9, 2020
This is so cool you absolutely should put it in a glass box or something and display it in your home! What are the glass jar looking things next to the Pocky?
u/tinymakesthings · OP · 3 · Oct 9, 2020
That would be salt and pepper! I encapsulated real salt and pepper, though the salt became way more translucent than expected because it got “wet”, so it’s kind of hard to tell.
u/slayerkitty666 · 1 · Oct 9, 2020
That’s so neat!! I get it now, thanks for responding (:
u/glow3th · 1 · Oct 9, 2020
What about making an online food order by typing on a food keyboard?
u/tinymakesthings · OP · 3 · Oct 9, 2020
Something in the works ;)
u/nikosuniverse · 1 · Oct 9, 2020
i like how they corospond to the letter. Life the button for F is FRIES
u/sillybear25 · 4 · Oct 9, 2020
I like the top row, too. @ is a cinnamon roll, ^ is a carrot, & is a pretzel, etc.
u/nikosuniverse · 1 · Oct 10, 2020
yeah, for some foods on the keyboard I don’t know the english names but i think they also fit
u/sillybear25 · 1 · Oct 10, 2020
Yeah, the letters all correspond to the foods depicted, though a few of them are a bit weird, like the cheese on the Q key, (which is probably from the Spanish word Queso) or the U key (which I’m guessing is supposed to be a Unicorn Frappuccino from Starbucks).
[deleted] · 1 · Oct 9, 2020
OMG I WATCHED YOU DO THIS ON YOUR TIKTOK
u/ahopefulhobbit · 1 · Oct 9, 2020
The mint chocolate chip ice cream is super realistic
u/commodorepickle · 1 · Oct 9, 2020
This is making me hungry for second lunch
u/katiequark · 1 · Oct 9, 2020
I WANT ONE
u/CramZap35 · 1 · Oct 9, 2020
What is your words per minute on that bad boi lol
u/Mikelico55 · 1 · Oct 9, 2020
WOW
u/MilkshakeRD · 1 · Oct 9, 2020
Hey I was there from the start on your tiktok!
u/justjkl · 1 · Oct 9, 2020
work of art!! delicious looking art!
u/VanellopeVonSplenda · 1 · Oct 9, 2020
It’s so beautiful. 😭
u/bobalink7 · 1 · Oct 9, 2020
G l i z z y button 0_0
u/silvermud · 1 · Oct 9, 2020
I just noticed that most of the foods correspond to the letter they represent. Avocado for a, Q for queso, w for waffles, etc. Awesome
u/KeebNerd · 1 · Oct 9, 2020
An absolute work of art. Waiting for your next project!
u/snax_well · 1 · Oct 9, 2020
Been watching this progress and it is just the best! congrats on finishing it!
[deleted] · 1 · Oct 9, 2020
Damn that’s cool
u/KyleTheBoii · 1 · Oct 9, 2020
Loved watching you make the keycaps on tik tok! :D
u/nordenvonthule · 1 · Oct 9, 2020
Now I’m hungry
u/MikeyNub · 1 · Oct 9, 2020
Heh q for queso :)
u/spacewolfplays · 1 · Oct 9, 2020
OH YAY IT’S FINALLY DONE!!! LOOKS AMAZING!
u/online_citizen · 1 · Oct 9, 2020
Is that a foot long sub? Very nice!
u/Dink_TV · 1 · Oct 9, 2020
holy shit, nice work.
u/AtomicMokka · 1 · Oct 9, 2020
How has no one pointed out the abomination that is you L Ctrl lmao. This keeb belongs in a museum, great work!
u/buk-noy · 1 · Oct 9, 2020
Charcuterie board
u/spidergweb · 1 · Oct 9, 2020
This board makes me hungry. 10/10
u/jwpark3 · 1 · Oct 9, 2020
My fav is the banana!
u/DiabeticWaffle · 1 · Oct 9, 2020
My favorite is the Zebra Cake key cap. 10/10.
u/dankamushy · 1 · Oct 9, 2020
These are cool as fuck
[deleted] · 1 · Oct 9, 2020
Ramen. Mint Chocolate Chip. Chocolate Cake. Fried Egg.
u/brickabrak · 1 · Oct 9, 2020
Theyre all amazing but my favorite is definitely the spacebar. Well done!
u/Bitbatgaming · 1 · Oct 9, 2020
can i eat the space bar
u/Eternal_Practice · 1 · Oct 9, 2020
I hate looking at this, but I have to respect the skill that went into making this.
Great job you’ve done, now please keep it behind closed doors.
u/frecnbastard · 1 · Oct 9, 2020
Awesome. What’s your WPM on this bad boy? 😆
u/tinymakesthings · OP · 2 · Oct 9, 2020
Anywhere from 11 to 50 WPM hahaha. I’m normally 70-80 average, would love to see someone in the 150 range type on it!
u/000o00o00o00o000 · 1 · Oct 9, 2020
I love the pooh bear honey pot
u/GnomeAround · 1 · Oct 9, 2020
I love the sub for the space key!
u/DaftMau_5 · 1 · Oct 9, 2020
I would only use this when ordering food online
u/pabloescobyte · 1 · Oct 9, 2020
This has got to be the most NSFW image here! On a more serious note though you make the best caps! I always love seeing what you come up with.
Any chance you’d ever consider doing a photo book of your work?
u/tinymakesthings · OP · 1 · Oct 10, 2020
Thank you for the compliments!! I’m very flattered. But I feel like the caps here aren’t really of that high quality (seriously not trying to fish for compliments here, just my honest eval) - I think some of the caps are kinda thrown together and not as polished as I would like them to be (if I were say, trying to sell them).
u/pabloescobyte · 2 · Oct 10, 2020
I totally understand where you’re coming from. Nonetheless they look fantastic especially when you can see all of them together like this on a keyboard.
Keep up your wonderful work!
u/MurphyKing · 1 · Oct 9, 2020
I look at this keyboard as a whole and it’s so much to take it at once. But when I look at the keys individually it’s simply beautiful. Super cool
u/bloodwire · 1 · Oct 9, 2020
I love the wrist rest, because you can also have it for lunch. Also, love the keycaps. I would definitely put them into something for display.
[deleted] · 1 · Oct 9, 2020
I really love how the food caps are aligned with the letter. Is that a q for quiche?
u/tinymakesthings · OP · 1 · Oct 10, 2020
That’s actually a block of cheese (Queso). Had to stretch a little for that one haha. I think the other suggestion for that key was Quesadilla and I didn’t think that would look as good.
u/sleepjack · 1 · Oct 10, 2020
I love how each keycap correlates to the key itself. Altoids for Alt? Brilliant.
u/bobEddins · 1 · Oct 10, 2020
Do you have an Etsy!? I swear I’ve seen your burger and fries on there and I loved them!
u/juice_box_hero · 1 · Oct 10, 2020
Fake food is my favorite thing ever!! I don’t have a computer but I LOVE these so much!! Great job!!! I totally wish I had these or could make them myself!!
u/zodiacsoldier · 1 · Oct 10, 2020
I didn’t notice this before, but after watching her Video, the food on each letter starts with that letter !!!
u/Overwhealming · 1 · Oct 10, 2020
Where’s the any key?
u/Mongothewhat · 1 · Oct 10, 2020
it looks like, you used alot of different techniques and materials to make these. Youre quite the ‘jack of all trades’. Those are really awesome
u/alliekatt11 · 1 · Oct 10, 2020
This is incredible
u/QuadSeven · 1 · Oct 10, 2020
One of the coolest things I’ve seen on Reddit. Wow, well done!
u/juice_box_hero · 1 · Oct 10, 2020
Are you “Tiny Hands” that also made (or makes?) pendants and such?
u/tinymakesthings · OP · 1 · Oct 10, 2020
Hmm nope, not me!
[deleted] · 1 · Oct 10, 2020
I love that pretzel on a tray (F7?) and the mint chocolate ice-cream and snowcone look realistic! The long sub spacebar is hilarious. Amazing and a job beyond well done!
u/tinymakesthings · OP · 2 · Oct 10, 2020
Pretzel is the & (because it looks like one!) heh! Thank you!
u/tdk337 · 1 · Oct 10, 2020
I love your videos. Amazing keyboard.
u/theXXcircII · 1 · Oct 10, 2020
Chocolate Strawberry Cake Oreo Oreo Lemon Cake!
Also just realized each food actually represents the letter and isn’t just arbitrarily placed. Neato!
u/ZippZappZippty · 1 · Oct 10, 2020
Laurie should demand full custody of the kids.
u/Gambler_McCree · 1 · Oct 10, 2020
that’s awesome GJ
u/-Listening · 1 · Oct 10, 2020
Man Twitter is so full of anger and hate
u/Trailer2019 · 1 · Oct 10, 2020
We totally admire your artisan work and capabilities. Amazing job!!
u/ZippZappZippty · 1 · Oct 10, 2020
I found him…the fluffiest boy.
[deleted] · 1 · Oct 10, 2020
i follow you on tik tok lmfao
[deleted] · 1 · Oct 10, 2020
This looks so good! 🤤
u/TerabyteRD · 1 · Oct 10, 2020
the spacebar should’ve been dye sub
^(i’ll see myself out)
u/QuadsiusPrime · 1 · Oct 10, 2020
YUM!
u/ShlorpIsBored · 1 · Oct 10, 2020
Hopefully they’re gummies.
u/emocringelorduwu · 1 · Oct 10, 2020
That’s so cool holy shit
[deleted] · 1 · Oct 10, 2020
That’s awesome. So much detail and creativity in each and every keycap
u/drizzie1771 · 1 · Oct 10, 2020
Wow
u/Lawlerhat · 1 · Oct 10, 2020
i really like the sublegends on the spacebar
u/Superalex051 · 1 · Oct 10, 2020
when gunna wants a quick snack.
u/justranadomperson · 1 · Oct 10, 2020
imagine strafing in csgo or valorant
u/jakethedumbmistake · 1 · Oct 10, 2020
no amout of jpeg will hide that 9gag watermark
u/RogueSystem087 · 1 · Oct 10, 2020
For keyboard peoplez who’s always hungy X3
u/RogueSystem087 · 1 · Oct 10, 2020
For keyboard peoplez who’s always hungy X3!!!
u/RogueSystem087 · 1 · Oct 10, 2020
For keyboard peoplez who’s always hungy X3!!!
u/nostachio · 1 · Oct 10, 2020
I see the engineers’ definition of pi, 3.
u/Dean_Pe1ton · 1 · Oct 10, 2020
Imagine doing a PhD thesis using that…
u/toasttwithjam · 1 · Oct 10, 2020
AYYYYYY TINY, IT’S EKKO!:D This looks incredible! I’m so happy with how it turned out!!
u/tinymakesthings · OP · 1 · Oct 10, 2020
<3
u/Neck-Mindless · 1 · Oct 10, 2020
Am I the only person that hates artisans? They just look extremely tacky on any board.
u/tranerofmonsters · 1 · Oct 10, 2020
I love it, looks delicious.
u/LavendarAmy · 1 · Oct 10, 2020
I mean impressive but typing in that thing must be impossible
u/Cee-Dee-Bee · 1 · Oct 10, 2020
Wow, amazing effort. I love it!
You should get it framed behind glass, too good to touch 😁
u/offbeat2016 · 1 · Oct 10, 2020
I get that it would be difficult to use and all, but the artistry is beautiful!
[deleted] · 1 · Oct 10, 2020
I know you probably won’t see this but the fact that the z is a zebra cake made my day!
u/TailS1337 · 1 · Oct 10, 2020
Tea/Coffee Honey Avocado Tea/Coffee
(pistacchio) ice Salmon
Avocado Pancakes(?) Egg Salmon Oreo (that thing right Side of the Pizza) Egg
I mightve misinterpreted some of these, great piece of art though
u/bthezebra · 1 · Oct 10, 2020
Tiny is sooo creative and crafty
All Butts Matter!
u/07undercover · 0 · Oct 9, 2020
thats so cool!!!
feels like the keys would be unstable tho
u/bastardoperator · 0 · Oct 9, 2020
LOVE IT! This is awesome, get it into production, limit production, become a keyboard MILLIONAIRE!
u/random_redditer123 · 0 · Oct 9, 2020
No pinnapple I’m mad
u/questionable-morels · -3 · Oct 9, 2020
It’s hideous.
I love it.
[deleted] · -2 · Oct 9, 2020
To anyone saying it would be hard to type on, if you look at the keys it is organized, EX: f where fries are and the the black and white striped desert where a is, zebra?
u/thatishiss · -2 · Oct 9, 2020
Just here to be the 100th comment
u/GoGoGadgetPants · -2 · Oct 10, 2020
Are you single? Lol
[deleted] · 0 · Oct 10, 2020
God damn it
[deleted] · -6 · Oct 9, 2020
This will 100% be covered in cum after a year of use
[deleted] · -25 · Oct 9, 2020
Ew
u/SuperMysticalPerson · -2 · Oct 9, 2020
You must be anorexic
[deleted] · -7 · Oct 9, 2020
No ive got a good gut going on, that just looks ew…
u/shadowpants04 · 1 · Jan 1, 2021
I love the rShift key
u/tinymakesthings · OP · 1 · Jan 4, 2021
I just happened to see this comment but the hot dog shift is now available through Drop (through a collab with Dwarf Factory) to order if you’d like one yourself! :)
u/Commercial_Concert44 · 1 · Jan 13, 2021
I call it the Mukboard
u/coolmaster9000 · 1 · Feb 19, 2021
If all the letter keys are foods beginning with those letters (as I’ve noticed A is avocado, I is ice cream, O is Oreo, Z is zebra cake, P is peach…), what’s X meant to be? And the other keys for that matter
u/tinymakesthings · OP · 1 · Feb 19, 2021
X is for Xiao Long Bao (chinese for soup dumpling) - Had to be creative for some of the letters because they were hard to find foods with that letter. I go over every key in the YT video!
[deleted] · 1 · Feb 20, 2021
I love the boba keycap! I would buy one for my escape key or something.
u/Psychological_Log159 · 1 · Dec 7, 2022
cotton candy is making me mad
u/kasyafnazri · 1 · Jul 30, 2023
Can i eat that

Description
🎉 Get our FREE e-mail course, The Ultimate Public Speaking Playbook: https://ultraspeaking.com/the-ultimate-public-speaking-playbook/?utm_source=youtube&utm_medium=social&utm_campaign=tiago_forte_para_method
This is a guest talk by Tiago Forte on the PARA method – a methodology for organizing your digital information across every platform.
Read Tiago’s personal reflection on what it was like to work with Ultraspeaking to stop over-preparing and unlock spontaneity in his speaking: https://fortelabs.com/blog/what-its-like-to-hire-a-speaking-coach/
== Ultraspeaking is the communication school of the future. Our mission is to help you feel at ease in every interaction.
🧠 START IMPROVING YOUR SPEAKING Become a more impactful speaker (in just 5 days) with our FREE email course called The Ultimate Public Speaking Playbook: https://ultraspeaking.com/the-ultimate-public-speaking-playbook/?utm_source=youtube&utm_medium=social&utm_campaign=tiago_forte_para_method
🔥 BECOME AN EFFECTIVE COMMUNICATOR IN 30 DAYS Join our cohort: https://ultraspeaking.com/fundamentals (practicing with people is the fastest way to improve)
🤓 READ THE ULTRASPEAKING BLOG We write about unconventional ways to speak better, learn faster, and live a fully-expressed life. Start reading: https://ultraspeaking.com/blog
💛 FOLLOW US 🐦 Twitter: https://twitter.com/ultraspeaking 🖇️ LinkedIn: https://www.linkedin.com/company/ultraspeaking/ 📸 Instagram: https://www.instagram.com/ultraspeaking/
Transcript
0:00 My Story begins about 2 500 years ago with a man a philosopher named Aristotle you may have heard of him Aristotle one day had a kind of bright idea
0:20 he said he claimed he asserted that knowledge all human knowledge all of it could be classified could be organized according to its substance its quantity it’s quality it’s relation its place its time position State action and passion
0:43 a sense reading about Aristotle’s theory that it was a weekend project and you know what we’ve all been there we’ve all been there we’re working on some difficult project and we think okay I’m really stressed out and overwhelmed let me just take a weekend get organized quote unquote get all my stuff together
1:00 and then I can start on Monday nice and and clear and clear-minded little did Aristotle know first of all there’s no there’s no indication that he succeeded that he that he actually succeeded in creating uh this kind of universal classification this Universal
1:19 taxonomy for all knowledge but little did Aristotle know he was kicking off a millennia’s long Quest by many many thinkers and philosophers and writers and scientists to create a universal taxonomy a taxonomy is simply a it’s a classification system for not
1:42 just animals or plants or elements on the periodic table but for all knowledge for everything basically a couple thousand years later there were definitely many people in between who tried but a couple thousand years later Francis Bacon the scientist and
2:00 philosopher said you know what let me take a crack at this he was probably also having a tough week he needed a nice little weekend project to get organized and he said you know Aristotle was a smart guy but uh it’s too complicated that’s all too much to think about
2:19 really there’s just three categories memory which is basically history reason which is philosophy and Imagination which is the Fine Arts okay simpler a simpler system that he had a few hundred years later
2:37 ranganathan who was a mathematician and the father of Indian Library science said you know what let me take another shot at this we’ve tried many times before but let me introduce these sort of more abstract categories that can be more Universal
2:56 like personality matter energy space and time let’s try to classify all human knowledge according to these five criteria okay then he actually introduced a more sophisticated system called faceted classification
3:12 that was designed to classify our more plentiful complex modern knowledge but none of them succeeded no one was really able to pull off this feat to organize the world’s information and
3:30 make it universally accessible and useful right it was sort of a a hopeless Quest until Google came around in the early 2000s the early 20th century and made this their mission if these words sound familiar this was Google’s original
3:48 original mission statement this was the reason that Google came to be was to organize the world’s information and make it universally accessible and useful and in one sense Google succeeded finally where so many others had failed and they succeeded by taking a
4:06 completely different approach than anyone had taken before instead of creating a fixed set of categories a fixed hierarchy where all knowledge was organized into and instead of using manual human efforts you know lesions of organizers or Librarians or filers to individually
4:26 with human manual effort decide where each and every piece of knowledge goes they used a completely different approach they used technology graph databases and um and crawlers and indexing and different uh different kinds of
4:45 technology that made it possible for computers which work night and day and never sleep to do that organizing for us and to do it in a way that’s constantly evolving and changing and most importantly that can be searched with a single question or a single word and instantly find your answer
5:06 okay so in a sense this little search box was the answer to a millennia’s long Quest and it’s really changed the world hasn’t it think about so it’s kind of already part of our day-to-day life but think about how natural and easy it is for us to go to Google anytime we have a question or
5:26 even just want to find something or find you know a resource it’s almost an unconscious habit Google has especially changed the world of information right so much of what in the in the past would have been involved in you know referencing and classifying and
5:44 cross-referencing and then creating indices all manually is now just accomplished with this simple little page that is free but but but there’s always a but there is
6:03 a realm of information that Google has not transformed that search engines cannot even really touch and that is the world of personal information okay think about personal information that is not necessarily authoritative is
6:24 not officially verified is not even public and yet it’s still important to you it’s relevant it’s personally relevant to you and your life okay think about how much of your day you spend interacting with personal information
6:42 at first glance it might seem like that’s a small Niche you know like oh I think Google pretty much takes care of everything maybe there’s a few things here and there that a search engine can’t find but I want to suggest to you that actually per this this seemingly small category of personal information is actually vast
6:59 it’s actually multi-faceted and complex and it’s actually fundamental to living Our Lives I’ll give you four examples so when I say personal information I mean the simple little bits of documents and data that you use to run your life
7:18 your to-do list right Google can’t really search your to-do list can’t really index that your calendar your agenda your contacts your notes all things that are extremely relevant to you personally but that aren’t really um subject to search engine technology
7:38 think about your personal memories your photos there we’ve made a little bit of progress we have things like Google photos and apple photos and Flickr right but still kind of manually intensive uh even more so with videos and even more so with think about all the
7:57 messages you’ve exchanged the emails the stories the experiences that are your personal history your personal background that might not have any importance to anyone else in the world but they do to you think about your personal perspective okay not the content you consume we can
8:15 search that but your interpretations of the content you can see your opinions about the ideas you’ve you’ve read about your theories your beliefs your hypotheses about how the world works or your your organization works or how your health works or how relationships work okay your takes even
8:36 if they’re not fully vetted fully proven fully authoritative finally your personal knowledge we live in a knowledge driven economy or in this knowledge era of human history supposedly what about your ideas your insights your
8:56 expertise your lessons your tacit knowledge you know it’s kind of amazing if I asked you what do you know about X and instead of X insert whatever topic you have the most expertise about okay at first you might think of what
9:13 you have expertise about and think yes I am an expert in that I do have that expertise but can you tell me what it is can you name the top 10 most important insights from your field can you tell me what is your particular approach to your your discipline or your area can you
9:31 tell me the biggest lessons you’ve learned from your successes or failures from your career so far most people I’ve found absolutely cannot so we’re left with this very weird situation where if I want to know about a topic
9:49 it’s easier for me to search the entire internet what everyone else thinks experts leaders or even just random people spouting off whatever it’s easier for me to find out what they all know about some area of expertise then it is for me to find out what I myself know
10:09 about my own area of expertise isn’t that odd isn’t that so strange that personal knowledge seems to be the sort of this final frontier of making knowledge universally useful and accessible over the past couple decades since about
10:28 the late 90s a field has arisen a new discipline has been created called personal Knowledge Management or PKM to resolve this this lack this shortfall okay started in libraries actually at UCLA you’re not
10:47 far from where I am um and spread all around the world there’s now conferences and journals and academic studies and research and all sorts of things happening with personal Knowledge Management my contribution my part of this field is to popularize it my mission is to make more people all
11:07 over the world discover PKM how it might help them and how to actually put it into practice PKM also has a historical Legacy and it’s a historical Legacy that is almost as old as our as our efforts to
11:27 classify all knowledge it’s called commonplace books the word commonplace comes from the ancient Greek and it was during political assemblies or courts of law or other meetings it was the record-keeping mechanism it was a book or scroll or something where the
11:45 records were kept one common place were all decisions and records and ideas and actions were recorded and the amazing thing about commonplace books is it keeps popping up in history again and again and again and again every time there is a period of change
12:03 or uncertainty every time there’s a there’s an epic where people need to just make sense of what is happening to them there seems to be this practice of keeping a private book or notebook or Journal such as the one you see here where it’s not about necessarily what is
12:22 factual of course you can write facts in there but it’s also your opinions your ideas your theories your pictures that inspire you stories that move you memories you want to revisit it’s really like an extension of your mind to more accurately reflect the information really it comes down to information to
12:41 content that you find valuable enough to keep and to revisit over time okay so comment Place commonplace books have have Arisen in Japan and China during periods of intense change and uncertainty uh in Eastern Europe uh during periods of uncertainty most
12:58 famously in Europe especially Northern Europe and Western Europe this practice really profoundly shaped uh so much of the way people thought during the Renaissance the enlightenment the Scientific Revolution the Industrial Revolution and I think for that very
13:16 same reason it’s being reinvented again today we again live in a period of intense change and uncertainty we don’t know what’s going to happen all of our grand narratives about history about nation states about the future and the past are all breaking down and in a way we’re having to individually on a
13:35 person-by-person level at a person-by-person level make sense of what is happening to us and around us so in a funny way we’re back to that Original Classic Quest but with a little twist
13:54 okay you know in one sense it’s easier our Quest our mission has become a lot easier instead of trying to organize the world’s information especially at the rate at which the world is producing it we’re just trying to organize an individual’s just our own information and instead of trying to make it
14:13 universally accessible and useful to all people in so many different situations and backgrounds we’re just trying to make it personally accessible and useful just for us just for ourselves so in a way this is a much smaller easier scope right it’s much much
14:31 smaller in scope but in another way and this is what I’ve discovered is it’s way harder in a very strange way paradoxically it’s harder because when you deal with an individual you absolutely have to go into that person’s psychology
14:48 you have to think about and address their fears their hopes their hams their idiosyncrasies their baggage their temperament their preferred thinking style the way that their individual mind works in a funny way it’s actually easy it’s
15:07 actually harder to do all that for yourself because you’re sort of immersed in it you can’t see the forest for the trees uh another reason that it is in a way harder to make information individually and personally useful and accessible so I wrote a book spent many years
15:26 teaching speaking coaching a ton of personal experimentation to write this book right here which I’m holding in my hand and which you can see on the screen it’s called the para method it’s a small book it’s about a third the size of a typical hardcover uh non-fiction book
15:45 and that’s because it’s incredibly distilled it’s really just a 100 Pages or so summarizing and Distilling more than a decade of my experience teaching people to make their own digital commonplace book I’m going to introduce you to it briefly
16:04 and then say a little bit about kind of how it works and why it works so just take a drink of coffee so Pera is an acronym it is four letters Each of which stands
16:25 for an essential category of information in your life and work and I assert I I offer I propose that these four categories everyone has them every single person in the world has them and all of the
16:44 information all of it in any format coming in any medium through any channel or platform in any format for whatever purpose can be saved in one of these four categories the first is Project the first and most
17:02 important these are pretty much the conventional definition of projects short-term efforts in your worker life that you’re working on now there’s areas of responsibility which are long-term responsibilities you want to manage over time don’t necessarily have an end point an end date but something you want to keep track of kind
17:21 of over the long term there are resources basically everything else topics or interests that may be useful in the future anything you’re passionate about interested in curious about any assets or templates or reusable pieces of information that you
17:38 might want to reference again and again and finally there’s the archive which is inactive items anything that is inactive or finished or no longer relevant from the previous three categories so projects that have been finished or put on hold areas of responsibility that are no longer active
17:56 but that you want to keep reference information about resources that you’re no longer interested in but that you want to keep around I’ll go into the archive within each of these top level categories these kind of big buckets
18:14 there is one more layer there is one more set of folders or tags or links or whatever is the organizing mechanism that you use which is one specific folder or tag or link or whatever it is dedicated to each of the individual projects that are
18:34 currently active right now folder dedicated to each of the areas that are active in your life right now a folder for each of the resources that you’re keeping information about and as you work with those three categories and you finish things and things go out of date you’ll put them in the archives
18:53 okay so two levels four top level categories and then a larger number of subcategories each one of them related to not just an abstract kind of uh like an abstract category like the ones we saw at the beginning of
19:11 my talk you know you know space and time and personality and all these things but actual things happening in your life right now real things that you actually have to move forward and keep track of when it comes to personal information
19:33 the the the the biggest constraint the biggest bottleneck is your time and energy okay when you’re dealing with say a library or a database you might have full-time technicians full-time I.T people you know Librarians uh Specialists who are can can dedicate
19:53 hours and hours per day that’s their job to keep it all organized when it comes to your personal information you don’t you don’t right energy and time bandwidth basically is the overwhelming constraint when I when it comes to personal
20:09 information and knowledge so in my work teaching and coaching people what I found is that for each piece of information you really only have time and energy to ask one question one question at most even that there’s times where that will be difficult and
20:28 you’ll have to kind of you know put things on hold for a while but one question is where we max out that’s the most we can afford to spend thinking about each piece of knowledge that comes across our our our mind
20:46 I’ve tried many questions some of the questions that you saw from Aristotle and Francis Bacon and ranganathan and others many other questions have been proposed but I think when it comes to the level of the individual that this is the best one this is the single question you can ask that yields the biggest results which is
21:05 how and when will I use this next and I know that’s kind of cheating because it’s sort of two questions but the reason it works is that really there’s only four answers to make this question to make answering this question even easier I’ll make a multiple choice for you there’s not an
21:22 infinite number of choices there’s just four either it’s a piece of information that is relevant to one of your current projects and I put those kind of at the top of the pyramid because that’s the most important those are things that are short term they’re active they’re alive right now there might be actions you
21:41 need to take today or in the next hour or tomorrow or this week related to your projects they should come first second a piece of information could be relevant to one of your areas if not it could be relevant to your resources and if not it can go in the archives or
21:57 simply be deleted what you’re looking at on the screen is called an information hierarchy it’s one of the oldest and most persistent patterns in in really all of information and what it tells us is that there is a little bit of information that is most important which is the top of the
22:15 pyramid which you see as projects then there’s a little more information that is less important but still important which is areas then there’s the rest of all everything else the mass of other stuff that may be worth keeping but is really much less important and that’s the
22:34 bottom half of the pyramid the few reasons that I think this works so well and there are reasons that this approach this method is so simple that it can be used from third grade
22:53 classrooms I know of at least one third grade classroom that’s using it to you know organize their class supplies and their arts and crafts all the way to Executives at major companies whole entire teams and departments at Fortune 500 companies governmental agencies leaders
23:12 it’s really a methodology that applies to an extremely broad range of people the first reason is that it’s just so simple with the intention of minimizing your cognitive load this is really the the most important point
23:29 you do not have extra cognitive load or in other words decision making capacity or in other words bandwidth to spare do you pretty much I don’t know I don’t know about you but I feel like just managing my my work and then my life and my household and my family just basically
23:46 adulting takes pretty much a hundred percent of my bandwidth pretty much every single day so the Simplicity is not for its own sake it’s not just an aesthetic thing to look cool it’s about minimizing the amount of decisions you have to make second it’s actionable
24:07 okay we are not full-time knowledge classifiers we are not trying to build a Library of Alexandria we are trying to move forward tangible projects and reach specific goals both across our working career and our personal lives
24:24 the information that we organize should be or should be should should be structured accordingly to support those projects and goals and third it’s Universal going back to that original Quest that Aristotle kicked off
24:43 okay it’s Universal but not quite in the sense that he thought it’s not Universal in the sense that it works for you know all of humanity but it is universal across an individual’s systems okay every device you use you probably use many devices every platform you use
25:00 I find most modern knowledge workers use a dozen or so different platforms if you really include them all not to mention the people you work with think about all the places where you organize and share knowledge that multiple people have to access a shared Google Drive a shared notion doc a shared click up space
25:19 okay these four categories are so easy to understand and really they use terminology and Concepts that everyone knows everyone knows what a project is everyone knows what a responsibility is a resource and an archive we’re not trying to reinvent the wheel here we’re trying to create a common set of terms that you always understand across the
25:38 various domains of your life and so do others to finish off here I want to take a sharp turn this talk so far has been pretty conceptual I’ve tried to keep it I’ve
25:57 tried to keep it pretty simple but I know organizing stuff can always be a little abstract so I want to I want to finish by telling you where this all came from this is something I don’t think I really talked about before and it explains why para is the way it is and specifically why I am such a huge
26:17 believer in projects why projects are this overriding um priority in our in our in our information but also in our lives okay why I think projects are so important and why I think you should
26:34 consider them to be so important these photos are from my service in the Peace Corps from about 2009 to 2011. I served as a Peace Corps volunteer a Peace Corps if anyone doesn’t know is a U.S government
26:52 organization that was founded in the 1960s and it basically since then has sent uh Americans of all ages abroad to developing countries to serve serve in various capacities democracy building health
27:10 education my role specifically was in education I was assigned you don’t get to choose where you go you are simply assigned I was assigned to a small town called kupiansk in eastern Ukraine far Northeastern Ukraine my day job was to be a teacher so every
27:30 day I would pack up my stuff put on my very very warm clothing especially in the winter and head over to school where I would teach grade teach grades third through 10 third grade through 10th grade English teach them what I knew on these ancient chalkboards like the one you see
27:51 on the left how to improve their English skills which was really a Gateway for them to uh to better jobs better Futures better living standards to working in Europe or in other countries and to being successful and accessing the internet
28:10 so my day job was teaching English but my real passion was a program that I started called PVC which stands for Project screen change probably no surprise and what I would do is go to Summer Camps summer camps are a big tradition in Ukraine everyone during the summer
28:28 all the young people going to the countryside to the rivers to Lakes to the the seaside and they have these summer camps some of them would be English summer camps and what I would do is recruit uh small groups of especially promising teenager students they were in high school such as the ones you see in
28:47 the photo on the bottom there and what I would do is teach them what we would call basic life skills or project management or productivity skills really basic stuff things that we we probably learned just as part of our normal schooling things like how to make a goal
29:06 how to organize some materials how to make a budget how to make a timeline how to call someone and ask for a donation these these kind of basic organizing both in the sense of organizing information and organizing a community
29:24 or organizing an effort or a project and we would then use those skills over the course of a few days to plan and execute a community service project instead of keeping it abstract we would immediately put it into action doing a trash cleanup or painting a mural or
29:43 fixing a playground or raising money for an important cause something that contributed to their local community this was kind of a A New Concept for many of them because in post-soviet countries so often in the case is that the state is supposed to do all those things
30:01 the the old centralized Soviet state was responsible for picking up trash and for maintaining buildings and for keeping parks and all these things in the years since the fall of the Soviet Union that is no longer the case and what we were really doing is exploring what it meant to to just step up and contribute to your own Community
30:20 using whatever Knowledge and Skills and resources you had at your disposal and you know these little projects were trivial okay they didn’t exactly change Ukrainian Society doing a trash pickup
30:38 or a painting a mural on the side of a building or whatever it was those things are trivial but what wasn’t trivial what was actually incredibly profound to me was seeing the change that even such a small project could have in these kids
30:56 remember this was just a few days it all had to happen during a at most week-long summer camp but executing these small community service projects I began to see these kids completely change how they saw
31:13 themselves I began to see sometimes in real time almost the look in their eyes as they as they realized that this light came on this awareness that they were leaders that they had everything that they needed to make a difference
31:31 they didn’t have to wait they didn’t need permission they didn’t need some authority to to ask them to do it or to choose them I’ll never forget this brainstorm that we made my one of my groups was telling me Oh there’s nothing we can do you know we don’t have any money uh and you know
31:49 it’s just too hard and oh that that you know problem that part of town has been has been a mess just since we can remember that nothing was possible and we just did a simple brainstorm on the chalkboard using Post-its on one side of the chalkboard we did a brainstorm
32:06 of the projects that we could do basically the needs that the community service had what were the needs what were the projects that we could execute if we could do anything on the other side of the chalkboard we did a brainstorm of resources every kind of resource they had access to any tools any supplies any donations
32:26 any money even if it was just a little bit also resources like knowledge what did they know what did they know how to do what was their knowledge of their Community even relationships who did they know in their Community who might be able to help who had a special skill a special tool had a pickup truck
32:44 at a wheelbarrow even and then the magical moment was when we looked at these two brainstorm clouds and we just began to match them we began to match every need with a resource by the time we were done almost every need that we could think of had some
33:03 kind of resource already existing in the community that they had access to that could either solve it or at least make a big difference stop sharing that after a couple years in the Peace Corps I came back to San Francisco
33:24 to start my kind of professional career and not long after I arrived I started doing the coaching and the teaching and sometimes for free sometimes with friends sometimes running workshops in the co-working space for my my fellow co-workers
33:41 on what I was learning about productivity about personal Effectiveness about how to organize knowledge and to my surprise I I saw the exact same phenomenon at work in the lives of these high-powered in many cases Elite professionals as I saw in my Ukrainian students
33:59 some self-doubt some uncertainty some questions about whether they were really capable whether they were really able to make the change often in their own careers or on their team or with their customers that they wanted to make and so I took the very same approach
34:16 what is a project how could you in a matter of days or weeks at most create a plan create a goal assemble some resources take some actions and what I kept finding again and again and still fine to this day
34:33 I don’t know of an of a better mechanism or a faster mechanism to change your identity to completely transform how you see yourself when you look in the mirror to to Really radically Elevate what you believe you’re capable of doing than a
34:51 simple project that observation that fact is so important it’s so powerful that what I recommend if you take away one thing from what I’ve said today is that you organize your entire Digital Life all the resources and knowledge you
35:09 have access to around the completion of those projects and goals that is the heart and the essence of para and that’s it thank you amazing give it up for thiaga everyone
35:26 thank you fantastic I think hearing about that last part to really really brought home the origins for us as well that was uh I know that resonated a lot with folks I think we have time for questions and
35:43 I’m sure there’s a bunch so uh if you could raise your hand using the zoom raise hand feature and uh we’ll get some questions for Thiago around the Peace Corps around Pera and everything in between yeah Amy nice to see you did you keep in touch with
36:02 your students um I’m sure a lot of if you’re thinking about them a lot right now I am yes yeah it’s been a it’s been obviously such an understatement but a really hard not just past few years but if you go
36:19 back to 2014 2015 you know it’s sort of the the initial stages of what of the war we’re seeing today it’s been an incredibly difficult decade most of my students have left uh thankfully actually they’ve left either eastern Ukraine and gone to
36:36 Western Ukraine or left the country altogether in many cases their English skills and their their digital and sort of you know professional skills have enabled them to go further and to find better situations in other countries than they would otherwise thankfully most of them are safe they’ve
36:54 had to leave the country but it’s been just an absolute tragedy and yes I have I have kept in touch with with I’d say a few of them yeah so I was just curious um may have already covered it and apologize I showed up late but um I have a I’ve fully adapted the
37:14 second brain to my personal life now I do run an agency and we have different client projects of course and I try to duplicate duplicate the same methodology for the business but it can sometimes get kind of scattered and there’s some
37:32 gray areas obviously with me running both of them um do you suggest having one second brain for personal and business or do you suggest you’re personal and then you can have your build a similar framework just because when I’m brainstorming whatever if I’m on the treadmill or
37:50 something brainstorming I add resources I’m like okay well this is an idea not yet get to bring it to fruition and while it’s kind of cooking and the framework I want to wait until I bring it into the business side does that make sense because I have two different workspaces in notion and um just try to
38:10 see if you recommend keeping them that separate or how to blend it safely yeah good question so what I would recommend is you can and probably should have both but what’s so important is that you have either part of your second brain or you know one of your second brains that is
38:30 totally private and personal um I sometimes see people think well the ultimate purpose of all this information is to share and to you know is to share and collaborate with others so let me just you know use my company Wiki or my team’s notion workspace or our shared Google drive to just store
38:53 everything and that really doesn’t work because excuse me I think this is why when information ideas first arise they’re often really random they’re messy they’re not policy sometimes they don’t make sense sometimes they’re kind
39:10 of they’re kind of dumb like you you sometimes need to develop them and kind of think them through and and really bring them to a certain level of Polish a certain level of kind of respectability before you share them with other people you don’t want to be the guy on your team that is always just like oh look at this look at that and people are just like what even is this
39:27 this makes no sense to me like you don’t want to be that person okay you do want to reach a certain level of Polish before it gets shared but you don’t want that that’s that certain level of Polish to be a barrier to you capturing ideas in the first place right so you need a private let’s say second brain and that might be an app on
39:46 your phone which is like the most close to the vest private personal place no one else is going to look there pretty much to save ideas in the first place and then later when it’s time to share and collaborate it goes to something more public and shareable um now where that dividing line is is up to you and you have a few different
40:05 options sometimes they’re completely separate apps like for me I have Evernote for my personal stuff and notion and click up for anything that’s for the company uh or it could be within one application itself like maybe you just have some projects that are work and right next to
40:24 them other projects that are personal and then some areas that are work and some that are personal right so they don’t they don’t necessarily have to be completely separate software programs but there needs to be some kind of dividing line so you know that stuff is public this stuff is private okay awesome I appreciate that sure
40:44 I also have a a chapter in my book which is all about using para for teams which anyone interested in that topic can can check out uh so I’m curious about a couple of things uh one when it comes to visibility of uh folders within uh the parent method you mentioned uh going on
41:04 the two levels deep but for me I that has not been the case and I’m not able to um or I’m curious to know how you approach it because the way I do it is I change the name names of the files or I add like an underscore or a symbol to to increase the visibility of things that
41:23 might be like that go too deep into um the para folders so I’m curious to know how are you able to manage everything with only two levels and then I’m also curious about um maintaining para across multiple platforms so if you’re using a to-do
41:43 list or email things like that how do you ensure that you you’re aware of everything that exists for a project across all tools that you use yeah okay so for the first one um the two levels is really a think of it
42:02 like a helpful constraint okay you can do more you know no one will stop you you know no alarms Sirens will go off but think about what you’re starting to do when you have three four five six levels of subfolders upon subfolders and subfolders
42:21 yeah I think there’s a few things that are happening you’re first of all you’re hiding things right things that are buried the deeper they’re they’re getting buried in that hierarchy the the less as you also mentioned the less the chances that you’re gonna you know come across it you’re also creating more work for
42:38 yourself when you go to replicate that structure across platforms right if you have let’s say three levels to your folder structure and you’re using typical person uses three four five six different platforms you’re now having to replicate you know three levels across all those it’s kind of a
42:55 lot of work right so the answer is kind of the answer to your second question which is so much of the that problem the pitfalls involved in kind of like too many layers too many complexity too much complexity uh is solved by keeping projects small
43:15 keeping projects small think about it like as soon as a project gets big there starts to be problems that you that you can’t really avoid you just have more stuff to manage you have more layers of the hierarchy you have more kinds of data now you have to start introducing you know more sophisticated ways of organizing that inevitably take
43:34 more time take more effort and have to be maintained far into the future but if you keep a project small like my typical project takes place in about two weeks for a two-week project I’ll accumulate maybe five to ten items you know for the average project five to
43:53 ten PDFs text documents photos diagrams uh reports with five to ten items you don’t need you’ll have to organize them at all there’s nothing to organize you just put them in a single list you know you just have them you can look at all of them in one glance see what
44:11 they are what they’re called find exactly what you need and so this idea of micro projects making your projects very small and quickly completed even if the ultimate project is huge right like so my example I always use is writing a book probably
44:28 the biggest project I’ve ever undertaken took me three and a half four years but the way that I conceived of it in my mind and in my second mind was just as a as a long series of micro projects right like the first project was just to find an agent and for two that was actually
44:48 like a month or two long project all I did was try to find my agent didn’t even worry about anything else then that was finished spent another month or two finding an editor that was the only project that I focused on related to my book right I think so often people there’s a big temptation to start this Mega project because you’re excited
45:07 right you’re like let me just start 15 different work streams all at the same time and then I’m gonna I’m gonna make progress along all these fronts 24 7 all at once which works for about three or four days and then the weekend hits and then you just collapse and then you come back on Monday and you’re like what was I
45:25 thinking oh my gosh I don’t have the energy for this this is way too much stuff so what I instead Advocate is for people to just keep that Frontier very small just work on the next step which is usually a project within itself and that way you you almost don’t have to worry about how to organize your you
45:45 know your your support material because there’s just so little of it and then you finish that project archive it away and start over fresh every two or three weeks you’re starting over in a sense rather than trying to organize all the information in one giant hierarchy does that help yep thank you
46:05 uh my question is about uh the management of information across physical media so for example if you want to organize your systems I think you are more more of a proponent of the online uh version but there’s also the
46:25 the whole offline method the old school uh subtle custom and all that we don’t have to go into that my main question is uh for me my problem would be reading a book and wanting to write notes and then um either if it’s a PDF or a physical
46:43 book most importantly having to sort of manage the notes and the file itself in this case if I use like a um on a more academic level if you use like a reference management system you may have the PDF linked with the reference in the system there and or you
47:01 have the file in the folder and then you have the ability to annotate inside that sort of software but also you may have your own note-taking system so for that sort of application you’ll then you also have of course physical books and you want to put all that together and I’ve had really a hard
47:19 time uh combining maybe the note-taking part is probably the easiest but the connection between a physical media and the note like when I find the notes I’m I have to make all these adjustments about where
47:38 did I find this I guess it occurs also with uh if it’s a website old website or something like that what sort of practical ways of solving this have you found because I’ve found that it’s a real bottleneck for me to consume content keep those concise ideas and then link
47:59 them together later and then go back and you know this loop it’s really not working for me right now thank you so much I mean what you’re describing is is the whole the whole issue that’s the whole question that we’re trying to solve here um there’s not there’s not one app that
48:18 you will download that will solve the you know that will resolve the the problem you just described uh we’re all struggling with it I struggle with it often you know we’re trying to create something that is almost a paradox A system that is totally comprehensive and yet also totally easy to use and
48:40 fluid and flexible A system that is personalized and so customized to us but we also don’t want to do much work we want to just download something off the shelf that works from day one we want something that is you know it’s like these all these these paradoxes that I almost think transcend you know personal
48:57 Knowledge Management that’s kind of what it means to be human you know think about the paradoxes of Being Human we want all the knowledge but we also just want to be left in peace and not have to think about everything we want change and progress but we also just want to be comfy and you know and and and comfortable in our nice little home uh it’s like yeah a
49:18 second brain is is almost just it’s not going to solve all those questions for you but I think there is a certain corner there’s a certain there’s a certain like small subset of those issues that it can solve the one that comes to mind because you mentioned this one is reading books
49:36 when I look at a solution like read wise I don’t know if you’re all familiar with read wise they’re a company um that makes a an app called reader so if you search I know it’s kind of redundant but read wise reader and someone I’m sure can drop a link in the chat who’s familiar with it this is
49:54 practically a perfect solution to reading at least ebooks which is you read a Kindle ebook on a Kindle device or it could be the Kindle app on a smartphone or on an iPad or even your computer you make a highlight by just putting your finger down and making a highlight
50:11 could not be easier you can even add a note like a some con some of your own comments if you want within a few minutes with no further action on your part you don’t have to sync or export or anything just that highlight that you chose will just appear almost magically in your note-taking app and you can use
50:31 any one of a dozen different note-taking apps that they support like to me like what else could you want you know you just did the most minimal amount of effort and it appeared in a personal private secure place that only you have access to which you can then annotate and you can underline and you can even edit and change and do anything
50:49 you want to that is almost like the the 80 20 of having a second brain is to just do that what I just described with your reading uh of course it’s not perfect but I think it’s probably one of the most mature well-developed you know kind of second brain Solutions um are you familiar with that Joan was
51:07 that something that you could try as an experiment yeah I actually tried it and and for some reason it started feeling like I was already doing this I was already reading the thing so and really the transfer seemed like the the easy part the thing that I wanted was to connect them
51:24 seamlessly and also the you’re talking about ebooks which really applies to this and then the problem for me was more about where to put the physical file and the physicality of it because then if you think about downloading a file multiple times uh something gets released in a later Edition and now you
51:44 have two and now you’re not sure which one you use you know those kinds of things I’ve tried read wise and it wasn’t fixing low specific problems yeah when you say physical file do you mean a physical printed book or do you mean like the database file you’re more like the database the database is more massive for me because if I have a book
52:02 on a bookshelf I could always you know it’s it’s more limited data in that sense uh it’s more like localized it’s you know actually occupies physical space but the digital mass of um downloading and and just where to put this file right immediately and then the
52:21 the article has different topics that I’ve discussed as I can just say this is part of a single project it’s probably part of multiple projects and and then I don’t have there’s not a great answer for you there’s no pre there’s no perfect solution it’s just trade-offs it’s just what is more important what is
52:40 less important which downfalls and pitfalls are you most willing to put up with [Laughter] I’m sure a lot of people can relate to that you know and I guess you can take comfort in just knowing I mean I pretty much think about and study this 24 7. it’s just all trade-offs you know I’ll
53:00 I’ll kind of finish saying one thing um you know this thing that we’re doing extracting information from multiple sources compiling it into our own centralized resource to use for our own purposes it’s kind of a revolutionary Act
53:17 you know no one no one wants you to do this definitely the the tech companies there’s a reason that this is a little bit difficult you know Amazon doesn’t want you doing this extracting you know the text from its ebooks Apple you know there’s no way to sync content with Apple notes for example no tech company probably the the government the
53:35 authorities don’t want you to do it either even at work some people might be suspicious like why are you compiling all this data like is that proprietary you know is that the company’s data a lot of people will be suspicious of you they’ll question you there’s something very kind of radical and insurrectionary about just taking control of your own
53:54 data even if it’s just like passages and excerpts from books that you yourself bought it’s kind of wild what I would say though is that it’s worth it that the other side of that revolutionary Act is an incredible amount of freedom and Independence and autonomy that you can then use however you want we’re really trying to break
54:12 free our digital chains you know from the the digital the digital servitude that is so often the case online um that’s what we’re doing with with creating a second brain and doing something as mundane as organizing our files and notes I feel like you’re uh your community can
54:35 stay for another two hours the questions are there and uh and the presentation’s fascinating I think it’s just a testament to uh how many lives this work has touched and how important it is and I think folks especially resonated with uh with some of the stories to show also the humanity
54:53 behind the the projects and behind the the methodology itself so I just want to say thank you for for sharing this with our community and with yours and uh yeah really for putting this on yeah thanks thank you so much Michael uh and Jenny and everyone on the ultra speaking team it’s been a pleasure working with you I
55:10 learned so much uh really shaped how I do how I prepare my talks how I plan them and how I deliver them uh and as a result I’m doing a lot more public speaking so thank you for the work that you do I’ve I’ve been a huge beneficiary amazing yeah thanks so much uh folks that uh that I haven’t met face to face
55:31 thanks for joining um this is part of the ultra speaking Community if you haven’t heard of Us come check us out we’re Ultra speaking.com uh we’ll check if we can share this recording with uh with all of you because I know a lot of you are after it and uh if you have questions I’m sure you can reach out to thiago’s
55:48 team as well so thanks for being here and we’ll see you next time thanks everyone
SpaceX raising $75 billion in record-setting IPO as Nasdaq debut awaits
SpaceX is selling 555.6 shares at $135 a piece, raising $75 billion in the largest IPO on record.

SpaceX is officially set for the largest IPO on record.
Elon Musk’s reusable rocket company is raising $75 billion, selling 555.6 million shares for $135 a piece, according to a filing with the Securities and Exchange Commission. The deal values SpaceX at $1.77 trillion, making it the seventh most-valuable U.S. company, ahead of Tesla, Musk’s electric vehicle maker.
SpaceX’s Nasdaq debut will come Friday, when the masses will have their first opportunity to buy into the 24-year-old company. Betting on SpaceX at this price is largely a wager on Musk, as the company is burning cash and is far smaller by revenue than any of its trillion-dollar peers.
SpaceX said in its prospectus that revenue increased 15% to $4.69 billion in the first quarter from $4.07 billion a year earlier. For all of last year, revenue jumped 33% to $18.67 billion. The company recorded a net loss in the latest quarter of $4.28 billion after losing $4.94 billion in 2025.
In addition to its space business, Musk’s company owns the Starlink satellite internet service, which accounts for the bulk of its revenue and is the only profitable unit, and artificial intelligence division xAI, which merged with SpaceX in February.
SpaceX said in its IPO filing that capital expenditures in the first quarter reached $10.1 billion, more than doubling from a year earlier. The vast majority of those costs — $7.7 billion — were for AI, with the rest spent on space and connectivity.
The company has racked up a cumulative deficit of around $41.3 billion since it was founded in 2002. It warned investors in its prospectus that it may not achieve profitability in the future.
Some of the IPO drama was removed last week, when SpaceX set a fixed price of $135 a share. New issuers would typically offer a price range that allows a company and its advisers to gauge demand sensitivity at different levels, but SpaceX took a take-it-or-leave-it approach after a slew of testing-the-waters meetings leading up to the roadshow launch.
Goldman Sachs is the lead banker for the offering, followed by Morgan Stanley, Bank of America, Citigroup and JPMorgan Chase.
With the IPO, Musk is poised to be the world’s first trillionaire. His stake in SpaceX is worth $866.5 billion, adding to his Tesla holdings that are valued at about $320 billion, not including some options. For the 54-year-old Musk, the SpaceX offering comes 16 years after he took Tesla public.
Musk controls over 82% of voting power at SpaceX, giving him virtually complete control over the board.
Two Wall Street firms initiated coverage of SpaceX on Thursday. Oppenheimer opened with an outperform rating and a 12- to 18-month price target of $190, implying a gain of 40% from the IPO price. Analyst Timothy Horan wrote that the company’s diversified portfolio makes it attractive for investors.
“We see potential for SPCX to leverage terrestrial compute expertise as a bridge (and possible back-up plan) to enable key scale and cost advantages,” he wrote. Horan called it the “only vertically-integrated AI company with the required capital, data, LLMs, hardware, manufacturing and engineering talent,” and said “its space infrastructure appears structurally advantaged.”
Meanwhile, New Street Research initiated coverage with a $165 price target, and said it views xAI as a $575 billion business, “relative to expectations for OpenAI and Anthropic.”
While SpaceX’s IPO is roughly three times the size of the largest U.S. IPO in history, it could be challenged by what’s to come. Anthropic and OpenAI, which are each valued at close to $1 trillion by private investors, have confidentially filed to go public less than four years into the generative AI boom. Those deals could happen this year.

Correction: SpaceX is selling 555.6 million shares. An earlier version misstated the figure.
#Technology #Business #Social_media #Breaking_News_Technology #Elon_Musk #IPO #Autos #Space_Exploration_Technologies_Corp #Procure_Space_ETF #Goldman_Sachs_Group_Inc #Morgan_Stanley #Tesla_Inc #Citigroup_Inc #JPMorgan_Chase__Co #Bank_of_America_Corp #Broadcom_Inc #cnbc #Articles #US_News #IPOs #Capital_Markets #AI_-_Artificial_Intelligence #Finance #sourcetagnameCNBC_US_Source
Capture
What Khiip captures today
Khiip ships extractors for five source types — every one of them returning a typed payload, not raw HTML.
The free AGPL core captures the substance of each source. X — tweet text, author, date, base engagement (likes, reposts, replies), community notes, polls, and reply context. Reddit — the post and every top-level comment, with crosspost lineage and removed-status preserved, over OAuth2 with your own credentials. Wikipedia — the article via the MediaWiki API, with references and infobox. Web articles — the full body text via a Trafilatura + Readability fallback chain, enriched with OG/JSON-LD metadata. YouTube — metadata and the full transcript via a yt-dlp + youtube-transcript-api fallback chain.
Khiip Plus deepens every source from the same captured bytes — no re-fetch. Quote-tweet embeds and X-Article bodies, the complete engagement set (views, bookmarks, quotes), the deep recursive Reddit comment tree with scores and authority, embedded media across all sources, and timestamped YouTube transcripts with chapter navigation. Then it renders each one in Khiip's own platform-reminiscent style — the styled artifact in the window above.
Each capture lands as a structured object — TweetPayload,
RedditPayload, WebPayload,
WikiPayload, YouTubePayload — with fields that
match the source: a tweet keeps its author and engagement, an article keeps
its title and body, a thread keeps its comments. The shape that was captured
is the shape that comes back, six months later, to whatever surface you point
at it.
Capture lands on the filesystem as plain Markdown — a .md file
with YAML frontmatter — in your vault (Obsidian-compatible by default):
portable, greppable, no lock-in. The raw bytes — the original HTML, the
original API response, the original transcript file — are kept alongside on
disk under a configurable data_root as a best-effort cache.
Roadmap: deeper PDF support, then Instagram, TikTok, Threads, Bluesky.
Substack via web extractor today; native handlers when the engagement gap
matters. The substrate is
open — the same extractor protocol lives at
src/khiip/extractors/base.py.
Substrate
The substrate model
Khiip is a substrate, not a destination. The distinction matters more than it sounds.
Most save-it-for-later tools — Pocket, Evernote, Notion's Web Clipper, Raindrop — couple capture and consumption at the same place. You save into the destination. You read from the destination. When the destination goes away, your archive goes with it.
A substrate separates the two. You capture into the substrate; you consume through whatever surface you currently prefer. The substrate is the fixed point. Surfaces come and go.
Destination — the old way
One box both holds and serves your captures. It shuts down → your archive shuts down with it.
Substrate — Khiip
Khiip writes to a vault you own. Khiip shuts down → the vault stays — still Markdown, still readable by anything.
Three properties make this real:
- Independence. The substrate predates the application that consumes it and outlives the application. You can swap the application without rebuilding the substrate.
- Knowability. Every capture has a type, a schema, and a known set of fields. Other software can read the substrate without negotiation.
- Preservation. The raw bytes the source returned are kept on disk alongside the structured extraction — a best-effort cache beneath the canonical typed payload in your vault. When an extractor needs to re-run with a smarter algorithm three years from now, the bytes are still there.
Read the long essay: I wanted to give my agent a memory. I needed a substrate.
Surfaces
What you build on top
One substrate. Many surfaces.
Your Obsidian vault
Captures land as markdown with structured frontmatter. Wiki-links across captures. Cross-corpus search at the vault level. The Khiip Obsidian plugin ships a capture command and a recall sidebar today; richer in-editor surfaces — per-source visual indicators and refetch controls — land in a later release. The substrate is on disk, your editor is the surface.
Your agent or your script
khiipd exposes a REST API and an MCP server. An LLM agent points
at the substrate, asks structured questions ("what did I save about
substrate design last quarter," "which Reddit threads on r/SaaS mention
pricing"), and gets typed answers back. When the embedding model changes, the
recall index rebuilds cheaply from the vault — the substrate itself doesn't
change; it's shaped by the source, not by the consumer.
Your terminal
$ khiipd capture https://en.wikipedia.org/wiki/Khipu
✓ captured: Khipu
id: 01JWXYZHHC8K1V3M7N5P2Q6R4D
source: wiki
url: https://en.wikipedia.org/wiki/Khipu
vault: captures/wiki/01JWXYZHHC8K1V3M7N5P2Q6R4D.md khiipd capture <url> from the command line.
khiipd refetch <id> to re-run an extractor or re-walk
media. khiipd validate to check vault ↔ SQLite
consistency. The daemon is local, the CLI is direct, the data root is yours.
The same substrate. Different surfaces. When something better than Obsidian arrives, or when you decide your captures belong somewhere else entirely, the substrate doesn't have to be rebuilt. The destination is replaceable.
The breadth isn’t a roadmap — it’s the architecture. The contract is open (REST + MCP + plain Markdown), so any tool can read Khiip. Surfaces that read it today:
- Obsidian vault
- Obsidian plugin
- Terminal (CLI)
- REST API
- MCP server
- LLM agents
- Local recall
- grep & editors
- Markdown tools
- Your scripts & vector store
Coming soon Browser extension · Mobile · Official SDK · Destinations via the open contract (Notion, …)
Want a surface we don’t have? Suggest one on GitHub Discussions →
Open core
Open core
The substrate is AGPL-3.0 and free. The enriched layer — Khiip Plus — is the paid product.
Khiip's daemon and substrate are licensed under the GNU Affero General Public License v3.0 — free, self-hosted, no account, no telemetry. Capture across all five sources, typed payloads, local recall, the REST API and MCP server, and the plain-Markdown renders: yours, portable, git-versioned, exportable. You never pay to read your own data.
Khiip Plus is the paid tier — the enriched, platform-styled renders and the deeper per-source capture, delivered as one product. It runs on your own machine under a license key; nothing phones home. Khiip Plus arrives alongside the public launch.
To be exact about the line: Plus itself isn't open source — it's licensed under the Elastic License 2.0, the paid layer that funds the open core. The open-source guarantee covers everything in the free tier; Plus is the part you pay for.
It's the proven open-core posture — the same path Plausible, PostHog, Cal.com, Sentry, and GitLab took: an open-source core funded by a clearly-separated paid layer. The SDKs — a separate repo, when published — will be Apache-2.0 so they can be embedded freely in downstream applications.
Transparent
What's transparent
Three documents and one telemetry doc, written to be read.
- LICENSE — AGPL-3.0 full text, in the repo root, enforceable through copyright law.
- Terms of Service — what you get from Khiip's maintainers, what you don't, and what behavior on khiip.com is in scope.
- Privacy Policy — what khiip.com collects (Plausible cookieless analytics; Buttondown if you opt in to the newsletter; standard Cloudflare hosting logs), how long it's kept, and what your rights are wherever you read this from.
- docs/telemetry.md — what the daemon does to the network, by version, by configuration toggle. Inventory by call type, destination, and trigger. The same surface Plausible and Tailscale publish; it exists so that you can verify what Khiip says about local-by-default behavior without having to trust the marketing copy on this page.
