Been working from home for a long time, wife and I were incredibly frustrated with each other years ago:
- She interrupted me all day and it drove me nuts
- I responded like a jerk to everything
Fix was easy, I moved my desk to a room with a door and then we had two rules
1.
Dad developers.
How can you even work at home when you have a kid and a pregnant wife who are always interrupting you?
Yes, I have my own office. But it seems like they are mistaking it for a hallway or something.
I’m tired of native apps.
> download this app to register your kid for tennis
> download this other app to see your the tennis schedule
> download this app to pay your bill
> download our app
> download our app!
> download our app!!
Websites are great, btw
your regular reminder that the only way to validate an email address is to try to send an email to it
check for @ and move on, otherwise you'll disallow a valid email
frontend:
<input type="email" />
backend:
str.includes("@")
The only way to know if an email address is valid is to send an email.
Stop using regexes that don't let people use valid emails 😂