im a game developer. but i do a lot more than that. im gonna talk about some stuff i made and some stuff that i want to make in the future
i like making music a lot
ive released some albums
im gonna soon release the soundtrack from all munkie games
and chemp physics' soundtrack
and more if theres any i should relesae
is a computer assistant powered by gpt-4o-mini i think
you can talk to it and itll answer
the cool thing about him is that he can run powershell commands
he can also run his own command library. i made the library so he can play sounds, change his voice up, open steam games and more.
this is my first ever actual software that doesnt run on a game engine lol. i used a ton of dependencies and at one time accidentally deleted all his audio and voice stuff while testing his setup.
this is the first time ive made an installer, used apis, blablabla i learnt a lot from it
i want to make a bot that uses markov chains to create messages.
i already did this with the fapster but im gonna be real it was all vibe coded there is no human work put into that sloppy son of a bitch at all
there are already some bots that do the same thing and theyre really funny and sometimes smart
a markov chain is a series of stuff thats chained together using predictions. i think
how he's gonna work:
user sends a message e.g. "hello, frogg"
frogg splits the message into segments that contain:
- the server id it was sent in, to make him unique per server
- the first word e.g. "hello,"
- the second word e.g. "frogg"
these segments will help him create a chain from randomly picked words referenced from the segments
frogg stores the segments into some file
if frogg sees it fit to send a message, he does this stuff:
randomly pick a starting word from his database e.g. "hello,"
using that starting word, pick a following word from his database e.g. "frogg"
repeat until the "second word" field is empty, meaning the end of the message
this'll be a fun project to work on and to use. itll be cool!!