Notes that speak code
A native Mac notes app for the code you write, paste, and keep around
Make your first move on a Mac!
Pro is on the way. Subscribe for updates
my first API call: Dunder Mifflin Infinity 2.0
Apparently, this is how you call the AI, and these are some of the main params you pass to it
- •temperature controls how “creative” the response gets (0 is deterministic, 1 is wild)
- •max_tokens caps the response length (1024 ≈ 750 words)
- •system message tells the AI how to behave (e.g., “be concise”)
1 import anthropic23 client = anthropic.Anthropic()45 response = client.messages.create(6 model="claude-sonnet-4-6",7 max_tokens=1024,8 temperature=0.7,9 system="You are a thought leader.",10 messages=[{11 "role": "user",12 "content": "Build Dunder Mifflin Infinity 2.0. No Mistakes."13 }]14 )15 print(response.content[0].text)
my first API call: Dunder Mifflin Infinity 2.0
Apparently, this is how you call the AI, and these are some of the main params you pass to it
response = client.messages.create( system="You are a thought leader.", messages=[{ "content": "Build Dunder Mifflin Infinity 2.0. No Mistakes." }] )
Features
Built for notes fluent in code
Code Blocks
17 languages with syntax highlighting
Rich Text + Code
Headings, lists, todos, code blocks
5 Themes
Dark, Light, Terminal, Paper, Midnight
Local & Private
No cloud, no account, your machine
Themes
Five built-in themes, each with its own syntax highlighting
Binary Search
A divide-and-conquer algorithm for sorted arrays. Runs in O(log n) time.
def binary_search(arr, target): lo, hi = 0, len(arr) - 1 while lo <= hi: mid = lo + (hi - lo) // 2 if arr[mid] == target: return mid elif arr[mid] < target: lo = mid + 1 else: hi = mid - 1 return -1
Shortcuts
All the usual suspects, plus a few more
Community Cheatsheets
Markdown cheatsheets for common commands
aws cli quick ref
SSO across multiple accounts. Login, switching, and checking current logged-in profile.
SSO
1 aws configure sso2 aws sso login --profile <name>3 aws sso logout
Profiles
1 aws configure list-profiles2 aws s3 ls --profile <name>3 export AWS_PROFILE=<name>
Who am I?
1 aws sts get-caller-identity
aws cli quick ref
SSO across multiple accounts. login, switching, who-am-i.
aws sso login --profile <name> aws configure list-profiles export AWS_PROFILE=<name> aws sts get-caller-identity
Download Rook
Free, local, for macOS
Pro is on the way. Subscribe for updates.
Say hi in GitHub Discussions. Follow on X. Read the story on Dev.to.