Definition: DAdmin / adMomistrator 

DAdmin / adMomistrator
noun

Short for “Dad Administrator” / “Administrator Mom”

A DAdmin or adMomistrator is the unofficial, all-in-one household IT manager—usually a parent—who takes responsibility for the digital well-being, fairness, and safety of the family’s connected life. From fixing Minecraft errors to setting parental controls, these multitasking heroes keep the digital chaos under control with patience, skill, and love.—

Core Admin Tasks + Sentences—

1. Network & Device Management
Task: Set up and secure home Wi-Fi, maintain devices, and install updates.
Sentence: When the router crashed during online school, the DAdmin had it back up in minutes—faster than the IT helpdesk.
Sentence: The adMomistrator noticed the tablet hadn’t updated in weeks and quietly fixed it before bedtime.—

2. Account & Access Control
Task: Create and manage user accounts, passwords, and permissions.
Sentence: The DAdmin set up unique logins for each child’s game account so they could play safely without sharing passwords.
Sentence: As the adMomistrator, she managed all the login credentials and even kept a spreadsheet no one else understood.—

3. Game & App Configuration
Task: Install and manage child-friendly apps and games, including mods and multiplayer.
Sentence: After hours of troubleshooting, the DAdmin finally got the Minecraft server running with mods the kids had begged for.
Sentence: The adMomistrator double-checked the app store settings to make sure no one could sneak-download anything sketchy.—

4. Digital Memory Management
Task: Organize, back up, and maintain digital photos, videos, and cloud storage.
Sentence: The DAdmin spent the weekend sorting five years of untagged photos into folders labeled by vacation and kid.
Sentence: Every birthday video was perfectly archived thanks to the adMomistrator’s late-night cloud backup rituals.—

5. Screen Time & Fair Use
Task: Monitor screen time, manage device sharing, and resolve disputes fairly.
Sentence: With a timer and a spreadsheet, the DAdmin ensured that screen time was split evenly—no more fights over turns.
Sentence: The adMomistrator paused the Wi-Fi when the “five more minutes” turned into an hour-long Fortnite marathon.—

6. Internet Safety & Privacy
Task: Set parental controls, block harmful content, and teach safe online habits.
Sentence: The DAdmin installed a kid-safe DNS filter and explained phishing scams like a bedtime story.
Sentence: The adMomistrator walked the kids through why they shouldn’t post their real names online—even in Roblox.—

7. Tech Support & Troubleshooting
Task: Fix device problems, crashes, and lost files while staying calm under pressure.
Sentence: The DAdmin decoded the vague “It’s broken!” cry and had the iPad working before breakfast.
Sentence: As the adMomistrator, she recovered the homework file lost in a glitch, earning instant hero status.—

8. Emotional Buffering
Task: Handle meltdowns, decode frustrations, and celebrate tech victories.
Sentence: When the game froze right before a boss battle, the DAdmin calmed the tears, fixed the crash, and saved the day.
Sentence: The adMomistrator didn’t just fix the problem—she offered hugs, snacks, and a five-minute dance break too.—

Together, the DAdmin and adMomistrator are the unsung heroes of the modern household—keeping things connected, fair, and functional with heart, humor, and HDMI cables.

 

using GPI pins on an arduino to run a keyboard

 

#include <Keyboard.h>

// Define the GPIO pins for CTRL+A, CTRL+B, CTRL+C, and CTRL+D keys
#define A_PIN 2
#define B_PIN 3
#define C_PIN 4
#define D_PIN 5

void setup() {
// Set up the GPIO pins as inputs with pull-up resistors
pinMode(A_PIN, INPUT_PULLUP);
pinMode(B_PIN, INPUT_PULLUP);
pinMode(C_PIN, INPUT_PULLUP);
pinMode(D_PIN, INPUT_PULLUP);

// Initialize the keyboard library
Keyboard.begin();
}

void loop() {
// Check if the CTRL+A pin is pressed
if (digitalRead(A_PIN) == LOW) {
// Press and release the CTRL+A key combination
Keyboard.press(KEY_LEFT_CTRL);
Keyboard.press(‘a’);
delay(50);
Keyboard.releaseAll();
}

// Check if the CTRL+B pin is pressed
if (digitalRead(B_PIN) == LOW) {
// Press and release the CTRL+B key combination
Keyboard.press(KEY_LEFT_CTRL);
Keyboard.press(‘b’);
delay(50);
Keyboard.releaseAll();
}

// Check if the CTRL+C pin is pressed
if (digitalRead(C_PIN) == LOW) {
// Press and release the CTRL+C key combination
Keyboard.press(KEY_LEFT_CTRL);
Keyboard.press(‘c’);
delay(50);
Keyboard.releaseAll();
}

// Check if the CTRL+D pin is pressed
if (digitalRead(D_PIN) == LOW) {
// Press and release the CTRL+D key combination
Keyboard.press(KEY_LEFT_CTRL);
Keyboard.press(‘d’);
delay(50);
Keyboard.releaseAll();
}

// Wait for a short period of time before checking the pins again
delay(10);
}

Adult autism – coping

decided to stop focusing on being autistic and just be yourself. Since finding out you have autism, you’ve been hyper-focused on managing it, and it’s made you miserable. But you should realized that for ?? years, you didn’t know, and you didn’t struggle as much as you have recently. So now, you’re choosing to be aware of it without letting it define you. You know when you’re starting to get snippy or feel panic attacks coming on, and that’s your cue that you’re pushing too hard. You’re not autism; you just have it. You’re still going to give yourself permission to rest and educate yourself, but you’re done overcompensating and making things harder than they need to be. You’ve got mouths to feed, and you can’t afford to keep holding yourself back.

It’s all about realizing you’re the same person you’ve always been—just with different needs. You’re not broken, and you’re not going to keep telling yourself that you are. You’ve been struggling too much, but before, you just dealt with things. Now, you’re shifting your mindset and accepting that it is what it is. You’re not going to let the story you’ve been telling yourself work against you anymore.

Knowing yourself helps others understand you, and that’s really their problem, not yours. Embracing who you are, including the parts shaped by autism, is all part of the journey. You’ve realized that putting a name to your struggles has been freeing. Now, you can take control of your life again and face it with support, not just blindly pushing through.

 

Arduino sketch – keyboard keys pressed with gpi

#include KEYBOARD.h

const int F9_PIN = 2;
const int F10_PIN = 3;
const int F9_LED_PIN = 4;
const int F10_LED_PIN = 5;

void setup() {
Keyboard.begin();
pinMode(F9_PIN, INPUT_PULLUP);
pinMode(F10_PIN, INPUT_PULLUP);
pinMode(F9_LED_PIN, OUTPUT);
pinMode(F10_LED_PIN, OUTPUT);
}

void loop() {
if (digitalRead(F9_PIN) == LOW) {
Keyboard.press(KEY_F9);
digitalWrite(F9_LED_PIN, HIGH);
delay(100);
Keyboard.release(KEY_F9);
digitalWrite(F9_LED_PIN, LOW);
}

if (digitalRead(F10_PIN) == LOW) {
Keyboard.press(KEY_F10);
digitalWrite(F10_LED_PIN, HIGH);
delay(100);
Keyboard.release(KEY_F10);
digitalWrite(F10_LED_PIN, LOW);
}
}