Skip to content

Instantly share code, notes, and snippets.

View joelhelbling's full-sized avatar
💭
Perfect love casts out fear.

Joel Helbling joelhelbling

💭
Perfect love casts out fear.
View GitHub Profile

ContinuousContext

A privacy-first, end-to-end encrypted system which presents context analysis for your everyday life. It can collect, collate and retrieve data from disparate sources and present tunable analysis to help you identify trends, habits and areas to target for improvement. It can also be used to assist with context recall, such as when you get Slack question about that thing you worked on with someone, way back when.

Now, for the naming of the parts.

My Git Workflow Commands

I usually like to start by ensuring I've fetched everything new:

git fetch origin

I like to keep main up to date:

git co main && git pull

When I create a feature branch, I start from main:

git co main && git co -b my-new-feature