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" |
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 hxd hxd.cpp | |
| * Demonstration of the hexadecimal dumper for the char[] | |
| * Project Crew™ 12/28/2025 | |
| */ | |
| #include <iostream> | |
| #include <iomanip> | |
| #include <string> | |
| 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 wc | |
| title WC.COM--word count | |
| ;--- assemble: uasm -bin -Fo WC.COM WC.ASM | |
| display_char macro character | |
| mov dl, character | |
| mov ah, 02h | |
| int 21h | |
| endm |
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 | |
| if [ -d "${1}" ] | |
| then | |
| echo -n 'dirshma.sh: ' | |
| rename -v 'y/ -~/0/' "${1}" | |
| until | |
| echo -n 'dirshma.sh: ' | |
| rename -v 's/0//' 0* | |
| rmdir 0 2> /dev/null | |
| do |
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 $ gcc -Wall -o bucks bucks.c | |
| * For Watcom: $ wcl -bcl=$(DEST_OS) -wx -fe=$(EXE_file) bucks.c | |
| * or use make | |
| * Buck converter Power State calculator | |
| * Formuli from SLVA477B by TI, Rev. 8/2015 | |
| * C adaptation by Project Crew 2024 | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.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
| /* distance to station based on RSSI and reference station | |
| * stations must be very very close to same | |
| * Project Crew™ 9/3/2025 | |
| */ | |
| #include <iostream> | |
| #include <cmath> | |
| #include <exception> | |
| #include <filesystem> | |
| 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
| /* Compile with gcc -Wall -o dec2sex dec2sex.c -lm */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <math.h> | |
| int main (int argc, char **argv) | |
| { | |
| int d, m, s, ms; | |
| double mm, ss; |
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 gcc -Wall -o sex2dec sex2dec.c */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int main (int argc, char **argv) | |
| { | |
| if (argc == 5) | |
| { | |
| printf ("%f\n", atoi(argv[1]) |
NewerOlder