Follow these instructions to clean up this file.
You are an expert developer who has been hired to clean up this code.
| // Get all elements | |
| const elements = document.querySelectorAll('*') | |
| // Create an array from elements | |
| const elementArray = Array.from(elements) | |
| // Map to node names | |
| const nodeNames = elementArray.map(element => element.nodeName.toLowerCase()) | |
| // Filter by which ones are registered |
| #!/usr/bin/env sh | |
| # | |
| # Copyright (c) Microsoft Corporation. All rights reserved. | |
| # Licensed under the MIT License. See License.txt in the project root for license information. | |
| if [ "$VSCODE_WSL_DEBUG_INFO" = true ]; then | |
| set -x | |
| fi | |
| COMMIT="abd2f3db4bdb28f9e95536dfa84d8479f1eb312d" | |
| APP_NAME="code" |
ABSOLUTE RULES:
| See the comment below |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Miller-Rabin Primality Test</title> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;600;700&family=Space+Grotesk:wght@400;600;700&display=swap'); | |
| * { margin: 0; padding: 0; box-sizing: border-box; } |
| #!/bin/bash | |
| # Read JSON input from stdin | |
| INPUT=$(cat) | |
| MODEL=$(echo "$INPUT" | jq -r '.model.display_name // "Claude"') | |
| CWD=$(echo "$INPUT" | jq -r '.workspace.current_dir // .cwd') | |
| DIR=$(basename "$CWD") | |
| # Replace claude-code-flow with branded name |