Posts

BMAD method

https://www.youtube.com/watch?v=LorEJPrALcg To add multiple repositories using the BMAD Federated Knowledge System (bmad-fed), you can use the bmad-fed add command in either an interactive or command-line mode. 1. Interactive Mode : This is the simplest way to add repositories one by one, as the system will prompt you for all required details.bashbmad-fed add <repo-name> --interactive Use code with caution.During the prompts, select "Repository" as the knowledge type. 2. Command-Line Mode : For more precise control, you can specify all parameters directly. To add multiple repositories, run the command separately for each one:bash# Adding the first repository bmad-fed add repo1 \ --repo git@github.com:user/repo1.git \ --branch main \ --priority 1 \ --sync-policy daily # Adding a second repository bmad-fed add repo2 \ --repo git@github.com:user/repo2.git \ --branch main \ --priority 2 \ --sync-policy daily  

Agentic Coding

Image
https://www.youtube.com/watch?v=goOZSXmrYQ4 https://github.com/coleam00/link-in-bio-page-builder/blob/main/AICodingWithLargeCodebases.png Don't recommend using subagents for implementing , coz you need whole context https://github.com/coleam00/link-in-bio-page-builder/blob/main/.claude/commands/create-prd.md after chatting create PRD after PRD make modular rules

Claude UltraPlan

Image
https://www.youtube.com/watch?v=MIdKddA6vU4 see plan on web

NPM Eresolve

Why is this happening? NPM's "ERESOLVE" errors happen when two packages want different versions of the same library. better-auth is specifically looking for drizzle-orm version 0.45.2 . If your project already has a different version (like 0.44.x or 0.46.x ), or if another package is pulling in a different version, npm halts the installation to prevent potential runtime crashes.

Git Configure Multiple User

Image
https://www.youtube.com/watch?v=KO4cMC-NrxM generate 2 SSH keys for 2 github accounts , use different email ids for different accounts list them Goto Profile > Settings & add key in github.com This discrepancy happens because of the way Git separates who wrote the code (metadata) from who uploaded the code (GitHub account). Why the names don't match Local Git Config vs. GitHub Account: When you commit code on your computer, Git attaches the user.name and user.email stored in your local settings to that commit. It doesn't matter which GitHub account you use to push the code; GitHub simply reads the "Author" and "Committer" tags already embedded in the files. Why the name appears twice: GitHub shows "Name and Name" when the Author and the Committer fields are both present but GitHub isn't 100% sure they are the same verified GitHub user. This often happens if the email used in the local config isn't verified on the GitHub acco...

Make SAAS : Add Payments

Image
https://www.youtube.com/watch?v=E_dKWAq5M7w&list=PL4HikwTaYE0F40LZ_fZ1RXoxLrJyceKCu&index=1 Why using Polar not stripe ? available in many countries is also book of records , can be used for tax purposes 03:15 Next Steps Save the implementation plan execute it phase wise