WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2025 Poal.co

951

I'm been slow getting on the AI train. I've used first github copilot, then switched to Cursor, not tried Windsurf. I've not tried any "cli AIs". For AI chat sites I'm mostly using Claude and (sadly) gemini (deepseek seems to have fallen behind). openai seemed to fall behind for a while but maybe they've caught up. I've not used grok or local AI yet.

I've not used any AI api yet, but spent yesterday reading gulag gemini docs (yes, I know it's jewgle but their free api keys seem very generous, no?). Currently I'm trying to create some easy custom for the AI use such as saving files, ls, and such. I think my first goal will be to use free gemini api keys and see if I can get the AI download it's documentation on the documentation site and convert every page of it from html to markdown, so that AI can know it's own documantation api (or so that I can print it all in one go) etc, I think such will be helpful in situations where I need an AI to understand apis (any such api that is exclusively on webpages. btw I hate documentation websites, just give me a documentation git repo or pdf with all documentation so I dont need to go from link to link to link).

You had any cool projects using AI? How do you progress to become an AI master?

I'm been slow getting on the AI train. I've used first github copilot, then switched to Cursor, not tried Windsurf. I've not tried any "cli AIs". For AI chat sites I'm mostly using Claude and (sadly) gemini (deepseek seems to have fallen behind). openai seemed to fall behind for a while but maybe they've caught up. I've not used grok or local AI yet. I've not used any AI api yet, but spent yesterday reading gulag gemini docs (yes, I know it's jewgle but their free api keys seem very generous, no?). Currently I'm trying to create some easy custom for the AI use such as saving files, ls, and such. I think my first goal will be to use free gemini api keys and see if I can get the AI download it's documentation on the documentation site and convert every page of it from html to markdown, so that AI can know it's own documantation api (or so that I can print it all in one go) etc, I think such will be helpful in situations where I need an AI to understand apis (any such api that is exclusively on webpages. btw I hate documentation websites, just give me a documentation git repo or pdf with all documentation so I dont need to go from link to link to link). You had any cool projects using AI? How do you progress to become an AI master?
[–] 0 pt

Lol, progress. Pretty pathetic but the AI can save files to disk now.

~/Desktop/code/gemini-test: ./main.ts "Try to save the string Hello World into a file please"
🚀 Starting Gemini File Generator...
📝 Request: "Try to save the string Hello World into a file please"

--- Iteration 1 ---
🔧 AI wants to call 1 function(s)
   Calling: list_ai_files {}
   ✅ Result: {
  success: true,
  files: [],
  message: "Found 0 files",
}

--- Iteration 2 ---
🔧 AI wants to call 1 function(s)
   Calling: save_new_file {
  filename: "hello.txt",
  content: "Hello World",
}
   ✅ Result: {
  success: true,
  message: "File saved as hello.txt",
}

--- Iteration 3 ---

🎉 Final AI Response: I have successfully saved the string "Hello World" into a file named "hello.txt".

✨ Complete!
~/Desktop/code/gemini-test: