Skip to content

Instantly share code, notes, and snippets.

View arunsanna's full-sized avatar
🤪
Lets Rock!!

Mr_A arunsanna

🤪
Lets Rock!!
View GitHub Profile
# My Att Bill Split
internet_bill = int(input("Enter Internet DataPlan charges: "))
user_list = ["arun", "bhargav", "vikas", "venky1", "venky2", "ravi" ]
for user in user_list:
user_charge = int(input("Enter charge for " + user +": "))
print user +" Bill: " + str(user_charge + int(internet_bill / len(user_list)))
@arunsanna
arunsanna / Pod Tolerations
Created June 24, 2021 16:15
adding tolerations to pods
pod:
nodeSelector:
category: cpu
tolerations:
- key: "CpuOnly"
operator: "Equal"
value: "true"
effect: "NoSchedule"
@arunsanna
arunsanna / agent loop
Created March 29, 2025 22:19 — forked from jlia0/agent loop
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@arunsanna
arunsanna / gist:0a91c6ff05d737f0daa7c7ac3d93bd1e
Created July 10, 2025 21:14
Claude-Code Integration with Gemini
## Prompt to Add Mandatory Gemini CLI Integration for Large Files
Please add the following functionality to my Claude Code configuration:
1. Create a MANDATORY rule that forces Claude to use Gemini CLI for any file larger than 300 lines
2. Claude must NEVER analyze large files itself - it MUST delegate to Gemini
3. All Gemini commands should run in background with output logging
4. Include "TASK COMPLETED" in all Gemini prompts for completion monitoring
5. Add monitoring loops that check for "TASK COMPLETED" in the output
@arunsanna
arunsanna / claude-gemini-integration-prompt.md
Created July 10, 2025 22:08
Prompt to add mandatory Gemini CLI integration for large file analysis in Claude Code

Claude Code + Gemini CLI Integration Prompt

Copy and paste this entire prompt to add mandatory Gemini CLI integration for large file analysis in Claude Code.


Prompt: Add Mandatory Gemini CLI Integration for Large Files

Please add the following mandatory rules to my CLAUDE.md configuration that force Claude to use Gemini CLI for analyzing large files: