-
Backend:
- Spring Boot - Java-based framework for building the application
- Spring Data JDBC - For data persistence and repository implementation
- Spring MVC - For handling HTTP requests and REST endpoints
- H2 database - for storing data
-
Frontend:
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 kotlin.random.Random | |
data class Note(val pitch: Int, val duration: Double) | |
class SonicPiDarkHouseGenerator { | |
private val scale = listOf(60, 63, 65, 67, 70, 72) // C minor pentatonic scale | |
private val rhythms = listOf(0.25, 0.5, 1.0) // Sixteenth, eighth, and quarter notes | |
fun generateMelody(length: Int): List<Note> = | |
List(length) { |
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
sealed interface Creature | |
data class Cthulhu( | |
val madnessLevel: Int, | |
val isAwakened: Boolean | |
) : Creature | |
data class Kraken( | |
val length: Double, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This document outlines the coding standards, architectural patterns, and best practices for the Bookstore application.
- React 18 for building user interfaces
- Tailwind CSS for utility-first styling
- Vite for frontend tooling and development environment
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# Requirements Analysis Prompt | |
Transform the provided high-level requirements into a comprehensive, structured requirements document using the following methodology: | |
## Instructions: | |
1. **Create a Requirements Document** with the following structure: | |
- Document title: "Requirements Document" | |
- Introduction section that summarizes the application purpose and key functionality | |
- Requirements section with numbered requirements |
OlderNewer