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]) |
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
| # It builds all programs in the current directory. | |
| SUFFIX := cpp | |
| BASENAME := basename | |
| ECHO := /bin/echo | |
| RM := rm | |
| TEST := /bin/test | |
| XARGS := xargs |
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
| // NeoPixel Ring simple sketch (c) 2013 Shae Erisson | |
| // Released under the GPLv3 license to match the rest of the | |
| // Adafruit NeoPixel library | |
| /* ... | |
| /* Blink the single neopixel | |
| /* Wasn't in it examples? | |
| /* Project Crew™ 8/2/2025 | |
| */ | |
| #include <Adafruit_NeoPixel.h> |
NewerOlder