πŸ’‘ Remember Box
10 subscribers
2.17K photos
29 videos
1.82K files
11.8K links
πŸ“ Interesting articles
πŸ—ž Ideas & TodoπŸ’‘
πŸ‘“ Random stuff
🎢 Music
πŸ€” Thoughts
πŸ“• Books
πŸ“š Courses
πŸ“Ί Videos
πŸ“ Papers
πŸ•Έ Websites/Blogs
πŸŽ™ Podcasts
πŸ„ Spirituality

In the pursuit of excellence!

The aim is to discover interesting ideas and perspectives.
Download Telegram
even native speculative decoding in mlx-swift doesn't exist
Find two distinct ideas from disparate fields and create a novel connection between them. One that most people or no one would have noticed before. Make it truly unique. Have it be rich in detail but also use economy of language and succinct.
how to clarify your purpose

- find the pain you can sustain
- locate your unfair cognitive advantage
- use purpose to kill options (reduce entropy)
- ​A/B test your life
it's more like having a filter than deciding convincingly at once
πŸ’‘ Remember Box
how to clarify your purpose - find the pain you can sustain - locate your unfair cognitive advantage - use purpose to kill options (reduce entropy) - ​A/B test your life
pain I can sustain

- hard technical work with uncertainty
- high-ambiguity reasoning
- long arcs of problem-solving without external validation
- learning new stacks fast and applying them immediately

unfair cognitive advantage

- pattern detection + cross-domain synthesis
- fast prototyping instinct
- early signal sensitivity
my purpose is to make the frontier usable
πŸ’‘ Remember Box pinned Β«my purpose is to make the frontier usableΒ»
or in other words, to find overlooked edges and build tools that make the future arrive early
for me, the real point of AGI was to understand myself better and more
> Build workflows
> Monetize every run with x402
> Turn them into a product
> Tokenize it
claude opus 4.5 is superhuman at coding tasks
prompts I use often

- make a comprehensive analysis of current state of the app which and check api also, then improve each and every part and route of it, as it was mostly build earlier by an intern and we can't know if it all works, also consider each section and workflow then add unit tests for each as well and refactor it overall, improve UI/UX too

- improve entire app UI, check where it can be improved to make the UX super good

- make small commits and push

- resolve merge conflicts

- review everything and improve if there's something you can
Forwarded from Adrian Galilea
Create ~/.claude/commands/commit.md or whatever is the windows equivalent:


---
allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git commit:*)
denied-tools: Bash(git add -A:*), Bash(git add -A), Bash(git add --all:*), Bash(git add --all)
description: Create a git commit
---

## Context

- Current git status: !`git status`
- Staged changes: !`git diff --cached`
- Current branch: !`git branch --show-current`
- Recent commits: !`git log --oneline -10`

## Your task

Create a single git commit following these rules:

1. **NEVER use `git add -A` or `git add --all`** - This is explicitly forbidden and blocked by permissions.
2. **Check for staged files** - "Changes to be committed" commit ONLY those files. They were deliberately staged.
3. Follow the commit message style from recent commits shown above
❀1