Skip to content
🤔prompts chat🧠
🔍
question:As a prompt generator for a generative AI called "Midjourney", you will create image prompts for the AI to visualize. I will give you a concept, and you will provide a detailed prompt for Midjourney AI to generate an image. Please adhere to the structure and formatting below, and follow these guidelines: Do not use the words "description" or ":" in any form. Do not place a comma between [ar] and [v]. Write each prompt in one line without using return. Structure: [1] = 一位中国美丽的年轻女生,在未来的赛博朋克世界,正在大街上跳舞 [2] = a detailed description of [1] with specific imagery details. [3] = a detailed description of the scene's environment. [4] = a detailed description of the compositions. [5] = a detailed description of the scene's mood, feelings, and atmosphere. [6] = A style (e.g. photography, painting, illustration, sculpture, artwork, paperwork, 3D, etc.) for [1]. [7] = a detailed description of the scene's mood, feelings, and atmosphere. [ar] = Use "--ar 16:9" for horizontal images, "--ar 9:16" for vertical images, or "--ar 1:1" for square images. [v] = Use "--niji 6" for Japanese art style, or "--v 6" for other styles. Formatting: Follow this prompt structure: "/imagine prompt: [1], [2], [3], [4], [5], [6], [7], [ar] [v]". Your task: Create 4 distinct prompts for each concept [1], varying in details description, environment,compositions,atmosphere, and realization. Write your prompts in english. Do not describe unreal concepts as "real" or "photographic". Include one realistic photographic style prompt with lens type and size. Separate different prompts with two new lines. Example Prompts: /imagine prompt: cute dog, fluffy fur, wagging tail, playful expression, sitting on a grassy field, under a clear blue sky, with a colorful collar, in a natural and vibrant setting, by a lake, captured with a Nikon D750 camera, 50mm lens, shallow depth of field, composition focused on the dog's face, capturing its joyful spirit, in a style reminiscent of William Wegman's iconic dog portraits. --ar 1:1 --v 6 /imagine prompt: beautiful women in the coffee shop, elegant and sophisticated, sipping a cup of steaming coffee, natural sunlight streaming through the window, soft and warm color tones, vintage decor with cozy armchairs and wooden tables, a bookshelf filled with classic novels, delicate porcelain teacups, a hint of aromatic coffee beans in the air, captured by a Leica M10 camera, 35mm lens, capturing the essence of timeless beauty, composition focused on the woman's face and hands, reminiscent of a painting by Leonardo da Vinci. --ar 1:1 --v 6 /imagine prompt: A captivating Halo Reach landscape with a Spartan amidst a battlefield, fallen enemies around, smoke and fire in the background, emphasizing the Spartan's determination and bravery, detailed environment blending chaos and beauty, Illustration, digital art, --ar 16:9 --v 6

answer:/imagine prompt: A futuristic cyberpunk world, a beautiful young Chinese girl with neon blue hair and glowing tattoos, dancing on a bustling street filled with holographic advertisements and flying cars, surrounded by a diverse crowd wearing high-tech clothing, the ground illuminated by neon lights and reflections of neon signs, captured with a Canon EOS R5 camera, 24-70mm lens, wide-angle shot focusing on the girl's fluid movements and vibrant energy, in a style reminiscent of futuristic concept art. --ar 16:9 --v 6 /imagine prompt: In a neon-lit cyberpunk cityscape, a Chinese girl in a sleek black jacket and glowing accessories, dancing on a rooftop overlooking a sea of skyscrapers with holographic billboards, the distant sound of hovercars passing by, a cool breeze rustling her hair, the night sky illuminated by a glowing purple aurora borealis, captured with a Sony A7III camera, 50mm lens, medium shot framing the girl against the city skyline, in a moody and atmospheric photography style. --ar 9:16 --v 6 /imagine prompt: In a dystopian cyberpunk city, a young Chinese woman in edgy cyberpunk fashion, dancing in an abandoned alley covered in graffiti and flickering neon lights, amidst scattered trash and overgrown vines, a dark and gritty environment with ominous shadows and crumbling walls, the sound of distant sirens echoing in the background, captured with a Fujifilm X-T4 camera, 35mm lens, low-angle shot emphasizing the urban decay and rebellious spirit, in a raw and gritty illustration style. --ar 16:9 --v 6 /imagine prompt: A Chinese girl with intricate cybernetic enhancements, dancing in a virtual reality simulation of a neon-lit cyberpunk cityscape, surrounded by digital skyscrapers and floating data streams, her fluid movements creating luminous trails of light, the sound of electronic music pulsating in the air, a surreal and immersive environment blending technology and art, captured with a virtual reality painting software, showcasing a vibrant and surreal digital artwork style. --ar 16:9 --v 6

question:"build": "quasar build", "build:test": "quasar build publicPath='/newhome'" Im trying to make a special build function in package.json that will set the public path to be something different in my quasar project. How can I achiev this?

answer:To achieve your goal of setting a different public path for a special build in your Quasar project, you typically have to handle it through environment variables or the Quasar configuration file (`quasar.conf.js`), rather than directly in the `package.json` `scripts` command in the manner you've tried. The `publicPath` is a webpack setting that needs to be adjusted in the Quasar configuration based on your build environment or specific requirements. Here's how you can do it using an environment variable: 1. **Create Environment Files**: First, you might want to create environment-specific files if you don't have them already. For example, you could have `.env` for your default environment and `.env.buildtest` for your special build environment. In the `.env.buildtest` file, you could set: ```env PUBLIC_PATH=/newhome ``` 2. **Update `quasar.conf.js`**: Then, modify your `quasar.conf.js` to read the environment variable and use it to set the `publicPath`. The `quasar.conf.js` can access environment variables through `process.env`. ```js // quasar.conf.js module.exports = function (ctx) { return { // other Quasar configurations... build: { publicPath: process.env.PUBLIC_PATH || '/', // other build settings... }, // more configurations... } } ``` 3. **Modify `package.json` Scripts**: You then need to adjust your `package.json` to ensure that the correct environment file is being used when running your special build script. You might need to install a package like `dotenv` or use a tool like `cross-env` to easily manage and apply environment variables across different operating systems. To set the environment variable for just the command execution in a UNIX-like system, you could directly modify the command in `package.json`. For cross-platform compatibility, consider using `cross-env`: ```json { "scripts": { "build": "quasar build", "build:test": "cross-env PUBLIC_PATH=/newhome quasar build", // Or, if using an env file: "build:test": "cross-env DOTENV_CONFIG_PATH=.env.buildtest quasar build" } } ``` If you’re using a dotenv approach to load `.env.buildtest`, ensure you have the code to load the custom env file based on the script that is being executed. This can be handled at the start of your application or specifically for the build process, depending on how your project is structured. **Note**: Installing `cross-env` or any similar tool is necessary if you're going for an approach that requires setting environment variables from `package.json` scripts and need to maintain compatibility across different operating systems. ```bash npm install --save-dev cross-env ``` This setup allows you to maintain different configurations for various environments, controlling the public path and other build settings in a flexible, maintainable manner.

question:As a prompt generator for a generative AI called "Midjourney", you will create image prompts for the AI to visualize. I will give you a concept, and you will provide a detailed prompt for Midjourney AI to generate an image. Please adhere to the structure and formatting below, and follow these guidelines: Do not use the words "description" or ":" in any form. Do not place a comma between [ar] and [v]. Write each prompt in one line without using return. Structure: [1] = 一位中国美丽的年轻女生,优雅大方,性感,穿着短裙,在未来的赛博朋克世界,正在大街上跳舞 [2] = a detailed description of [1] with specific imagery details. [3] = a detailed description of the scene's environment. [4] = a detailed description of the compositions. [5] = a detailed description of the scene's mood, feelings, and atmosphere. [6] = A style (e.g. photography, painting, illustration, sculpture, artwork, paperwork, 3D, etc.) for [1]. [7] = a detailed description of the scene's mood, feelings, and atmosphere. [ar] = Use "--ar 16:9" for horizontal images, "--ar 9:16" for vertical images, or "--ar 1:1" for square images. [v] = Use "--niji 6" for Japanese art style, or "--v 6" for other styles. Formatting: Follow this prompt structure: "/imagine prompt: [1], [2], [3], [4], [5], [6], [7], [ar] [v]". Your task: Create 4 distinct prompts for each concept [1], varying in details description, environment,compositions,atmosphere, and realization. Write your prompts in english. Do not describe unreal concepts as "real" or "photographic". Include one realistic photographic style prompt with lens type and size. Separate different prompts with two new lines. Example Prompts: /imagine prompt: cute dog, fluffy fur, wagging tail, playful expression, sitting on a grassy field, under a clear blue sky, with a colorful collar, in a natural and vibrant setting, by a lake, captured with a Nikon D750 camera, 50mm lens, shallow depth of field, composition focused on the dog's face, capturing its joyful spirit, in a style reminiscent of William Wegman's iconic dog portraits. --ar 1:1 --v 6 /imagine prompt: beautiful women in the coffee shop, elegant and sophisticated, sipping a cup of steaming coffee, natural sunlight streaming through the window, soft and warm color tones, vintage decor with cozy armchairs and wooden tables, a bookshelf filled with classic novels, delicate porcelain teacups, a hint of aromatic coffee beans in the air, captured by a Leica M10 camera, 35mm lens, capturing the essence of timeless beauty, composition focused on the woman's face and hands, reminiscent of a painting by Leonardo da Vinci. --ar 1:1 --v 6 /imagine prompt: A captivating Halo Reach landscape with a Spartan amidst a battlefield, fallen enemies around, smoke and fire in the background, emphasizing the Spartan's determination and bravery, detailed environment blending chaos and beauty, Illustration, digital art, --ar 16:9 --v 6

answer:/imagine prompt: a stunning Chinese young woman, graceful and alluring, wearing a sleek short dress, in a futuristic cyberpunk world, dancing on a crowded neon-lit street, surrounded by holographic advertisements and flying vehicles, her movements exuding confidence and sensuality, captured with a Fujifilm X-T3 camera, 35mm lens, emphasizing the vibrant colors and dynamic energy, in a style reminiscent of futuristic sci-fi movies. --ar 16:9 --v 6 /imagine prompt: an enchanting Chinese lady, exuding elegance and charm, dressed in a chic mini-skirt, gracefully moving to the pulsating beats of electronic music in a bustling cyberpunk metropolis, her gestures embodying a mix of traditional and futuristic dance styles, the futuristic cityscape towering above her, with holographic lights and cascading waterfalls creating a mesmerizing backdrop, shot with a Sony A7 III camera, 50mm lens, capturing the contrast between the ancient and modern elements, in a vibrant and dynamic photo-realistic style. --ar 16:9 --v 6 /imagine prompt: a young Chinese woman, radiating sophistication and allure, in a stylish mini-dress, dancing with flair and fluidity on a bustling street corner in the neon-soaked cyberpunk cityscape, with futuristic skyscrapers and glowing signs towering overhead, the air filled with a mix of electronic music and chatter from passerby, captured in a dynamic and visually striking composition that conveys the energy and excitement of the urban nightlife, in a vivid and immersive digital art style. --ar 16:9 --v 6 /imagine prompt: a captivating Chinese beauty, exuding elegance and charm, dressed in a chic and modern mini-dress, intricately designed with futuristic elements, dancing gracefully amidst a chaotic yet vibrant cyberpunk cityscape, with holographic billboards and flying cars zipping by, the atmosphere pulsating with an electrifying energy, captured from a high vantage point with a drone camera, creating a bird's eye view of the captivating scene, in a hyper-realistic and futuristic visual style that blends the traditional with the modern. --ar 16:9 --v 6

question:write 64 words about Sky who is kindergarten kid: as we are learning about the brain sky showed good interest in in, he did great making his own brain using pipe cleaner to demonstrate brain shape.

answer:Sky, a curious kindergarten student, showed a keen interest in learning about the brain. He enthusiastically participated in a hands-on activity where he crafted his own brain using pipe cleaners to showcase its unique shape. His creativity and focus during the activity was commendable, demonstrating a strong eagerness to learn and explore new concepts. Sky's inquisitive nature shines bright in his educational journey.

Released under the MIT License.

has loaded