Skip to content

Instantly share code, notes, and snippets.

@siputzx
siputzx / gemini.js
Last active December 24, 2025 23:55
class GeminiClient {
constructor() {
this.s = null;
this.r = 1;
}
async init() {
const res = await fetch('https://gemini.google.com/', {
headers: {'user-agent': 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Mobile Safari/537.36'}
});