### Start Development Server
Source: https://github.com/dustinbrett/daedalos/blob/main/README.md
Starts the development server for the Daedalos project.
```bash
yarn dev
```
--------------------------------
### Install Project Dependencies
Source: https://github.com/dustinbrett/daedalos/blob/main/README.md
Installs project dependencies using Yarn. This is a prerequisite for both development and production builds.
```bash
yarn install
```
--------------------------------
### Hide Message Box and Start Game
Source: https://github.com/dustinbrett/daedalos/blob/main/public/Program Files/Browser/dino/index.html
Hides the initial message box and starts the game when the spacebar is pressed. Also handles touch and keyboard input for starting the game.
```javascript
const hideBox = () => { document.getElementById("messageBox").style.visibility = "hidden"; }
document.onkeydown = ({ keyCode }) => keyCode === 32 && hideBox();
if (window.navigator.maxTouchPoints > 0) {
document.ontouchstart = hideBox;
document.querySelector(".touch").style.display = "block";
} else {
document.querySelector(".keyboard").style.display = "block";
}
```
--------------------------------
### Initialize Tracky Mouse in HTML
Source: https://github.com/dustinbrett/daedalos/blob/main/public/Program Files/jspaint/lib/tracky-mouse/README.md
Include the Tracky Mouse script in your HTML and initialize it after loading its dependencies. This example demonstrates setting up event listeners for pointer movements.
```html
```
--------------------------------
### Install Tracky Mouse via npm
Source: https://github.com/dustinbrett/daedalos/blob/main/public/Program Files/jspaint/lib/tracky-mouse/README.md
To add Tracky Mouse to your project, use the npm install command. This makes the library available for use in your application.
```bash
npm i tracky-mouse
```
--------------------------------
### Tracky Mouse Initialization
Source: https://github.com/dustinbrett/daedalos/blob/main/public/Program Files/jspaint/lib/tracky-mouse/index.html
Sets the root for dependencies and initializes the Tracky Mouse system. This is typically used to start the head tracking functionality.
```javascript
TrackyMouse.dependenciesRoot = ".";
TrackyMouse.init();
```
--------------------------------
### Set Node Options for OpenSSL Legacy Provider
Source: https://github.com/dustinbrett/daedalos/blob/main/README.md
Sets the NODE_OPTIONS environment variable to use the legacy OpenSSL provider, which may resolve 'digital envelope routines::unsupported' errors during 'yarn install'.
```bash
export NODE_OPTIONS=--openssl-legacy-provider
```
--------------------------------
### Build for Production
Source: https://github.com/dustinbrett/daedalos/blob/main/README.md
Builds the project for production deployment.
```bash
yarn build
```
--------------------------------
### Serve Production Build
Source: https://github.com/dustinbrett/daedalos/blob/main/README.md
Serves the production build of the Daedalos project.
```bash
yarn serve
```
--------------------------------
### Build for Pre-build Step
Source: https://github.com/dustinbrett/daedalos/blob/main/README.md
Builds the project for a pre-build step, typically used during development.
```bash
yarn build:prebuild
```
--------------------------------
### Build Docker Image
Source: https://github.com/dustinbrett/daedalos/blob/main/README.md
Builds a Docker image for the Daedalos project with the tag 'daedalos'.
```bash
docker build -t daedalos .
```
--------------------------------
### Run Docker Container
Source: https://github.com/dustinbrett/daedalos/blob/main/README.md
Runs the Daedalos Docker container, exposing port 3000 and naming the container 'daedalos'. The container is removed upon exit.
```bash
docker run -dp 3000:3000 --rm --name daedalos daedalos
```
--------------------------------
### Kiwi IRC No-Script Warning Styles
Source: https://github.com/dustinbrett/daedalos/blob/main/public/Program Files/kiwiirc/index.html
Styles for the no-script warning message in Kiwi IRC, ensuring it is centered and bold with appropriate padding.
```css
.kiwi-noscript-warn {
text-align: center;
font-weight: bold;
padding: 1em;
}
```
--------------------------------
### Target Specific Styles for Kiwi IRC Body
Source: https://github.com/dustinbrett/daedalos/blob/main/public/Program Files/kiwiirc/index.html
Applies styles to the body element, specifically disabling the 'pull down to refresh' gesture on mobile devices by setting overflow to hidden.
```css
body {
/* disable the 'pull down to refresh' on mobiles */
overflow: hidden;
}
```
=== COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.