Tree Team
Developer
Architect
Developer
Architect
Architect
Muscle Mass === Responibility
Component
App
Set of Apps
Website
(Within your scope)
The single architect is a servant leader, there to make sure all developers are competent architects who understand and consider architectural issues as they work.
Assure coherence across the system
Skilled Coder
Design Patterns
Conferences
Network w/ Architects
Read Code
Write Code
Communication Skills
Presentation Skills
Talk to product managers to understand requirements
Linux Server
Linux Server
cookbook-api.herokuapp.com
gretchenscookbook.com
gretchenscookbook.com
PWA, node, mongo
cookbook-api.herokuapp.com
gretchenscookbook.com
Tower blocks in Great Britain
id
id
id
id
id
id
data
data
data
data
data
import React, { useState, useEffect } from "react";
export default function MyComponent({ value }) {
const [thing1, setThing1] = useState();
const [thing2, setThing2] = useState();
const [thing3, setThing3] = useState();
useEffect(() => {
setThing1(value + 1);
}, [value]);
useEffect(() => {
setThing2(thing1 + 1);
}, [thing1]);
useEffect(() => {
setThing3(thing2 + 1);
}, [thing2]);
return (
<ul>
<li>{thing1}</li>
<li>{thing2}</li>
<li>{thing3}</li>
</ul>
);
}
import React from "react";
export default function MyComponent({ value }) {
const thing1 = value + 1;
const thing2 = thing1 + 1;
const thing3 = thing2 + 1;
return (
<ul>
<li>{thing1}</li>
<li>{thing2}</li>
<li>{thing3}</li>
</ul>
);
}