Skip to content

Instantly share code, notes, and snippets.

View amiria703's full-sized avatar
๐ŸŽ„
Focusing

Amir Hossein Maher amiria703

๐ŸŽ„
Focusing
View GitHub Profile
@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 June 18, 2025 08:38
Chat with DuckDuckGo AI Chat CLI with Python
# /// script
# dependencies = [
# "requests",
# ]
# ///
import requests
import json
import sys
from threading import Thread