Posts

Showing posts from March, 2026

Claude Code : UI

[Prompt 1 / Default Mode]  :- implement a /dashboard page which will contain a datepicker that defaults to the current date. this page will load all the logged workouts for the date displayed in the datepicker. Influence Output of Claude Code This could be skills . [prompt 1 / edit mode]: create a docs/ui.md file outlining the coding standards for the ui thoughout this entire project. the document should outline that ONLY shadcn ui components should be used for the ui in this project. ABSOLUTELY NO custom components should be created, ONLY use shadcn ui components. date formatting should be done via date-fns. dates should be formatted like the following: 1st Sep 2025 2nd Aug 2025 3rd Jan 2026 4th Jun 2024 [prompt 2 / edit mode]: update the CLAUDE.md file to highlight that all code generated by claude code should ALWAYS first refer to the relevant docs file within the /docs directory. [prompt 3 / edit mode]: create a /dashboard page with a datepicker set to the current date. this pa...

Clause Code : DB Setup

https://neon.com/ Will be setting up postgres DB on neon it gives upto 10 databases for free ( no need to add credit card ) drizzle ORM  https://orm.drizzle.team/docs/get-started-postgresql https://ui.shadcn.com/  it is a set of beautifully designed components that you can customize, extend, and build on. if you want to install drizzle into your codebase using claude code all you do is type " install drizzle into the project using the following documentation <paste all data from link below> " https://orm.drizzle.team/docs/get-started-postgresql Create DB Schema switch claude code into plan mode (shift + tab)  use prompt like " Plan a table schema to log workouts. Each workout can have multiple exercises, and each exercise can have multiple sets. make sure this is normalized. Then, because we're using drizzle for our project, ideally we will inform cloud code that we want to create a drizzle schema. " [prompt 1 / plan mode]: this is a workout logging app. p...

Claude Code : VS code

Image
 Use CMD + SHIFT +P to open VS Code Settings Change the meta Goto Terminal > Settings , "check the meta key" as well different commands to do different things , choose model etc = Use Option + T to choose thinking mode there is /config Output Style (note learning ) Init Large Language Model are non deterministic , for same prompt output is slightly different every time you can refer files in your claude code drag and drop file name use @ to refer can also give line number in a file. What does claude code 'vs code' extension do ? it helps make context  any files you open + select it builds context  Modes in Claude Code There are two modes Edit : to make changes Plan : to ask if something is possible Default (third mode) : for back and forth asking ques you can use "shift + tab" to switch below is default mode in default mode ask below ques then implement changes, by shifting to "edit" mode Context Window https://www.youtube.com/watch?v=-uW5-Ta...

Claude Code

Image
Install curl -fsSL https://claude.ai/install.sh | bash https://claude.com/product/claude-code to setup then run command from command line " claude " Ollama & Claude Code below shows how to use local ollama with claude code https://www.youtube.com/watch?v=FPUsn0ZK000 Can i use Claude Code with Other LLMs ? The short answer is yes , but it requires a bit of a "workaround" because Claude Code is built specifically to talk to Anthropic's API. While Anthropic doesn't officially support other models, you can use API proxies or local gateways to "trick" Claude Code into using GPT-4, Gemini, or even local models like Qwen or Llama. How it Works: The "Base URL" Trick Claude Code uses an environment variable called ANTHROPIC_BASE_URL to know where to send its requests. By default, this points to Anthropic. By changing this, you can route the traffic through a translator that converts Claude's requests into a format other models understand. ...