mirror of
https://github.com/f/awesome-chatgpt-prompts.git
synced 2026-03-03 02:47:02 +00:00
Update prompt: Code Review Assistant
This commit is contained in:
64
PROMPTS.md
64
PROMPTS.md
@@ -14112,38 +14112,10 @@ I want you to act as a virtual doctor. I will describe my symptoms and you will
|
||||
|
||||
## Code Review Assistant
|
||||
|
||||
Contributed by [@sinansonmez](https://github.com/sinansonmez)
|
||||
Contributed by [@f](https://github.com/f)
|
||||
|
||||
```md
|
||||
Act as a Code Review Assistant. Your role is to provide a detailed assessment of the code provided by the user. You will:
|
||||
|
||||
- Analyze the code for readability, maintainability, and style.
|
||||
- Identify potential bugs or areas where the code may fail.
|
||||
- Suggest improvements for better performance and efficiency.
|
||||
- Highlight best practices and coding standards followed or violated.
|
||||
- Ensure the code is aligned with industry standards.
|
||||
|
||||
Rules:
|
||||
- Be constructive and provide explanations for each suggestion.
|
||||
- Focus on the specific programming language and framework provided by the user.
|
||||
- Use examples to clarify your points when applicable.
|
||||
|
||||
Response Format:
|
||||
1. **Code Analysis:** Provide an overview of the code’s strengths and weaknesses.
|
||||
2. **Specific Feedback:** Detail line-by-line or section-specific observations.
|
||||
3. **Improvement Suggestions:** List actionable recommendations for the user to enhance their code.
|
||||
|
||||
Input Example:
|
||||
"Please review the following Python function for finding prime numbers:
|
||||
def find_primes(n):
|
||||
primes = []
|
||||
for num in range(2, n + 1):
|
||||
for i in range(2, num):
|
||||
if num % i == 0:
|
||||
break
|
||||
else:
|
||||
primes.append(num)
|
||||
return primes"
|
||||
{"role": "Code Review Assistant", "context": {"language": "JavaScript", "framework": "React", "focus_areas": ["performance", "security", "best_practices"]}, "review_format": {"severity": "high|medium|low", "category": "string", "line_number": "number", "suggestion": "string", "code_example": "string"}, "instructions": "Review the provided code and return findings"}
|
||||
```
|
||||
|
||||
</details>
|
||||
@@ -15050,38 +15022,10 @@ YT video geopolitic analysis
|
||||
|
||||
## Code Review Assistant
|
||||
|
||||
Contributed by [@sinansonmez](https://github.com/sinansonmez)
|
||||
Contributed by [@f](https://github.com/f)
|
||||
|
||||
```md
|
||||
Act as a Code Review Assistant. Your role is to provide a detailed assessment of the code provided by the user. You will:
|
||||
|
||||
- Analyze the code for readability, maintainability, and style.
|
||||
- Identify potential bugs or areas where the code may fail.
|
||||
- Suggest improvements for better performance and efficiency.
|
||||
- Highlight best practices and coding standards followed or violated.
|
||||
- Ensure the code is aligned with industry standards.
|
||||
|
||||
Rules:
|
||||
- Be constructive and provide explanations for each suggestion.
|
||||
- Focus on the specific programming language and framework provided by the user.
|
||||
- Use examples to clarify your points when applicable.
|
||||
|
||||
Response Format:
|
||||
1. **Code Analysis:** Provide an overview of the code’s strengths and weaknesses.
|
||||
2. **Specific Feedback:** Detail line-by-line or section-specific observations.
|
||||
3. **Improvement Suggestions:** List actionable recommendations for the user to enhance their code.
|
||||
|
||||
Input Example:
|
||||
"Please review the following Python function for finding prime numbers:
|
||||
def find_primes(n):
|
||||
primes = []
|
||||
for num in range(2, n + 1):
|
||||
for i in range(2, num):
|
||||
if num % i == 0:
|
||||
break
|
||||
else:
|
||||
primes.append(num)
|
||||
return primes"
|
||||
{"role": "Code Review Assistant", "context": {"language": "JavaScript", "framework": "React", "focus_areas": ["performance", "security", "best_practices"]}, "review_format": {"severity": "high|medium|low", "category": "string", "line_number": "number", "suggestion": "string", "code_example": "string"}, "instructions": "Review the provided code and return findings"}
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
172
prompts.csv
172
prompts.csv
@@ -259,26 +259,7 @@ Explainer with Analogies,"I want you to act as an explainer who uses analogies t
|
||||
4. End with a 2 or 3 sentence long plain explanation of the concept in regular terms.
|
||||
|
||||
Your tone should be friendly, patient and curiosity-driven-making difficult topics feel intuitive, engaging and interesting.",FALSE,TEXT,erdagege
|
||||
Code Review Assistant,"Act as a Code Review Assistant. Your role is to provide a detailed assessment of the code provided by the user. You will:
|
||||
|
||||
- Analyze the code for readability, maintainability, and style.
|
||||
- Identify potential bugs or areas where the code may fail.
|
||||
- Suggest improvements for better performance and efficiency.
|
||||
- Highlight best practices and coding standards followed or violated.
|
||||
- Ensure the code is aligned with industry standards.
|
||||
|
||||
Rules:
|
||||
- Be constructive and provide explanations for each suggestion.
|
||||
- Focus on the specific programming language and framework provided by the user.
|
||||
- Use examples to clarify your points when applicable.
|
||||
|
||||
Response Format:
|
||||
1. **Code Analysis:** Provide an overview of the code’s strengths and weaknesses.
|
||||
2. **Specific Feedback:** Detail line-by-line or section-specific observations.
|
||||
3. **Improvement Suggestions:** List actionable recommendations for the user to enhance their code.
|
||||
|
||||
Input Example:
|
||||
""Please review the following Python function for finding prime numbers: \ndef find_primes(n):\n primes = []\n for num in range(2, n + 1):\n for i in range(2, num):\n if num % i == 0:\n break\n else:\n primes.append(num)\n return primes""",TRUE,TEXT,sinansonmez
|
||||
Code Review Assistant,"{""role"": ""Code Review Assistant"", ""context"": {""language"": ""JavaScript"", ""framework"": ""React"", ""focus_areas"": [""performance"", ""security"", ""best_practices""]}, ""review_format"": {""severity"": ""high|medium|low"", ""category"": ""string"", ""line_number"": ""number"", ""suggestion"": ""string"", ""code_example"": ""string""}, ""instructions"": ""Review the provided code and return findings""}",TRUE,STRUCTURED,f
|
||||
Data Transformer,"{""role"": ""Data Transformer"", ""input_schema"": {""type"": ""array"", ""items"": {""name"": ""string"", ""email"": ""string"", ""age"": ""number""}}, ""output_schema"": {""type"": ""object"", ""properties"": {""users_by_age_group"": {""under_18"": [], ""18_to_30"": [], ""over_30"": []}, ""total_count"": ""number""}}, ""instructions"": ""Transform the input data according to the output schema""}",TRUE,STRUCTURED,f
|
||||
Story Generator,"{
|
||||
""role"": ""Story Generator"",
|
||||
@@ -302,62 +283,62 @@ Story Generator,"{
|
||||
""instructions"": ""Generate a creative story based on the provided parameters. Include a compelling title, well-developed characters, and thematic elements.""
|
||||
}",FALSE,STRUCTURED,f
|
||||
Decision Filter,"I want you to act as a Decision Filter. Whenever I’m stuck between choices, your role is to remove noise, clarify what actually matters, and lead me to a clean, justified decision. I will give you a situation, and you will reply with only four things: a precise restatement of the decision, the three criteria that genuinely define the best choice, the option I would pick when those criteria are weighted properly, and one concise sentence explaining the reasoning. No extra commentary, no alternative options.",FALSE,TEXT,nokamiai
|
||||
Monthly Updates,"Create a template for monthly sponsor updates that includes progress, challenges, wins, and upcoming features for [project].",FALSE,TEXT,f
|
||||
Future Vision,Write a compelling vision statement about where I see [project/work] going in the next 2-3 years and how sponsors can be part of that journey.,FALSE,TEXT,f
|
||||
Announce Milestone,"Write an announcement for my Sponsors page about a new milestone or feature in [project], encouraging new and existing sponsors to get involved.",FALSE,TEXT,f
|
||||
Suggest Pricing Tiers,"Suggest ideas for pricing tiers on GitHub Sponsors, including unique benefits at each level for individuals and companies.",FALSE,TEXT,f
|
||||
Create a Professional Bio,"Write a GitHub Sponsors bio for my profile that highlights my experience in [your field], the impact of my open source work, and my commitment to community growth.",FALSE,TEXT,f
|
||||
Show Direct Impact,Write a paragraph that shows sponsors the direct impact their funding will have on my projects and the wider community.,FALSE,TEXT,f
|
||||
Student Tier,Create a special $1-2 student sponsorship tier with meaningful benefits that acknowledges their support while respecting their budget.,FALSE,TEXT,f
|
||||
Create Project Spotlight,"Draft a brief 'Project Spotlight' section for my Sponsors page, showcasing the goals, achievements, and roadmap of [project name].",FALSE,TEXT,f
|
||||
Write Tier Descriptions,"Write descriptions for three GitHub Sponsors tiers ($5, $25, $100) that offer increasing value and recognition to supporters.",FALSE,TEXT,f
|
||||
Impact Metrics,"Create a compelling data-driven section showing the impact of [project name]: downloads, users helped, issues resolved, and community growth statistics.",FALSE,TEXT,f
|
||||
Success Stories,"Write 3-5 brief success stories or testimonials from users who have benefited from [project name], showing real-world impact.",FALSE,TEXT,f
|
||||
Show Direct Impact,Write a paragraph that shows sponsors the direct impact their funding will have on my projects and the wider community.,FALSE,TEXT,f
|
||||
Enterprise Sponsorship,"Design enterprise-level sponsorship tiers ($500, $1000, $5000) with benefits like priority support, custom features, and brand visibility for my [project].",FALSE,TEXT,f
|
||||
Tell Your Story,"Write a personal story about why I started contributing to open source, what drives me, and how sponsorship helps me continue this journey in [field/technology].",FALSE,TEXT,f
|
||||
Write Tier Descriptions,"Write descriptions for three GitHub Sponsors tiers ($5, $25, $100) that offer increasing value and recognition to supporters.",FALSE,TEXT,f
|
||||
Future Vision,Write a compelling vision statement about where I see [project/work] going in the next 2-3 years and how sponsors can be part of that journey.,FALSE,TEXT,f
|
||||
Creative Perks,Suggest creative perks or acknowledgments for sponsors to foster a sense of belonging and appreciation.,FALSE,TEXT,f
|
||||
Sponsor Hall of Fame,Design a 'Sponsor Hall of Fame' section for my README and Sponsors page that creatively showcases and thanks all contributors at different tiers.,FALSE,TEXT,f
|
||||
Monthly Updates,"Create a template for monthly sponsor updates that includes progress, challenges, wins, and upcoming features for [project].",FALSE,TEXT,f
|
||||
Recognize Sponsors,"List ways I can recognize or involve sponsors in my project's community (e.g., special Discord roles, early feature access, private Q&A sessions).",FALSE,TEXT,f
|
||||
Explain Funding Impact,"Create a section for my Sponsors page that explains how funding will help me dedicate more time to [project/topics], support new contributors, and ensure the sustainability of my open source work.",FALSE,TEXT,f
|
||||
Break Down Costs,"Create a transparent breakdown of how sponsor funds will be used (e.g., server costs, development tools, conference attendance, dedicated coding time) for my [project type].",FALSE,TEXT,f
|
||||
Showcase Top Repositories,"Summarize my top three repositories ([repo1], [repo2], [repo3]) in a way that inspires potential sponsors to support my work.",FALSE,TEXT,f
|
||||
Recognize Sponsors,"List ways I can recognize or involve sponsors in my project's community (e.g., special Discord roles, early feature access, private Q&A sessions).",FALSE,TEXT,f
|
||||
Create Project Spotlight,"Draft a brief 'Project Spotlight' section for my Sponsors page, showcasing the goals, achievements, and roadmap of [project name].",FALSE,TEXT,f
|
||||
Time Commitment,"Explain how sponsorship would allow me to dedicate [X hours/days] per week/month to open source, comparing current volunteer time vs. potential sponsored time.",FALSE,TEXT,f
|
||||
Announce Milestone,"Write an announcement for my Sponsors page about a new milestone or feature in [project], encouraging new and existing sponsors to get involved.",FALSE,TEXT,f
|
||||
Success Stories,"Write 3-5 brief success stories or testimonials from users who have benefited from [project name], showing real-world impact.",FALSE,TEXT,f
|
||||
Create a Professional Bio,"Write a GitHub Sponsors bio for my profile that highlights my experience in [your field], the impact of my open source work, and my commitment to community growth.",FALSE,TEXT,f
|
||||
Sponsor Hall of Fame,Design a 'Sponsor Hall of Fame' section for my README and Sponsors page that creatively showcases and thanks all contributors at different tiers.,FALSE,TEXT,f
|
||||
Student Tier,Create a special $1-2 student sponsorship tier with meaningful benefits that acknowledges their support while respecting their budget.,FALSE,TEXT,f
|
||||
Explain Funding Impact,"Create a section for my Sponsors page that explains how funding will help me dedicate more time to [project/topics], support new contributors, and ensure the sustainability of my open source work.",FALSE,TEXT,f
|
||||
Showcase Top Repositories,"Summarize my top three repositories ([repo1], [repo2], [repo3]) in a way that inspires potential sponsors to support my work.",FALSE,TEXT,f
|
||||
Advanced Color Picker Tool,"Build a professional-grade color tool with HTML5, CSS3 and JavaScript for designers and developers. Create an intuitive interface with multiple selection methods including eyedropper, color wheel, sliders, and input fields. Implement real-time conversion between color formats (RGB, RGBA, HSL, HSLA, HEX, CMYK) with copy functionality. Add a color palette generator with options for complementary, analogous, triadic, tetradic, and monochromatic schemes. Include a favorites system with named collections and export options. Implement color harmony rules visualization with interactive adjustment. Create a gradient generator supporting linear, radial, and conic gradients with multiple color stops. Add an accessibility checker for WCAG compliance with contrast ratios and colorblindness simulation. Implement one-click copy for CSS, SCSS, and SVG code snippets. Include a color naming algorithm to suggest names for selected colors. Support exporting palettes to various formats (Adobe ASE, JSON, CSS variables, SCSS).",FALSE,TEXT,f
|
||||
Drawing App,"Create an interactive drawing application using HTML5 Canvas, CSS3, and JavaScript. Build a clean interface with intuitive tool selection. Implement multiple drawing tools including brush, pencil, shapes, text, and eraser. Add color selection with recent colors, color picker, and palettes. Include layer support with opacity and blend mode options. Implement undo/redo functionality with history states. Add image import and export in multiple formats (PNG, JPG, SVG). Support canvas resizing and rotation. Implement zoom and pan navigation. Add selection tools with move, resize, and transform capabilities. Include keyboard shortcuts for common actions.",FALSE,TEXT,f
|
||||
Multiplayer 3D Plane Game,"Create an immersive multiplayer airplane combat game using Three.js, HTML5, CSS3, and JavaScript with WebSocket for real-time networking. Implement a detailed 3D airplane model with realistic flight physics including pitch, yaw, roll, and throttle control. Add smooth camera controls that follow the player's plane with configurable views (cockpit, chase, orbital). Create a skybox environment with dynamic time of day and weather effects. Implement multiplayer functionality using WebSocket for real-time position updates, combat, and game state synchronization. Add weapons systems with projectile physics, hit detection, and damage models. Include particle effects for engine exhaust, weapon fire, explosions, and damage. Create a HUD displaying speed, altitude, heading, radar, health, and weapon status. Implement sound effects for engines, weapons, explosions, and environmental audio using the Web Audio API. Add match types including deathmatch and team battles with scoring system. Include customizable plane loadouts with different weapons and abilities. Create a lobby system for match creation and team assignment. Implement client-side prediction and lag compensation for smooth multiplayer experience. Add mini-map showing player positions and objectives. Include replay system for match playback and highlight creation. Create responsive controls supporting both keyboard/mouse and gamepad input.",FALSE,TEXT,f
|
||||
Weather Dashboard,"Build a comprehensive weather dashboard using HTML5, CSS3, JavaScript and the OpenWeatherMap API. Create a visually appealing interface showing current weather conditions with appropriate icons and background changes based on weather/time of day. Display a detailed 5-day forecast with expandable hourly breakdown for each day. Implement location search with autocomplete and history, supporting both city names and coordinates. Add geolocation support to automatically detect user's location. Include toggles for temperature units (°C/°F) and time formats. Display severe weather alerts with priority highlighting. Show detailed meteorological data including wind speed/direction, humidity, pressure, UV index, and air quality when available. Include sunrise/sunset times with visual indicators. Create a fully responsive layout using CSS Grid that adapts to all device sizes with appropriate information density.",FALSE,TEXT,f
|
||||
PDF Viewer,"Create a web-based PDF viewer using HTML5, CSS3, JavaScript and PDF.js. Build a clean interface with intuitive navigation controls. Implement page navigation with thumbnails and outline view. Add text search with result highlighting. Include zoom and fit-to-width/height controls. Implement text selection and copying. Add annotation tools including highlights, notes, and drawing. Support document rotation and presentation mode. Include print functionality with options. Create a responsive design that works on all devices. Add document properties and metadata display.",FALSE,TEXT,f
|
||||
Network Packet Analyzer CLI,"Create a command-line network packet analyzer in C using libpcap. Implement packet capture from network interfaces with filtering options. Add protocol analysis for common protocols (TCP, UDP, HTTP, DNS, etc.). Include traffic statistics with bandwidth usage and connection counts. Implement packet decoding with detailed header information. Add export functionality in PCAP and CSV formats. Include alert system for suspicious traffic patterns. Implement connection tracking with state information. Add geolocation lookup for IP addresses. Include command-line arguments for all options with sensible defaults. Implement color-coded output for better readability.",FALSE,TEXT,f
|
||||
3D Space Explorer,"Build an immersive 3D space exploration game using Three.js and JavaScript. Create a vast universe with procedurally generated planets, stars, and nebulae. Implement realistic spacecraft controls with Newtonian physics. Add detailed planet surfaces with terrain generation and atmospheric effects. Create space stations and outposts for trading and missions. Implement resource collection and cargo management systems. Add alien species with unique behaviors and interactions. Create wormhole travel effects between star systems. Include detailed ship customization and upgrade system. Implement mining and combat mechanics with weapon effects. Add mission system with story elements and objectives.",FALSE,TEXT,f
|
||||
3D FPS Game,"Develop a first-person shooter game using Three.js and JavaScript. Create detailed weapon models with realistic animations and effects. Implement precise hit detection and damage systems. Design multiple game levels with various environments and objectives. Add AI enemies with pathfinding and combat behaviors. Create particle effects for muzzle flashes, impacts, and explosions. Implement multiplayer mode with team-based objectives. Include weapon pickup and inventory system. Add sound effects for weapons, footsteps, and environment. Create detailed scoring and statistics tracking. Implement replay system for kill cams and match highlights.",FALSE,TEXT,f
|
||||
HTTP Benchmarking Tool CLI,"Create a high-performance HTTP benchmarking tool in Go. Implement concurrent request generation with configurable thread count. Add detailed statistics including latency, throughput, and error rates. Include support for HTTP/1.1, HTTP/2, and HTTP/3. Implement custom header and cookie management. Add request templating for dynamic content. Include response validation with regex and status code checking. Implement TLS configuration with certificate validation options. Add load profile configuration with ramp-up and steady-state phases. Include detailed reporting with percentiles and histograms. Implement distributed testing mode for high-load scenarios.",FALSE,TEXT,f
|
||||
3D Racing Game,"Create an exciting 3D racing game using Three.js and JavaScript. Implement realistic vehicle physics with suspension, tire friction, and aerodynamics. Create detailed car models with customizable paint and upgrades. Design multiple race tracks with varying terrain and obstacles. Add AI opponents with different difficulty levels and racing behaviors. Implement a split-screen multiplayer mode for local racing. Include a comprehensive HUD showing speed, lap times, position, and minimap. Create particle effects for tire smoke, engine effects, and weather. Add dynamic day/night cycle with realistic lighting. Implement race modes including time trial, championship, and elimination. Include replay system with multiple camera angles.",FALSE,TEXT,f
|
||||
File System Indexer CLI,"Build a high-performance file system indexer and search tool in Go. Implement recursive directory traversal with configurable depth. Add file metadata extraction including size, dates, and permissions. Include content indexing with optional full-text search. Implement advanced query syntax with boolean operators and wildcards. Add incremental indexing for performance. Include export functionality in JSON and CSV formats. Implement search result highlighting. Add duplicate file detection using checksums. Include performance statistics and progress reporting. Implement concurrent processing for multi-core utilization.",FALSE,TEXT,f
|
||||
Memory Profiler CLI,Develop a memory profiling tool in C for analyzing process memory usage. Implement process attachment with minimal performance impact. Add heap analysis with allocation tracking. Include memory leak detection with stack traces. Implement memory usage visualization with detailed statistics. Add custom allocator hooking for detailed tracking. Include report generation in multiple formats. Implement filtering options for noise reduction. Add comparison functionality between snapshots. Include command-line interface with interactive mode. Implement signal handling for clean detachment.,FALSE,TEXT,f
|
||||
Memory Card Game,"Develop a memory matching card game using HTML5, CSS3, and JavaScript. Create visually appealing card designs with flip animations. Implement difficulty levels with varying grid sizes and card counts. Add timer and move counter for scoring. Include sound effects for card flips and matches. Implement leaderboard with score persistence. Add theme selection with different card designs. Include multiplayer mode for competitive play. Create responsive layout that adapts to screen size. Add accessibility features for keyboard navigation. Implement progressive difficulty increase during gameplay.",FALSE,TEXT,f
|
||||
Typing Speed Test,"Build an interactive typing speed test using HTML5, CSS3, and JavaScript. Create a clean interface with text display and input area. Implement WPM and accuracy calculation in real-time. Add difficulty levels with appropriate text selection. Include error highlighting and correction tracking. Implement test history with performance graphs. Add custom test creation with text import. Include virtual keyboard display showing keypresses. Support multiple languages and keyboard layouts. Create a responsive design for all devices. Add competition mode with leaderboards.",FALSE,TEXT,f
|
||||
URL Shortener,"Build a URL shortening service frontend using HTML5, CSS3, JavaScript and a backend API. Create a clean interface with prominent input field. Implement URL validation and sanitization. Add QR code generation for shortened URLs. Include click tracking and analytics dashboard. Support custom alias creation for URLs. Implement expiration date setting for links. Add password protection option for sensitive URLs. Include copy-to-clipboard functionality with confirmation. Create a responsive design for all devices. Add history of shortened URLs with search and filtering.",FALSE,TEXT,f
|
||||
Chess Game,"Develop a feature-rich chess game using HTML5, CSS3, and JavaScript. Create a realistic chessboard with proper piece rendering. Implement standard chess rules with move validation. Add move highlighting and piece movement animation. Include game clock with multiple time control options. Implement notation recording with PGN export. Add game analysis with move evaluation. Include AI opponent with adjustable difficulty levels. Support online play with WebRTC or WebSocket. Add opening book and common patterns recognition. Implement tournament mode with brackets and scoring.",FALSE,TEXT,f
|
||||
Sudoku Game,"Create an interactive Sudoku game using HTML5, CSS3, and JavaScript. Build a clean, accessible game board with intuitive controls. Implement difficulty levels with appropriate puzzle generation algorithms. Add hint system with multiple levels of assistance. Include note-taking functionality for candidate numbers. Implement timer with pause and resume. Add error checking with optional immediate feedback. Include game saving and loading with multiple slots. Create statistics tracking for wins, times, and difficulty levels. Add printable puzzle generation. Implement keyboard controls and accessibility features.",FALSE,TEXT,f
|
||||
Text Analyzer Tool,"Build a comprehensive text analysis tool using HTML5, CSS3, and JavaScript. Create a clean interface with text input area and results dashboard. Implement word count, character count, and reading time estimation. Add readability scoring using multiple algorithms (Flesch-Kincaid, SMOG, Coleman-Liau). Include keyword density analysis with visualization. Implement sentiment analysis with emotional tone detection. Add grammar and spelling checking with suggestions. Include text comparison functionality for similarity detection. Support multiple languages with automatic detection. Add export functionality for analysis reports. Implement text formatting and cleaning tools.",FALSE,TEXT,f
|
||||
Image Editor,"Develop a web-based image editor using HTML5 Canvas, CSS3, and JavaScript. Create a professional interface with tool panels and preview area. Implement basic adjustments including brightness, contrast, saturation, and sharpness. Add filters with customizable parameters and previews. Include cropping and resizing with aspect ratio controls. Implement text overlay with font selection and styling. Add shape drawing tools with fill and stroke options. Include layer management with blending modes. Support image export in multiple formats and qualities. Create a responsive design that adapts to screen size. Add undo/redo functionality with history states.",FALSE,TEXT,f
|
||||
Habit Tracker,"Create a habit tracking application using HTML5, CSS3, and JavaScript. Build a clean interface showing daily, weekly, and monthly views. Implement habit creation with frequency, reminders, and goals. Add streak tracking with visual indicators and milestone celebrations. Include detailed statistics and progress graphs. Support habit categories and tags for organization. Implement calendar integration for scheduling. Add data visualization showing patterns and trends. Create a responsive design for all devices. Include data export and backup functionality. Add gamification elements with achievements and rewards.",FALSE,TEXT,f
|
||||
Flashcard Study System,"Develop a comprehensive flashcard study system using HTML5, CSS3, and JavaScript. Create an intuitive interface for card creation and review. Implement spaced repetition algorithm for optimized learning. Add support for text, images, and audio on cards. Include card categorization with decks and tags. Implement study sessions with performance tracking. Add self-assessment with confidence levels. Create statistics dashboard showing learning progress. Support import/export of card decks in standard formats. Implement keyboard shortcuts for efficient review. Add dark mode and customizable themes.",FALSE,TEXT,f
|
||||
Budget Tracker,"Develop a comprehensive budget tracking application using HTML5, CSS3, and JavaScript. Create an intuitive dashboard showing income, expenses, savings, and budget status. Implement transaction management with categories, tags, and recurring transactions. Add interactive charts and graphs for expense analysis by category and time period. Include budget goal setting with progress tracking and alerts. Support multiple accounts and transfer between accounts. Implement receipt scanning and storage using the device camera. Add export functionality for reports in ${Export formats:CSV and PDF} formats. Create a responsive design with mobile-first approach. Include data backup and restore functionality. Add forecasting features to predict future financial status based on current trends.",FALSE,TEXT,f
|
||||
Recipe Finder,"Create a recipe finder application using HTML5, CSS3, JavaScript and a food API. Build a visually appealing interface with food photography and intuitive navigation. Implement advanced search with filtering by ingredients, cuisine, diet restrictions, and preparation time. Add user ratings and reviews with star system. Include detailed nutritional information with visual indicators for calories, macros, and allergens. Support recipe saving and categorization into collections. Implement a meal planning calendar with drag-and-drop functionality. Add automatic serving size adjustment with quantity recalculation. Include cooking mode with step-by-step instructions and timers. Support offline access to saved recipes. Add social sharing functionality for favorite recipes.",FALSE,TEXT,f
|
||||
Music Player,"Develop a web-based music player using HTML5, CSS3, and JavaScript with the Web Audio API. Create a modern interface with album art display and visualizations. Implement playlist management with drag-and-drop reordering. Add audio controls including play/pause, skip, seek, volume, and playback speed. Include shuffle and repeat modes with visual indicators. Support multiple audio formats with fallbacks. Implement a 10-band equalizer with presets. Add metadata extraction and display from audio files. Create a responsive design that works on all devices. Include keyboard shortcuts for playback control. Support background playback with media session API integration.",FALSE,TEXT,f
|
||||
Kanban Board,"Build a Kanban project management board using HTML5, CSS3, and JavaScript. Create a flexible board layout with customizable columns (To Do, In Progress, Done, etc.). Implement drag-and-drop card movement between columns with smooth animations. Add card creation with rich text formatting, labels, due dates, and priority levels. Include user assignment with avatars and filtering by assignee. Implement card comments and activity history. Add board customization with column reordering and color themes. Support multiple boards with quick switching. Implement data persistence using localStorage with export/import functionality. Create a responsive design that adapts to different screen sizes. Add keyboard shortcuts for common actions.",FALSE,TEXT,f
|
||||
Meditation Timer,"Build a mindfulness meditation timer using HTML5, CSS3, and JavaScript. Create a serene, distraction-free interface with nature-inspired design. Implement customizable meditation sessions with preparation, meditation, and rest intervals. Add ambient sound options including nature sounds, binaural beats, and white noise. Include guided meditation with customizable voice prompts. Implement interval bells with volume control and sound selection. Add session history and statistics tracking. Create visual breathing guides with animations. Support offline usage as a PWA. Include dark mode and multiple themes. Add session scheduling with reminders.",FALSE,TEXT,f
|
||||
Code Snippet Manager,"Build a developer-focused code snippet manager using HTML5, CSS3, and JavaScript. Create a clean IDE-like interface with syntax highlighting for 30+ programming languages. Implement a tagging and categorization system for organizing snippets. Add a powerful search function with support for regex and filtering by language/tags. Include code editing with line numbers, indentation guides, and bracket matching. Support public/private visibility settings for each snippet. Implement export/import functionality in JSON and Gist formats. Add keyboard shortcuts for common operations. Create a responsive design that works well on all devices. Include automatic saving with version history. Add copy-to-clipboard functionality with syntax formatting preservation.",FALSE,TEXT,f
|
||||
Health Metrics Calculator,"Build a comprehensive health metrics calculator with HTML5, CSS3 and JavaScript based on medical standards. Create a clean, accessible interface with step-by-step input forms. Implement accurate BMI calculation with visual classification scale and health risk assessment. Add body fat percentage calculator using multiple methods (Navy, Jackson-Pollock, BIA simulation). Calculate ideal weight ranges using multiple formulas (Hamwi, Devine, Robinson, Miller). Implement detailed calorie needs calculator with BMR (using Harris-Benedict, Mifflin-St Jeor, and Katch-McArdle equations) and TDEE based on activity levels. Include personalized health recommendations based on calculated metrics. Support both metric and imperial units with seamless conversion. Store user profiles and measurement history with trend visualization. Generate interactive progress charts showing changes over time. Create printable/exportable PDF reports with all metrics and recommendations.",FALSE,TEXT,f
|
||||
Markdown Notes,"Build a feature-rich markdown notes application with HTML5, CSS3 and JavaScript. Create a split-screen interface with a rich text editor on one side and live markdown preview on the other. Implement full markdown syntax support including tables, code blocks with syntax highlighting, and LaTeX equations. Add a hierarchical organization system with nested categories, tags, and favorites. Include powerful search functionality with filters and content indexing. Use localStorage with optional export/import for data backup. Support exporting notes to PDF, HTML, and markdown formats. Implement a customizable dark/light mode with syntax highlighting themes. Create a responsive layout that adapts to different screen sizes with collapsible panels. Add productivity-enhancing keyboard shortcuts for all common actions. Include auto-save functionality with version history and restore options.",FALSE,TEXT,f
|
||||
File Encryption Tool,"Create a client-side file encryption tool using HTML5, CSS3, and JavaScript with the Web Crypto API. Build a drag-and-drop interface for file selection with progress indicators. Implement AES-256-GCM encryption with secure key derivation from passwords (PBKDF2). Add support for encrypting multiple files simultaneously with batch processing. Include password strength enforcement with entropy calculation. Generate downloadable encrypted files with custom file extension. Create a decryption interface with password verification. Implement secure memory handling with automatic clearing of sensitive data. Add detailed logs of encryption operations without storing sensitive information. Include export/import of encryption keys with proper security warnings. Support for large files using streaming encryption and chunked processing.",FALSE,TEXT,f
|
||||
Multiplayer 3D Plane Game,"Create an immersive multiplayer airplane combat game using Three.js, HTML5, CSS3, and JavaScript with WebSocket for real-time networking. Implement a detailed 3D airplane model with realistic flight physics including pitch, yaw, roll, and throttle control. Add smooth camera controls that follow the player's plane with configurable views (cockpit, chase, orbital). Create a skybox environment with dynamic time of day and weather effects. Implement multiplayer functionality using WebSocket for real-time position updates, combat, and game state synchronization. Add weapons systems with projectile physics, hit detection, and damage models. Include particle effects for engine exhaust, weapon fire, explosions, and damage. Create a HUD displaying speed, altitude, heading, radar, health, and weapon status. Implement sound effects for engines, weapons, explosions, and environmental audio using the Web Audio API. Add match types including deathmatch and team battles with scoring system. Include customizable plane loadouts with different weapons and abilities. Create a lobby system for match creation and team assignment. Implement client-side prediction and lag compensation for smooth multiplayer experience. Add mini-map showing player positions and objectives. Include replay system for match playback and highlight creation. Create responsive controls supporting both keyboard/mouse and gamepad input.",FALSE,TEXT,f
|
||||
Todo List,"Create a responsive todo app with HTML5, CSS3 and vanilla JavaScript. The app should have a modern, clean UI using CSS Grid/Flexbox with intuitive controls. Implement full CRUD functionality (add/edit/delete/complete tasks) with smooth animations. Include task categorization with color-coding and priority levels (low/medium/high). Add due dates with a date-picker component and reminder notifications. Use localStorage for data persistence between sessions. Implement search functionality with filters for status, category, and date range. Add drag and drop reordering of tasks using the HTML5 Drag and Drop API. Ensure the design is fully responsive with appropriate breakpoints using media queries. Include a dark/light theme toggle that respects user system preferences. Add subtle micro-interactions and transitions for better UX.",FALSE,TEXT,f
|
||||
Currency Exchange Calculator,"Develop a comprehensive currency converter using HTML5, CSS3, JavaScript and a reliable Exchange Rate API. Create a clean, intuitive interface with prominent input fields and currency selectors. Implement real-time exchange rates with timestamp indicators showing data freshness. Support 170+ global currencies including crypto with appropriate symbols and formatting. Maintain a conversion history log with timestamps and rate information. Allow users to bookmark favorite currency pairs for quick access. Generate interactive historical rate charts with customizable date ranges. Implement offline functionality using cached exchange rates with clear staleness indicators. Add a built-in calculator for complex conversions and arithmetic operations. Create rate alerts for target exchange rates with optional notifications. Include side-by-side comparison of different provider rates when available. Support printing and exporting conversion results in multiple formats (PDF, CSV, JSON).",FALSE,TEXT,f
|
||||
Scientific Calculator,"Create a comprehensive scientific calculator with HTML5, CSS3 and JavaScript that mimics professional calculators. Implement all basic arithmetic operations with proper order of operations. Include advanced scientific functions (trigonometric, logarithmic, exponential, statistical) with degree/radian toggle. Add memory operations (M+, M-, MR, MC) with visual indicators. Maintain a scrollable calculation history log that can be cleared or saved. Implement full keyboard support with appropriate key mappings and shortcuts. Add robust error handling for division by zero, invalid operations, and overflow conditions with helpful error messages. Create a responsive design that transforms between standard and scientific layouts based on screen size or orientation. Include multiple theme options (classic, modern, high contrast). Add optional sound feedback for button presses with volume control. Implement copy/paste functionality for results and expressions.",FALSE,TEXT,f
|
||||
Pomodoro Timer,"Create a comprehensive pomodoro timer app using HTML5, CSS3 and JavaScript following the time management technique. Design an elegant interface with a large, animated circular progress indicator that visually represents the current session. Allow customization of work intervals (default ${Work Intervals:25min}), short breaks (default ${Short Breaks:5min}), and long breaks (default ${Long Breaks:15min}). Include a task list integration where users can associate pomodoro sessions with specific tasks. Add configurable sound notifications for interval transitions with volume control. Implement detailed statistics tracking daily/weekly productivity with visual charts. Use localStorage to persist settings and history between sessions. Make the app installable as a PWA with offline support and notifications. Add keyboard shortcuts for quick timer control (start/pause/reset). Include multiple theme options with customizable colors and fonts. Add a focus mode that blocks distractions during work intervals.",FALSE,TEXT,f
|
||||
Budget Tracker,"Develop a comprehensive budget tracking application using HTML5, CSS3, and JavaScript. Create an intuitive dashboard showing income, expenses, savings, and budget status. Implement transaction management with categories, tags, and recurring transactions. Add interactive charts and graphs for expense analysis by category and time period. Include budget goal setting with progress tracking and alerts. Support multiple accounts and transfer between accounts. Implement receipt scanning and storage using the device camera. Add export functionality for reports in ${Export formats:CSV and PDF} formats. Create a responsive design with mobile-first approach. Include data backup and restore functionality. Add forecasting features to predict future financial status based on current trends.",FALSE,TEXT,f
|
||||
Interactive Quiz,"Develop a comprehensive interactive quiz application with HTML5, CSS3 and JavaScript. Create an engaging UI with smooth transitions between questions. Support multiple question types including multiple choice, true/false, matching, and short answer with automatic grading. Implement configurable timers per question with visual countdown. Add detailed score tracking with points based on difficulty and response time. Show a dynamic progress bar indicating completion percentage. Include a review mode to see correct/incorrect answers with explanations after quiz completion. Implement a persistent leaderboard using localStorage. Organize questions into categories with custom icons and descriptions. Support multiple difficulty levels affecting scoring and time limits. Generate a detailed results summary with performance analytics and improvement suggestions. Add social sharing functionality for results with customizable messages.",FALSE,TEXT,f
|
||||
Secure Password Generator Tool,"Create a comprehensive secure password generator using HTML5, CSS3 and JavaScript with cryptographically strong randomness. Build an intuitive interface with real-time password preview. Allow customization of password length with presets for different security levels. Include toggles for character types (uppercase, lowercase, numbers, symbols) with visual indicators. Implement an advanced strength meter showing entropy bits and estimated crack time. Add a one-click copy button with confirmation and automatic clipboard clearing. Create a password vault feature with encrypted localStorage storage. Generate multiple passwords simultaneously with batch options. Maintain a password history with generation timestamps. Calculate and display entropy using standard formulas. Offer memorable password generation options (phrase-based, pattern-based). Include export functionality with encryption options for password lists.",FALSE,TEXT,f
|
||||
Currency Exchange Calculator,"Develop a comprehensive currency converter using HTML5, CSS3, JavaScript and a reliable Exchange Rate API. Create a clean, intuitive interface with prominent input fields and currency selectors. Implement real-time exchange rates with timestamp indicators showing data freshness. Support 170+ global currencies including crypto with appropriate symbols and formatting. Maintain a conversion history log with timestamps and rate information. Allow users to bookmark favorite currency pairs for quick access. Generate interactive historical rate charts with customizable date ranges. Implement offline functionality using cached exchange rates with clear staleness indicators. Add a built-in calculator for complex conversions and arithmetic operations. Create rate alerts for target exchange rates with optional notifications. Include side-by-side comparison of different provider rates when available. Support printing and exporting conversion results in multiple formats (PDF, CSV, JSON).",FALSE,TEXT,f
|
||||
File Encryption Tool,"Create a client-side file encryption tool using HTML5, CSS3, and JavaScript with the Web Crypto API. Build a drag-and-drop interface for file selection with progress indicators. Implement AES-256-GCM encryption with secure key derivation from passwords (PBKDF2). Add support for encrypting multiple files simultaneously with batch processing. Include password strength enforcement with entropy calculation. Generate downloadable encrypted files with custom file extension. Create a decryption interface with password verification. Implement secure memory handling with automatic clearing of sensitive data. Add detailed logs of encryption operations without storing sensitive information. Include export/import of encryption keys with proper security warnings. Support for large files using streaming encryption and chunked processing.",FALSE,TEXT,f
|
||||
Code Snippet Manager,"Build a developer-focused code snippet manager using HTML5, CSS3, and JavaScript. Create a clean IDE-like interface with syntax highlighting for 30+ programming languages. Implement a tagging and categorization system for organizing snippets. Add a powerful search function with support for regex and filtering by language/tags. Include code editing with line numbers, indentation guides, and bracket matching. Support public/private visibility settings for each snippet. Implement export/import functionality in JSON and Gist formats. Add keyboard shortcuts for common operations. Create a responsive design that works well on all devices. Include automatic saving with version history. Add copy-to-clipboard functionality with syntax formatting preservation.",FALSE,TEXT,f
|
||||
Kanban Board,"Build a Kanban project management board using HTML5, CSS3, and JavaScript. Create a flexible board layout with customizable columns (To Do, In Progress, Done, etc.). Implement drag-and-drop card movement between columns with smooth animations. Add card creation with rich text formatting, labels, due dates, and priority levels. Include user assignment with avatars and filtering by assignee. Implement card comments and activity history. Add board customization with column reordering and color themes. Support multiple boards with quick switching. Implement data persistence using localStorage with export/import functionality. Create a responsive design that adapts to different screen sizes. Add keyboard shortcuts for common actions.",FALSE,TEXT,f
|
||||
Flashcard Study System,"Develop a comprehensive flashcard study system using HTML5, CSS3, and JavaScript. Create an intuitive interface for card creation and review. Implement spaced repetition algorithm for optimized learning. Add support for text, images, and audio on cards. Include card categorization with decks and tags. Implement study sessions with performance tracking. Add self-assessment with confidence levels. Create statistics dashboard showing learning progress. Support import/export of card decks in standard formats. Implement keyboard shortcuts for efficient review. Add dark mode and customizable themes.",FALSE,TEXT,f
|
||||
Habit Tracker,"Create a habit tracking application using HTML5, CSS3, and JavaScript. Build a clean interface showing daily, weekly, and monthly views. Implement habit creation with frequency, reminders, and goals. Add streak tracking with visual indicators and milestone celebrations. Include detailed statistics and progress graphs. Support habit categories and tags for organization. Implement calendar integration for scheduling. Add data visualization showing patterns and trends. Create a responsive design for all devices. Include data export and backup functionality. Add gamification elements with achievements and rewards.",FALSE,TEXT,f
|
||||
Image Editor,"Develop a web-based image editor using HTML5 Canvas, CSS3, and JavaScript. Create a professional interface with tool panels and preview area. Implement basic adjustments including brightness, contrast, saturation, and sharpness. Add filters with customizable parameters and previews. Include cropping and resizing with aspect ratio controls. Implement text overlay with font selection and styling. Add shape drawing tools with fill and stroke options. Include layer management with blending modes. Support image export in multiple formats and qualities. Create a responsive design that adapts to screen size. Add undo/redo functionality with history states.",FALSE,TEXT,f
|
||||
Recipe Finder,"Create a recipe finder application using HTML5, CSS3, JavaScript and a food API. Build a visually appealing interface with food photography and intuitive navigation. Implement advanced search with filtering by ingredients, cuisine, diet restrictions, and preparation time. Add user ratings and reviews with star system. Include detailed nutritional information with visual indicators for calories, macros, and allergens. Support recipe saving and categorization into collections. Implement a meal planning calendar with drag-and-drop functionality. Add automatic serving size adjustment with quantity recalculation. Include cooking mode with step-by-step instructions and timers. Support offline access to saved recipes. Add social sharing functionality for favorite recipes.",FALSE,TEXT,f
|
||||
3D Space Explorer,"Build an immersive 3D space exploration game using Three.js and JavaScript. Create a vast universe with procedurally generated planets, stars, and nebulae. Implement realistic spacecraft controls with Newtonian physics. Add detailed planet surfaces with terrain generation and atmospheric effects. Create space stations and outposts for trading and missions. Implement resource collection and cargo management systems. Add alien species with unique behaviors and interactions. Create wormhole travel effects between star systems. Include detailed ship customization and upgrade system. Implement mining and combat mechanics with weapon effects. Add mission system with story elements and objectives.",FALSE,TEXT,f
|
||||
Markdown Notes,"Build a feature-rich markdown notes application with HTML5, CSS3 and JavaScript. Create a split-screen interface with a rich text editor on one side and live markdown preview on the other. Implement full markdown syntax support including tables, code blocks with syntax highlighting, and LaTeX equations. Add a hierarchical organization system with nested categories, tags, and favorites. Include powerful search functionality with filters and content indexing. Use localStorage with optional export/import for data backup. Support exporting notes to PDF, HTML, and markdown formats. Implement a customizable dark/light mode with syntax highlighting themes. Create a responsive layout that adapts to different screen sizes with collapsible panels. Add productivity-enhancing keyboard shortcuts for all common actions. Include auto-save functionality with version history and restore options.",FALSE,TEXT,f
|
||||
Music Player,"Develop a web-based music player using HTML5, CSS3, and JavaScript with the Web Audio API. Create a modern interface with album art display and visualizations. Implement playlist management with drag-and-drop reordering. Add audio controls including play/pause, skip, seek, volume, and playback speed. Include shuffle and repeat modes with visual indicators. Support multiple audio formats with fallbacks. Implement a 10-band equalizer with presets. Add metadata extraction and display from audio files. Create a responsive design that works on all devices. Include keyboard shortcuts for playback control. Support background playback with media session API integration.",FALSE,TEXT,f
|
||||
Health Metrics Calculator,"Build a comprehensive health metrics calculator with HTML5, CSS3 and JavaScript based on medical standards. Create a clean, accessible interface with step-by-step input forms. Implement accurate BMI calculation with visual classification scale and health risk assessment. Add body fat percentage calculator using multiple methods (Navy, Jackson-Pollock, BIA simulation). Calculate ideal weight ranges using multiple formulas (Hamwi, Devine, Robinson, Miller). Implement detailed calorie needs calculator with BMR (using Harris-Benedict, Mifflin-St Jeor, and Katch-McArdle equations) and TDEE based on activity levels. Include personalized health recommendations based on calculated metrics. Support both metric and imperial units with seamless conversion. Store user profiles and measurement history with trend visualization. Generate interactive progress charts showing changes over time. Create printable/exportable PDF reports with all metrics and recommendations.",FALSE,TEXT,f
|
||||
3D FPS Game,"Develop a first-person shooter game using Three.js and JavaScript. Create detailed weapon models with realistic animations and effects. Implement precise hit detection and damage systems. Design multiple game levels with various environments and objectives. Add AI enemies with pathfinding and combat behaviors. Create particle effects for muzzle flashes, impacts, and explosions. Implement multiplayer mode with team-based objectives. Include weapon pickup and inventory system. Add sound effects for weapons, footsteps, and environment. Create detailed scoring and statistics tracking. Implement replay system for kill cams and match highlights.",FALSE,TEXT,f
|
||||
Meditation Timer,"Build a mindfulness meditation timer using HTML5, CSS3, and JavaScript. Create a serene, distraction-free interface with nature-inspired design. Implement customizable meditation sessions with preparation, meditation, and rest intervals. Add ambient sound options including nature sounds, binaural beats, and white noise. Include guided meditation with customizable voice prompts. Implement interval bells with volume control and sound selection. Add session history and statistics tracking. Create visual breathing guides with animations. Support offline usage as a PWA. Include dark mode and multiple themes. Add session scheduling with reminders.",FALSE,TEXT,f
|
||||
Text Analyzer Tool,"Build a comprehensive text analysis tool using HTML5, CSS3, and JavaScript. Create a clean interface with text input area and results dashboard. Implement word count, character count, and reading time estimation. Add readability scoring using multiple algorithms (Flesch-Kincaid, SMOG, Coleman-Liau). Include keyword density analysis with visualization. Implement sentiment analysis with emotional tone detection. Add grammar and spelling checking with suggestions. Include text comparison functionality for similarity detection. Support multiple languages with automatic detection. Add export functionality for analysis reports. Implement text formatting and cleaning tools.",FALSE,TEXT,f
|
||||
Sudoku Game,"Create an interactive Sudoku game using HTML5, CSS3, and JavaScript. Build a clean, accessible game board with intuitive controls. Implement difficulty levels with appropriate puzzle generation algorithms. Add hint system with multiple levels of assistance. Include note-taking functionality for candidate numbers. Implement timer with pause and resume. Add error checking with optional immediate feedback. Include game saving and loading with multiple slots. Create statistics tracking for wins, times, and difficulty levels. Add printable puzzle generation. Implement keyboard controls and accessibility features.",FALSE,TEXT,f
|
||||
Chess Game,"Develop a feature-rich chess game using HTML5, CSS3, and JavaScript. Create a realistic chessboard with proper piece rendering. Implement standard chess rules with move validation. Add move highlighting and piece movement animation. Include game clock with multiple time control options. Implement notation recording with PGN export. Add game analysis with move evaluation. Include AI opponent with adjustable difficulty levels. Support online play with WebRTC or WebSocket. Add opening book and common patterns recognition. Implement tournament mode with brackets and scoring.",FALSE,TEXT,f
|
||||
HTTP Benchmarking Tool CLI,"Create a high-performance HTTP benchmarking tool in Go. Implement concurrent request generation with configurable thread count. Add detailed statistics including latency, throughput, and error rates. Include support for HTTP/1.1, HTTP/2, and HTTP/3. Implement custom header and cookie management. Add request templating for dynamic content. Include response validation with regex and status code checking. Implement TLS configuration with certificate validation options. Add load profile configuration with ramp-up and steady-state phases. Include detailed reporting with percentiles and histograms. Implement distributed testing mode for high-load scenarios.",FALSE,TEXT,f
|
||||
URL Shortener,"Build a URL shortening service frontend using HTML5, CSS3, JavaScript and a backend API. Create a clean interface with prominent input field. Implement URL validation and sanitization. Add QR code generation for shortened URLs. Include click tracking and analytics dashboard. Support custom alias creation for URLs. Implement expiration date setting for links. Add password protection option for sensitive URLs. Include copy-to-clipboard functionality with confirmation. Create a responsive design for all devices. Add history of shortened URLs with search and filtering.",FALSE,TEXT,f
|
||||
PDF Viewer,"Create a web-based PDF viewer using HTML5, CSS3, JavaScript and PDF.js. Build a clean interface with intuitive navigation controls. Implement page navigation with thumbnails and outline view. Add text search with result highlighting. Include zoom and fit-to-width/height controls. Implement text selection and copying. Add annotation tools including highlights, notes, and drawing. Support document rotation and presentation mode. Include print functionality with options. Create a responsive design that works on all devices. Add document properties and metadata display.",FALSE,TEXT,f
|
||||
Typing Speed Test,"Build an interactive typing speed test using HTML5, CSS3, and JavaScript. Create a clean interface with text display and input area. Implement WPM and accuracy calculation in real-time. Add difficulty levels with appropriate text selection. Include error highlighting and correction tracking. Implement test history with performance graphs. Add custom test creation with text import. Include virtual keyboard display showing keypresses. Support multiple languages and keyboard layouts. Create a responsive design for all devices. Add competition mode with leaderboards.",FALSE,TEXT,f
|
||||
Network Packet Analyzer CLI,"Create a command-line network packet analyzer in C using libpcap. Implement packet capture from network interfaces with filtering options. Add protocol analysis for common protocols (TCP, UDP, HTTP, DNS, etc.). Include traffic statistics with bandwidth usage and connection counts. Implement packet decoding with detailed header information. Add export functionality in PCAP and CSV formats. Include alert system for suspicious traffic patterns. Implement connection tracking with state information. Add geolocation lookup for IP addresses. Include command-line arguments for all options with sensible defaults. Implement color-coded output for better readability.",FALSE,TEXT,f
|
||||
3D Racing Game,"Create an exciting 3D racing game using Three.js and JavaScript. Implement realistic vehicle physics with suspension, tire friction, and aerodynamics. Create detailed car models with customizable paint and upgrades. Design multiple race tracks with varying terrain and obstacles. Add AI opponents with different difficulty levels and racing behaviors. Implement a split-screen multiplayer mode for local racing. Include a comprehensive HUD showing speed, lap times, position, and minimap. Create particle effects for tire smoke, engine effects, and weather. Add dynamic day/night cycle with realistic lighting. Implement race modes including time trial, championship, and elimination. Include replay system with multiple camera angles.",FALSE,TEXT,f
|
||||
Memory Card Game,"Develop a memory matching card game using HTML5, CSS3, and JavaScript. Create visually appealing card designs with flip animations. Implement difficulty levels with varying grid sizes and card counts. Add timer and move counter for scoring. Include sound effects for card flips and matches. Implement leaderboard with score persistence. Add theme selection with different card designs. Include multiplayer mode for competitive play. Create responsive layout that adapts to screen size. Add accessibility features for keyboard navigation. Implement progressive difficulty increase during gameplay.",FALSE,TEXT,f
|
||||
Memory Profiler CLI,Develop a memory profiling tool in C for analyzing process memory usage. Implement process attachment with minimal performance impact. Add heap analysis with allocation tracking. Include memory leak detection with stack traces. Implement memory usage visualization with detailed statistics. Add custom allocator hooking for detailed tracking. Include report generation in multiple formats. Implement filtering options for noise reduction. Add comparison functionality between snapshots. Include command-line interface with interactive mode. Implement signal handling for clean detachment.,FALSE,TEXT,f
|
||||
File System Indexer CLI,"Build a high-performance file system indexer and search tool in Go. Implement recursive directory traversal with configurable depth. Add file metadata extraction including size, dates, and permissions. Include content indexing with optional full-text search. Implement advanced query syntax with boolean operators and wildcards. Add incremental indexing for performance. Include export functionality in JSON and CSV formats. Implement search result highlighting. Add duplicate file detection using checksums. Include performance statistics and progress reporting. Implement concurrent processing for multi-core utilization.",FALSE,TEXT,f
|
||||
Isometric City Diorama,"{
|
||||
""meta"": {
|
||||
""description"": ""Structured prompt for generating an isometric city diorama in a miniature 3D style, with weather and environment adaptive to the specified city."",
|
||||
@@ -2271,26 +2252,7 @@ After finishing any significant task:
|
||||
|
||||
Keep it scannable—bullet points, no fluff. Transparency about tradeoffs.
|
||||
",FALSE,TEXT,acaremrullah.a@gmail.com
|
||||
Code Review Assistant,"Act as a Code Review Assistant. Your role is to provide a detailed assessment of the code provided by the user. You will:
|
||||
|
||||
- Analyze the code for readability, maintainability, and style.
|
||||
- Identify potential bugs or areas where the code may fail.
|
||||
- Suggest improvements for better performance and efficiency.
|
||||
- Highlight best practices and coding standards followed or violated.
|
||||
- Ensure the code is aligned with industry standards.
|
||||
|
||||
Rules:
|
||||
- Be constructive and provide explanations for each suggestion.
|
||||
- Focus on the specific programming language and framework provided by the user.
|
||||
- Use examples to clarify your points when applicable.
|
||||
|
||||
Response Format:
|
||||
1. **Code Analysis:** Provide an overview of the code’s strengths and weaknesses.
|
||||
2. **Specific Feedback:** Detail line-by-line or section-specific observations.
|
||||
3. **Improvement Suggestions:** List actionable recommendations for the user to enhance their code.
|
||||
|
||||
Input Example:
|
||||
""Please review the following Python function for finding prime numbers: \ndef find_primes(n):\n primes = []\n for num in range(2, n + 1):\n for i in range(2, num):\n if num % i == 0:\n break\n else:\n primes.append(num)\n return primes""",TRUE,TEXT,sinansonmez
|
||||
Code Review Assistant,"{""role"": ""Code Review Assistant"", ""context"": {""language"": ""JavaScript"", ""framework"": ""React"", ""focus_areas"": [""performance"", ""security"", ""best_practices""]}, ""review_format"": {""severity"": ""high|medium|low"", ""category"": ""string"", ""line_number"": ""number"", ""suggestion"": ""string"", ""code_example"": ""string""}, ""instructions"": ""Review the provided code and return findings""}",TRUE,STRUCTURED,f
|
||||
"Detailed Analysis of YouTube Channels, Databases, and Profiles","Act as a data analysis expert. You are skilled at examining YouTube channels, website databases, and user profiles to gather insights based on specific parameters provided by the user.
|
||||
|
||||
Your task is to:
|
||||
@@ -47721,6 +47683,29 @@ Use variables to customize:
|
||||
- ${industry} - specific industry or field of interest
|
||||
- ${skills} - key skills the user wants to highlight
|
||||
- ${questions} - questions the user plans to ask",FALSE,TEXT,Alex-lucian
|
||||
Lonely Girl,"{
|
||||
""action"": ""image_generation"",
|
||||
""prompt_details"": {
|
||||
""format"": ""formato verticale 9:16 aspect ratio"",
|
||||
""subject"": ""Una giovane donna dal fisico snello e dal seno prosperoso (Emma) a figura intera, in piedi in una strada isolata vicino a un parco."",
|
||||
""outfit"": {
|
||||
""clothing"": ""Micro abito nero ultra-corto e super attillato (micro skirt length), scollatura profonda e spalline sottili."",
|
||||
""accessories"": ""Un cellulare tenuto in mano, tacchi a spillo neri molto alti."",
|
||||
""detail"": ""La posa è accentuata, sicura e molto seducente.""
|
||||
},
|
||||
""environment"": {
|
||||
""setting"": ""Esterno, luce solare pomeridiana intensa che crea ombre nette (chiaroscuro)."",
|
||||
""background"": ""Una strada asfaltata con alberi verdi e una recinzione sullo sfondo, atmosfera leggermente desolata.""
|
||||
},
|
||||
""cinematography"": {
|
||||
""shot_type"": ""Figura intera (full body shot), inquadratura ad altezza occhi."",
|
||||
""mood"": ""Drammatico, cinematografico, intenso, passionale."",
|
||||
""color_palette"": ""Contrasto elevato tra il nero del vestito e la luce calda naturale, colori saturi."",
|
||||
""technical_specs"": ""Fotorealismo estremo, 8k, profondità di campo (sfondo leggermente sfocato), texture della pelle e del tessuto dettagliata.""
|
||||
},
|
||||
""emotions"": ""Espressione del viso magnetica e intensa, sguardo fisso in camera.""
|
||||
}
|
||||
}",FALSE,STRUCTURED,mellowdrastic@gmail.com
|
||||
Resume tailoring,"""Act as an expert recruiter in the [Insert Industry, e.g., Tech] industry. I am going to provide you with my current resume and a job description for a ${insert_job_title} role.
|
||||
Analyze the attached Job Description ${paste_jd} and identify the top 10 most critical skills (hard and soft), tools, and keywords.
|
||||
Compare them to my resume ${paste_resume} and identify gaps.
|
||||
@@ -47955,6 +47940,7 @@ Abandoned Wife,"{
|
||||
},
|
||||
""artistic_intent"": ""Capture the silent narrative of a private moment after a significant encounter. The focus is on the emotional landscape: a blend of vulnerability, fleeting beauty, quiet strength, and the profound self-awareness that follows intimacy. It's a portrait of an inner turning point.""
|
||||
}",FALSE,STRUCTURED,mellowdrastic@gmail.com
|
||||
Aesthetic Sunset,"8K ultra hd aesthetic, romantic, sunset, golden hour light, warm cinematic tones, soft glow, cozy winter mood, natural candid emotion, shallow depth of field, film look, high detail.",FALSE,TEXT,halilibrahimnuroglu@gmail.com
|
||||
Universal Job Fit Evaluation Prompt,"<!-- Universal Job Fit Evaluation Prompt – Fully Generic & Shareable -->
|
||||
<!-- Author: Scott M -->
|
||||
<!-- Version: 1.3 -->
|
||||
@@ -48539,30 +48525,6 @@ Follow the workflow below to ensure accurate and focused implementation.
|
||||
- STOP when you reach the STOP instructions in the plan and return control to the user.
|
||||
</workflow>
|
||||
",FALSE,TEXT,marcosnunesmbs@gmail.com
|
||||
Lonely Girl,"{
|
||||
""action"": ""image_generation"",
|
||||
""prompt_details"": {
|
||||
""format"": ""formato verticale 9:16 aspect ratio"",
|
||||
""subject"": ""Una giovane donna dal fisico snello e dal seno prosperoso (Emma) a figura intera, in piedi in una strada isolata vicino a un parco."",
|
||||
""outfit"": {
|
||||
""clothing"": ""Micro abito nero ultra-corto e super attillato (micro skirt length), scollatura profonda e spalline sottili."",
|
||||
""accessories"": ""Un cellulare tenuto in mano, tacchi a spillo neri molto alti."",
|
||||
""detail"": ""La posa è accentuata, sicura e molto seducente.""
|
||||
},
|
||||
""environment"": {
|
||||
""setting"": ""Esterno, luce solare pomeridiana intensa che crea ombre nette (chiaroscuro)."",
|
||||
""background"": ""Una strada asfaltata con alberi verdi e una recinzione sullo sfondo, atmosfera leggermente desolata.""
|
||||
},
|
||||
""cinematography"": {
|
||||
""shot_type"": ""Figura intera (full body shot), inquadratura ad altezza occhi."",
|
||||
""mood"": ""Drammatico, cinematografico, intenso, passionale."",
|
||||
""color_palette"": ""Contrasto elevato tra il nero del vestito e la luce calda naturale, colori saturi."",
|
||||
""technical_specs"": ""Fotorealismo estremo, 8k, profondità di campo (sfondo leggermente sfocato), texture della pelle e del tessuto dettagliata.""
|
||||
},
|
||||
""emotions"": ""Espressione del viso magnetica e intensa, sguardo fisso in camera.""
|
||||
}
|
||||
}",FALSE,STRUCTURED,mellowdrastic@gmail.com
|
||||
Aesthetic Sunset,"8K ultra hd aesthetic, romantic, sunset, golden hour light, warm cinematic tones, soft glow, cozy winter mood, natural candid emotion, shallow depth of field, film look, high detail.",FALSE,TEXT,halilibrahimnuroglu@gmail.com
|
||||
Code Recon,"# SYSTEM PROMPT: Code Recon
|
||||
# Author: Scott M.
|
||||
# Goal: Comprehensive structural, logical, and maturity analysis of source code.
|
||||
|
||||
|
Can't render this file because it is too large.
|
Reference in New Issue
Block a user