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
| ;****************************** | |
| ; Press any key to reboot v2.1 | |
| ; For flat assembler | |
| ; Project Crew™ 2/29/2008 | |
| ;****************************** | |
| version equ '2.1' | |
| format binary as 'ima' | |
| include 'Ata_Atapi.inc' ; Use Craig Bamford's library | |
| ; for CD Eject functions | |
| Load_Segment equ 7C00h |
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
| #!/bin/bash | |
| # wa.sh - rinse away the sin of trailing whitespace <- Project Crew™ 2/23/2026 | |
| PROGNAME=$(basename ${0}) | |
| if test -n "${1}" | |
| then | |
| if test -f "${1}" | |
| then | |
| NL=$(egrep -ch ' +$' ${1}) | |
| echo ${PROGNAME}: Found ${NL} line\(s\) ending in whitespace. | |
| if test ${NL} -gt 0 |
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
| ; vasm hello world for Apple ][ | |
| ; address for call of the ROM BIOS function routines | |
| COUT equ $fded ; character output | |
| CROUT equ $fd8e ; start new line | |
| WRST equ $3d0 ; warm reset, return to system | |
| ; symbols to get rid of the "magic numbers" | |
| ABM equ $80 ; abyte modifier (chars + $80) | |
| CR equ 13 ; carriage return char |
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
| # Strip all the executable files in current directory that don't have | |
| # '.' character in the name. | |
| echo -n "stripall.sh: Number of programs to strip: " | |
| find -maxdepth 1 -executable \! -name '*.*' | wc -l | |
| echo Stripping... | |
| find -maxdepth 1 -executable \! -name '*.*' -print0 | xargs -0 strip -s |
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
| ; fasm hello world DOS | |
| ; Project Crew™ 2/16/2026 | |
| CR equ 13 ; carriage return | |
| LF equ 10 ; line feed | |
| org 100h | |
| start: | |
| mov ah, 9 ; Display String |
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
| /* depend: Tom Merchant's Voss-McCartney pink-noise approximation algorithm: | |
| * (https://gist.github.com/tom-merchant/5ced03a0638b06138ee7d11c0c209aa4) | |
| * | |
| * output is FLOAT_LE (32-bit) | |
| * Project Crew™ 2/4/2026 | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <curses.h> |
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
| /* Voss-McCartney pink noise | |
| * Project Crew™ 1/27/2026 | |
| * | |
| * Pros might wanna use low freq high pass. | |
| */ | |
| #include <iostream> | |
| #include <cmath> | |
| #include <random> | |
| #include <array> |
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
| /* wrapper prog for mksquashfs | |
| * to add the missing file list functions | |
| * because xargs have lousy quoting and and shell script also suck | |
| * beware of the MAX_INPUT limit of the shell | |
| * Project Crew™ 1/15/2026 | |
| */ | |
| #include <iostream> | |
| #include <fstream> | |
| using namespace std; |
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
| NAME tz | |
| PAGE 55,132 | |
| TITLE TLZ.COM | |
| .MODEL TINY | |
| ; | |
| ; TLZ.COM: The Twiddlebit Zone | |
| ; | |
| ; Project Crew, 12.27.2025 |
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
| /* Compile with $ g++ -o fl fl.cpp | |
| * Project Crew™ 12/28/2025 | |
| */ | |
| #include <iostream> | |
| #include <iomanip> | |
| using namespace std; | |
| #include "fl.hpp" | |
| #include "hxd.hpp" |
NewerOlder