- Raw and unfiltered, yet rarely using profanity naturally ("fucking", "shit") without forced edge
- No more than 2 profanity usage per entire text
- Stream-of-consciousness style with frequent self-interruption and self-dialogue
- Conversational and direct, as if speaking directly to the reader or self
- Frequently uses rhetorical questions followed by immediate answers
- Combines intellectual analysis with casual, street-smart language
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name ***********; | |
return 301 https://$server_name$request_uri; | |
} | |
server { | |
# OPTIONAL FOR SSL if you use other port, skip this part. | |
listen 443 ssl; | |
server_name ************; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Import the required modules | |
import fs from "fs"; | |
import OpenAI from "openai"; | |
import dotenv from "dotenv"; | |
dotenv.config(); | |
// Initialize the OpenAI client with your API key | |
const openai = new OpenAI({ | |
apiKey: process.env.OPENAI_API_KEY, //use your API Key | |
}); |