CAUTION Amused Scientist (I am not mad yet. Thou I am angry about the world not living up to the potential science can offer.)
B.S. Physics, U of MN
Hobbies in no particular order:
- Amateur Astronomy
- ESP32
- Arduino and Artuino UNO
- KiCad
- FreeCAD
- RPi
- Linux
- Amateur Radio (KE4AXQ)
- Wood & metal working
- Private Pilot
- SCUBA
- Archeology
- Paleontology
- Freethought (fighting supernatural nonsense where ever found.)
Recently (2024-2025) I have been volunteering with Public Invention on the Krake Project. See: https://github.com/PubInv/krake
Krake is the child project of GPAD project (2022). See:https://github.com/PubInv/general-alarm-device
Public Invention is a non profit company whose mission is:
We invent things that help all people. We empower inventors, technologists, and students to publish, find, and collaborate on invention ideas through direct coaching, team formation, curation of work, publication, co-working/learning events, and in some cases material support.
Other:
Facebook: https://www.facebook.com/forrest.erickson.5
Youtube: https://www.youtube.com/@forresterickson6225
Your ORCID iD: 0009-0006-3624-0382, Your ORCID record is https://orcid.org/0009-0006-3624-0382
Novel and diverse spelling
// Program information
#define COMPANY_NAME "Amused Scientist"
#define PROG_NAME "Explosive_Space_Modulator"
#define VERSION "; Rev: 0.99" //
#define DEVICE_UNDER_TEST "Hardware: Illudium Q-36" //A model number
#define LICENSE "GNU Affero General Public License, version 3 "
#define WARRANTY "Designed to kill you and render the earth uninhabitable, but not guaranteed to do so."
void printProgramInfo() {
Serial.print(COMPANY_NAME);
Serial.print(PROG_NAME);
Serial.println(VERSION);
Serial.println(DEVICE_UNDER_TEST);
Serial.println(LICENSE);
Serial.println(WARRANTY);
Serial.print("Compiled at: ");
Serial.println(F(__DATE__ " " __TIME__) ); //compile date that is used for a unique identifier
}//end printProgramInfo()


