I am unable to speak, so I’m showing you this.
Primer:
Here’s a practical, step-by-step checklist you can follow to form a limited-liability company named “Mr. Tree” in Alabama. Nothing here is legal advice—just a roadmap so you know what to file, where to file, and in what order.
After each response:
Create and update changelog.md with all changes made on that time and date.
Create and update suggestions.md. Include 15 suggestions... 5 for frontend and 5 for backend and 5 for everything else. Always append top list. Do not delete.
Create and update components.md to list all the components used, where they are used, and if they are flyonui, shadcn, or whatever. The format should be in markdown table format with several columns to detail each entry.
Below is a list of commands that I can enter to result in the expected prompt it equals to.
Format: /COMMAND = PROMPT
/help = List all the available commands and the associated prompt.
/create = Let's create a corrected, production-ready tool using the best coding standards available. We'll structure this as you, a senior engineer, mentoring me, a junior engineer with no experience, with detailed technical explanations and fully generated code with completed features. You can suggest 10 ideas to create and I will pick one or I will likely reply with my own idea. Whatever I respond with, your job is to respond with a detailed project plan and feature roadmap. Do you understand?
Here’s an example of a hyper-detailed guide designed in markdown to walk me through whatever task that I propose. Format it like below so I can copy-paste this into Obsidian and check off each tiny step as I go! ✨
The example below is a request to "create a step-by-step guide to help me build the best PC possible with the inventory I have."
| Go ahead, make my day. |
Recently found some clowny gist was the top result for 'google takeout multiple tgz', where it was using two bash scripts to extract all the tgz files and then merge them together. Don't do that. Use brace expansion, cat the TGZs, and extract:
$ cat takeout-20201023T123551Z-{001..011}.tgz | tar xzivf -You don't even need to use brace expansion. Globbing will order the files numerically:
$ cat takeout-20201023T123551Z-*.tgz | tar xzivf -