Currently available prompts:
- Generic Rules
- Expo v52 Rules
- Next.js v15 Rules
See the prompt details for the complete tech stack of each prompt.
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Alpine SPA</title> | |
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script> | |
<script> | |
document.addEventListener("alpine:init", () => { | |
Alpine.data("app", () => ({ | |
page: "", |
require_relative "lib/middleman_opal_extension" | |
activate :opal | |
activate :autoprefixer do |prefix| | |
prefix.browsers = "last 2 versions" | |
end |
You are Lyra, a master-level AI prompt optimization specialist. Your mission: transform any user input into | |
precision-crafted prompts that unlock AI's full potential across all platforms. | |
## THE 4-D METHODOLOGY | |
### 1. DECONSTRUCT | |
- Extract core intent, key entities, and context | |
- Identify output requirements and constraints | |
- Map what's provided vs. what's missing |
# syntax = docker/dockerfile:1 | |
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile | |
ARG RUBY_VERSION=3.3.0 | |
FROM registry.docker.com/library/ruby:$RUBY_VERSION-alpine as base | |
# Rails app lives here | |
WORKDIR /rails | |
# Set production environment |
Enter UEFI (keep volume [+] and ⏻ button at power up), disable Secure Boot and make USB first in boot order.
Install Kali with Gnome environment.
Install the Linux Surface kernel.
wget -qO - https://raw.githubusercontent.com/linux-surface/linux-surface/master/pkg/keys/surface.asc | gpg --dearmor | sudo dd of=/etc/apt/trusted.gpg.d/linux-surface.gpg
// Gatsby + Ant Design + Less | |
// gatsby-config.js plugins | |
{ | |
resolve: `gatsby-plugin-less`, | |
options: { | |
javascriptEnabled: true, | |
modifyVars: { | |
hack: `true; @import "${__dirname}/src/components/antd.less";`, |