Fixing Missing Scrollbar for ChatGPT with ChatGPT

Recently, I encountered a scrolling problem on ChatGPT web like this. I don’t use any userscript or extensions for OpenAI’s products and this problem occors in my unhardened Chrome based browser which I do not want to switch from. Based on the workaround in the threads, I made an userscript out of it which solves the problem by running in tampermonkey. (function () { document.querySelectorAll('html *').forEach(function(node) { var s = getComputedStyle(node); if (s['overflow'] === 'hidden') { node....

October 13, 2024 · 3 min · Jun

Bypassing ChatGPT's Safeguard and Easiest Way to use API

The latest news updated on waylaidwanderer’s repo says: 2023-02-15 The method we were using to access the ChatGPT raw models has been patched, unfortunately. Therefore, the party is over. It was fun to play with those leaked models such as text-davinci-002-render, text-chat-davinci-002-20221122, and text-chat-davinci-002-sh-alpha-aoruigiofdj83. They’re not as good as the official model text-davinci-003 after all as my previous post said. Why use API instead of the Ordinary Way After OpenAI fired up their paid subscription for ChatGPT, availability issue like response error, rate limit and throttling become more often....

February 16, 2023 · 6 min · Jun