Hello! I am
geckonerd
and this is my personal website.
a bit about me:
I'm 1️⃣7️⃣ years old
born & currently live in 🇰🇿 Kazakhstan
i speak 🇷🇺 russian (native) and 🇬🇧 english (B2~C1)
C, python, java, javascript (+ html & css)
and some projects of mine:
The Ravelang Website
This is one of the first websites I've made - this one is for the Rave programming language. Check it out!
[Reugin Framework]
Reugin is an ASGI framework for making HTTP backends in Python. It has different "connectors" for different protocols, includes HTML building system and inline Python-to-JavaScript transpiler.
import reugin
import reugin.rhtml as h

app = reugin.Reugin()
http = app.connect(reugin.connectors.http.HTTPConnector())

@http.route("/")
async def root_route(req: reugin.Request):
return h.p("Hello, world")