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.style['overflow'] = 'visible'; } }); })(); However, this script stopped working just a few days after, and I couldn’t fix it since something in the server-end must have changed. ...

October 13, 2024 · 3 min · Jun

AI CyberSecurity, ChatGPT and Post-humanism

This is the text for a lecture I’m going to give recently. Thanks for Daniela Baron’s guide which helped me tremendously for creating the slides with RevealJS. Hey everyone. Well, first, I have to confess and apologize that I could not prepare this enough. Because I have to working on my dissertation, which also discusses about AI augmented APT attack such as using ChatGPT to create phishing email and ransomware code. I don’t know if anyone is interested in that direction, but I digressed, let’s get to start. ...

April 6, 2023 · 17 min · Jun

Cheapskate's Stable Diffusion Server

No DALL-E, No Midjourney and No Colab This is a guide showing how to build your own stable diffusion server on what you already have or cheap used hardwares. It may not satisfy for a serious production use but pretty viable for learning, testing or casual use. Before we start, here’s some comments on OpenAI: The history of ChatGPT creator OpenAI, which Elon Musk helped found before parting ways and criticizing OpenAI Is Now Everything It Promised Not to Be: Corporate, Closed-Source, and For-Profit Will ChatGPT be open source? ChatGPT, how did you get here? It was a long journey through open source AI When big AI labs refuse to open source their models, the community steps in Artificial Intelligence: Last Week Tonight with John Oliver (HBO) The TRUTH about OpenAI I have been using ChatGPT and its API regulary. Since my last post, the API has been upgraded to gpt-3.5-turbo which broke my program and gpt-4 seems coming up soon. Therefore, I may not fix my code proactively. ...

March 28, 2023 · 10 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

Playing with Different GPT-3 and ChatGPT models

The Original Flavors In OpenAI’s documentation there are 4 models under GPT-3 category and 2 coding models. They cost from $0.02 to $0.0004 per 1k tokens as the base model and the fine-tuned versions cost even more. text-davinci-003 text-curie-001 text-babbage-001 text-ada-001 code-davinci-002 code-cushman-001 The playground can test them all using the web interface. Let’s see how good they are comparing to the free ChatGPT. To ChatGPT webpage: Who is Paul Graham? Paul Graham is an American computer scientist, entrepreneur, and investor. He is best known as the co-founder of the startup accelerator and seed capital firm Y Combinator. ...

February 13, 2023 · 4 min · Jun