This file contains 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
if not process.stdout.isTTY | |
console.log 'To play game run it in terminal' | |
return | |
# terminal props | |
terminalBuffer = [] | |
terminalSize = [0, 0] | |
terminalCenter = [0, 0] | |
# plate props |
This file contains 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
#!/bin/sh -e | |
### BEGIN INIT INFO | |
# hyperboria.sh - An init script (/etc/init.d/) for cjdns | |
# Provides: cjdroute | |
# Required-Start: $remote_fs $network | |
# Required-Stop: $remote_fs $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Cjdns router | |
# Description: A routing engine designed for security, scalability, speed and ease of use. |
This file contains 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
[Desktop Entry] | |
Version=1.0 | |
Type=Application | |
Terminal=false | |
Exec=openspades %U | |
Name=OpenSpades | |
GenericName=Sandbox building and FPS videogame | |
Comment=Open-source clone of Ace of Spades | |
Icon=openspades.png | |
Categories=Application;Network;Game; |
This file contains 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
#!/bin/bash | |
mkdir bun-express-body-parser-bug | |
cd bun-express-body-parser-bug | |
cat <<EOT > package.json | |
{ | |
"name": "bun-express-body-parser-bug", | |
"module": "index.ts", | |
"type": "module", | |
"devDependencies": { | |
"bun-types": "^0.3.0" |
This file contains 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
#!/bin/bash | |
TIMESTAMP=$(date +%s) | |
mkdir "bun-express-streaming-response-bug-$TIMESTAMP/" | |
cd "bun-express-streaming-response-bug-$TIMESTAMP/" | |
cat <<EOT > package.json | |
{ "dependencies": { "express": "^4.18.2" }, "type": "module" } | |
EOT |
This file contains 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
#!/bin/bash | |
TIMESTAMP=$(date +%s) | |
mkdir "bun-fetch-get-reader-streaming-bug-$TIMESTAMP/" | |
cd "bun-fetch-get-reader-streaming-bug-$TIMESTAMP/" | |
cat <<EOT > package.json | |
{ "dependencies": { "express": "^4.18.2" }, "type": "module" } | |
EOT |