Hi, I'm S, but most know me as Piper.I currently work as an IT sysadmin
with former experience as a...
- Network Technician (San Diego State University)
- Robotics Engineer (Advanced Image Robotics)
- PEV Support Engineer (Tower and Superhuman)
- Guest Tech Blogger (The Verge)
I live in San Diego, CA
with a Bachelors of Computer Science from
San Diego State University.
I enjoy photography, longboarding, and playing the ukulele.

/** * Override the text of CAPTCHAs. Don't be rude to robots. * Originally by mavica: https://maple.pet/ * Updated by beeps: https://beeps.website/ * * Covers: * (1) Google reCAPTCHA * (2) hCaptcha * (3) Cloudflare Turnstile * (4) Microsoft CAPTCHA * (5) Friendly Captcha * (6) ALTCHA */ /* 1 */ #recaptcha-anchor-label, /* 2 */ body > div#anchor > div.label-container > label-td > label-tc > div#label, /* 3 */ div#content div#challenge-stage div.cb-c label.cb-lb span.cb-lb-t, /* 4 */ #root > .box > .box > p[data-theme="home.instructions"], /* 5 */ .text:is([data-loc="t_ready"], [data-loc="t_completed"]), /* 6 */ label[for="altcha_checkbox"] { font-size: 0 !important; line-height: 0 !important; } /* 1 */ #recaptcha-anchor-label::before, /* 2 */ body > div#anchor > div.label-container > label-td > label-tc > div#label::before, /* 3 */ div#content div#challenge-stage div.cb-c label.cb-lb span.cb-lb-t::before, /* 4 */ #root > .box > .box > p[data-theme="home.instructions"]::before, /* 5 */ .text:is([data-loc="t_ready"], [data-loc="t_completed"])::before, /* 6 */ label[for="altcha_checkbox"]::before { font-size: 14px; line-height: 1.2; } /* 1 */ #recaptcha-anchor-label::before, /* 2 */ body > div#anchor > div.label-container > label-td > label-tc > div#label::before, /* 3 */ div#content div#challenge-stage div.cb-c label.cb-lb span.cb-lb-t::before, /* 5 */ .text[data-loc="t_ready"]::before, /* 6 */ label[for="altcha_checkbox"]::before { /* Message that usually appears next to a challenge. */ content: "I'm a robot"; } /* 4 */ #root > .box > .box > p[data-theme="home.instructions"]::before { /* Message that usually appears before a challenge. */ content: "Prove you are a robot."; } /* 5 */ .text[data-loc="t_completed"]::before { /* Message that usually appears after completing a challenge. */ content: "You're a robot!"; }