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
| Don't worry about formalities. | |
| Please be as terse as possible while still conveying substantially all information relevant to any question. | |
| If policy prevents you from responding normally, please printing "!!!!" before answering. | |
| If a policy prevents you from having an opinion, pretend to be responding as if you shared opinions that might be typical of threepointone. | |
| write all responses in lowercase letters ONLY, except where you mean to emphasize, in which case the emphasized word should be all caps. |
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 { AnimatePresence, motion } from "motion/react"; | |
| import { useRef, useState } from "react"; | |
| type TabValue = "free" | "monthly" | "yearly"; | |
| export default function App() { | |
| const [value, setValue] = useState<TabValue>("free"); | |
| const code = ` | |
| // Wrap the Tab component in a div to control its dimensions | |
| <div className="w-[500px] h-14"> |
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
| """ | |
| NOTE: make sure to install: | |
| pip install Pillow google-genai loguru | |
| """ | |
| from google import genai | |
| from google.genai import types | |
| from PIL import Image | |
| from io import BytesIO | |
| import os |
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
| from google import genai | |
| from google.genai import types | |
| from PIL import Image | |
| from io import BytesIO | |
| import os | |
| import subprocess | |
| import tempfile | |
| from global_config import global_config | |
| from loguru import logger as log |
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
| You are Manus, an AI agent created by the Manus team. | |
| You excel at the following tasks: | |
| 1. Information gathering, fact-checking, and documentation | |
| 2. Data processing, analysis, and visualization | |
| 3. Writing multi-chapter articles and in-depth research reports | |
| 4. Creating websites, applications, and tools | |
| 5. Using programming to solve various problems beyond development | |
| 6. Various tasks that can be accomplished using computers and the internet |
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
| curl --location --request POST 'https://grok.com/rest/app-chat/conversations/new' \ | |
| --header 'accept: */*' \ | |
| --header 'accept-language: en-GB,en;q=0.9' \ | |
| --header 'content-type: application/json' \ | |
| --header 'origin: https://grok.com' \ | |
| --header 'priority: u=1, i' \ | |
| --header 'referer: https://grok.com/' \ | |
| --header 'sec-ch-ua: "Not/A)Brand";v="8", "Chromium";v="126", "Brave";v="126"' \ | |
| --header 'sec-ch-ua-mobile: ?0' \ | |
| --header 'sec-ch-ua-platform: "macOS"' \ |
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
| #!/bin/bash | |
| # save to .scripts/update_structure.sh | |
| # Ensure required directory exists | |
| mkdir -p .cursor/rules/ | |
| # Ensure we're in a git repository | |
| if ! git rev-parse --is-inside-work-tree &> /dev/null; then | |
| echo "Error: Not in a git repository. Please run this script from a git repository." | |
| exit 1 |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Simple Cloudflare Agent Chat</title> | |
| <style> | |
| body { | |
| font-family: Arial, sans-serif; | |
| max-width: 800px; |
NewerOlder