Skip to content

Instantly share code, notes, and snippets.

View amiria703's full-sized avatar
🎄
Focusing

Amiria Maher amiria703

🎄
Focusing
View GitHub Profile
@almahmudbd
almahmudbd / free-ai-api.md
Last active July 22, 2026 14:52
Free Ai Api keys and credits for agentic coding.

Free AI API Keys for Agentic Coding

Usage Tips

  • Do not subscribe to every service at once. Most free credits expire quickly. Test them one by one and move to the next when your current credits run out.
  • Register, verify your account, and claim your credits. Follow each platform’s documentation to connect your coding tools.
  • Keep your API keys private. Do not share them publicly. (save or star this gist for future update)

Top Sites in This Genre

@MrOplus
MrOplus / maps.js
Created November 25, 2025 07:26
Google Maps to Waze Intent (Cloudflare Workers)
export default {
async fetch(request, env, ctx) {
return handleRequest(request);
}
};
async function handleRequest(request) {
const url = new URL(request.url);
const pathname = url.pathname;
@sukhbinder
sukhbinder / duckchat.py
Last active April 6, 2026 16:53
Chat with DuckDuckGo AI Chat CLI with Python
# /// script
# dependencies = [
# "requests",
# ]
# ///
import requests
import json
import sys
from threading import Thread