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
| FROM node:24-alpine AS builder | |
| ARG SCRATCH_VERSION=develop | |
| RUN apk add git | |
| WORKDIR /source | |
| RUN git clone --branch ${SCRATCH_VERSION} --depth 1 https://github.com/scratchfoundation/scratch-editor.git . | |
| RUN npm install | |
| RUN npm run build | |
| FROM nginx:alpine | |
| COPY --from=builder /source/packages/scratch-gui/build /usr/share/nginx/html |
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
| Badly tested script, mostly invented by ChatGPT. Tries to created a CSR with a new key that mimic a certificate used by a reachable server. Use this to generate a new CSR. Use it at your own risk, do not pay for certificates unless you understand what you are doing. |
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
| #!/usr/bin/env python3 | |
| """Vibe-coded tool to convert iDRAC RFB crashvideos and bootvideos to a playable format.""" | |
| import argparse | |
| import hashlib | |
| import os | |
| import shutil | |
| import struct | |
| import subprocess | |
| import sys |
OlderNewer