1GB is a lot! Did you mean another value? In general, keeping the image limit low is helpful because web portal browsers like on the Switch/PS5 already have limited resources to work with.
VGMoose
Posts
-
i got a question to the devs of the site -
Introducing an AI Chatbot - BrowseGPTwhat kinda updates did you have in mind?
-
What The Hell.Yikes that's a really rough screen shot lol. I'll be honest, I had turned the "ads" dial up as high as it could go on google adsense. It's still not bringing in enough to offload the site costs, I suspect because most of our user base is not on PC/phones.
This is the group: https://browsedns.net/groups/hide-bdns-ads that disables them, which I made because I also want users to be able to "opt-out" of them.
We can look at crowdfunding, but I haven't had much success with that in the past. ao3 has a nice and clear page on donations but they're also set up differently (like being a nonprofit org, offering merch, and stuff).
-
Forum for Godot & Game Devolopmentanother nodebb site!! I like godot, and can highly recommend it, even for total beginners.
-
GPT resetAlso! if you have an openai account, this python script is an example of how to use the API: https://gist.github.com/vgmoose/a54408a28189b19501ed1afb7ee8d4e1
There's an initial prompt, and then each API request sends the chat history to the end point, so over a conversation it builds out.
On Line 44 is the main infinite loop. Line 47 prompts for text input from the user, Line 49 actually submits it to openAI, and then 50 prints the response, before saving it and looping back around.
-
GPT resetIt's using openai's chat completion API: https://platform.openai.com/docs/guides/text-generation/chat-completions-api
With the "gpt-3.5-turbo" model (It doesn't seem to be aware of this fact, but that is the model it's using). This model has very reasonable pricing ($0.50 per 1M tokens) so I don't mind the overhead
-
Why can't I dm? It shows my dms but I can't typeIs this on the Switch? what happens when you try to type?
-
GPT resetoopz, ok now that should return an error
-
GPT reset@dafunkymonke Okay I didn't test it too much, but if you send:
timeout: 120(needs a colon, and one space before the number, just like that)
That will set the reset timer to 120 minutes from the last message. If a custom timeout is set, it will notify you at the start of each conversation history. To undo, send:
reset_timeoutAnd it will remind you of this command at the start of the current history. You can set this as high as you want, but be aware that it will probably error if the chat goes on too long without a reset.
-
GPT resetto phrase that another way, every time you message it, the entire chat history (from the "starting" point) is sent to OpenAI, and each follow up message it re-sends this entire history again. So, a longer chat without a reset will eventually be too many tokens for it to handle.
-
GPT resetYeah, it's 30 minutes from the last message (or if you message it "reset" without quotes), so you could drag a conversation out by messaging it repeatedly every 29 minutes for example. But the limit is mostly because it can't keep track of the whole history. If you talk to it enough, you'll eventually hit an error too.
-
Is there anyone playing Fortnite?I haven't played Fortnite much, but I saw they added Aang and gave him a gun?!

-
guys i have zero time left and i am still not back on to my normal switch menu!!!!@poyo facts! Yeah the site timer is "wall time", aka it remembers the time you started and shows how long since them. But can't track sleep states which on the switch do pause it.
It's possible that the builtin timer isn't actually a timer, but stops after 400 internet checks (that occur every 3 seconds) or 20 minutely checks, it gives up. More info on those requests is here: https://browsedns.net/topic/25/browser-timeout-this-screen-will-be-closed/34
I have tried faking these responses with different combinations of pretending that the connection works, and adding networking delays to the responses, but everything just still eventually dismisses the browser after 20 min of non-standby time.
-
New feature: bdns.bio URLsx-x
-
New feature: bdns.bio URLsTo clarify, this domain/redirect is intended for other websites, eg. https://bdns.bio/vgmoose On the site itself, it's still easier to just use @vgmoose to tag
-
what's is your favorite snack foodNacho Hippeas and I pretend they're healthy
-
You wanna feel old? No? Too bad. :3Thanks, sorry i got nothin to upload lol
-
You wanna feel old? No? Too bad. :3@logen-churchel IT MAKES ME FEEL OLD, come back to me when you've been on YouTube for 16 years


-
Making a proxy. Have a question.oh, just saw you said you're making one, I like to use mitmproxy: https://mitmproxy.org or SOCKS through ssh, but technically you can use a few different methods to make it work.
For directly visit this IP and rehost this page, with minimal or no intercepting, nginx's proxy_pass would be a straightforward way: https://www.reddit.com/r/nginx/comments/k1chxw/comment/gdnbe8l/ which afaik just fetches the page, replaces a few strings, and re-serves it.