Skip to content

Instantly share code, notes, and snippets.

View EdamAme-x's full-sized avatar
💫
edamamex.dev

EdamAmex EdamAme-x

💫
edamamex.dev
View GitHub Profile
@EdamAme-x
EdamAme-x / achievement.misskey.ts
Created July 20, 2024 09:12
Misskey Achivement Getter
const token = document.cookie.split("; ").map(c => c.startsWith("token=") ? c.split("=").pop() : null).filter(Boolean).shift()
const alist = [
'notes1',
'notes10',
'notes100',
'notes500',
'notes1000',
'notes5000',
'notes10000',
@yvki
yvki / helloworld.py
Created January 4, 2024 07:38
Hello World.py in 5 ways 🖐🏻
# 1. Bottle framework
from bottle import route, run
@route('/')
def index():
return '<h1>Hello World!</h1>'
run(host='localhost', port=8000, debug=True)
# 2. Django framework
# 2.1. Modify settings.py file