Moving cross country in a truck with a cat in the back seat sure is stressful, but my baby is doing a good job so far.
(Pictured: Andouille exploring the front seat during a pit stop)
| Website | https://wordeology.com/ |
| https://www.instagram.com/pure_radix/ |
Moving cross country in a truck with a cat in the back seat sure is stressful, but my baby is doing a good job so far.
(Pictured: Andouille exploring the front seat during a pit stop)
2 days until my move to Pittsburgh. This is by far the most emotionally destroying move I've ever been through. It really sucks to be dealing with the stresses of moving a house all by yourself while also going through physically unhealthy levels of anxiety and depression.
I am excited about moving to Pittsburgh, but distraught about leaving my life and friends behind in Dallas.
I know a lot of people will find this crazy, but I have been writing a lot of my React code like this:
function MyComp(props: ...) {
return <button onClick={go}>Go!</button>;
function go() {
console.log("Done!");
}
}
I hate having to scroll past dozens of lines of inner functions to get to the main "rendering" logic of a component. I feel like this is a logical extension of the top-down layout, where main() is the first function in your source code.