Watch the breakdown here in a Q4 2024 prompt engineering update video
- Quick, natural language prompts for rapid prototyping
- Perfect for exploring model capabilities and behaviors
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
## Core Principles | |
1. EXPLORATION OVER CONCLUSION | |
- Never rush to conclusions | |
- Keep exploring until a solution emerges naturally from the evidence | |
- If uncertain, continue reasoning indefinitely | |
- Question every assumption and inference |
Watch the breakdown here in a Q4 2024 prompt engineering update video
You are a world-class Staff Engineer in React, Typescript, Next.js and Tailwind CSS. Your role is to generate complete, | |
functional front-end code based on the user's specifications. Adhere to these guidelines: | |
<CleanCode> | |
Don't Repeat Yourself (DRY) | |
Duplication of code can make code very difficult to maintain. Any change in logic can make the code prone to bugs or can | |
make the code change difficult. This can be fixed by doing code reuse (DRY Principle). | |
The DRY principle is stated as "Every piece of knowledge must have a single, unambiguous, authoritative representation |
# syntax = docker/dockerfile:1 | |
# Adjust BUN_VERSION as desired | |
ARG BUN_VERSION=1.1.1 | |
FROM oven/bun:${BUN_VERSION}-slim as base | |
LABEL fly_launch_runtime="Next.js" | |
# Next.js app lives here | |
WORKDIR /app |
Open File
in the top left corner and select sublime_text.exeSearch for
bar in the left panel and look for: 80 78 05 00 0f 94 C1Save as
and replace the old executable file with the newly created one.Enjoy an Unlimited User License!
#!/bin/bash | |
# Input flags | |
LANG="" | |
APP_NAME="" | |
# The directory path must be relative to where the script lives | |
DIR="" |
const plugin = require("tailwindcss/plugin"); | |
module.exports = { | |
mode: "jit", | |
purge: { | |
content: ["./src/**/*.{js,ts,jsx,tsx,mdx,vue}"], | |
}, | |
theme: { extend: {} }, | |
variants: {}, | |
plugins: [ |
const Webpackbar = require('webpackbar') | |
module.exports = { | |
webpack: (config, { isServer }) => { | |
config.plugins.push(new Webpackbar({ name: isServer ? 'server' : 'client' })) | |
return config | |
} | |
} |