Skip to content

Instantly share code, notes, and snippets.

View dontmindme250's full-sized avatar

dontmindme dontmindme250

  • Maldives
View GitHub Profile
@dontmindme250
dontmindme250 / gemini-api-thing.py
Created March 3, 2024 14:28
a code snippet to use googles gemini ai api
import google.generativeai as genai
GOOGLE_API_KEY = 'google api key here'
genai.configure(api_key=GOOGLE_API_KEY)
for m in genai.list_models():
if 'generateContent' in m.supported_generation_methods:
print(m.name)
@dontmindme250
dontmindme250 / different_statuses.py
Created February 24, 2024 13:31
a list of statues from my discord bot repo
# online status
@bot.event
async def on_ready():
print(f'Logged in as {bot.user.name} (ID: {bot.user.id})')
await bot.change_presence(status=discord.Status.online)
# idle status
@bot.event
async def on_ready():