Skip to content

Commit 4ddc40a

Browse files
committed
architect role and abstraction
1 parent dd72113 commit 4ddc40a

File tree

4 files changed

+60
-0
lines changed

4 files changed

+60
-0
lines changed

content/basics/abstraction.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,8 @@ title = "L'asbtraction"
33
weight = 5
44
+++
55

6+
{{% notice style="tip" title="Ressources" icon="fa fa-book" %}}
7+
[When NOT to write an Abstraction Layer](https://youtu.be/tqqH_Ib_gDc)
8+
{{% /notice %}}
9+
610
Comme l'a noté Edsger W. Dijkstra dans son article "The Humble Programmer ", le but de l'abstraction n'est pas d'être vague mais de créer un nouveau niveau sémantique dans lequel on peut être absolument précis.

content/software_architecture/architect_role.md content/software_architecture/architect_role/_index.md

+9
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,12 @@ Il est primordial pour un architecte logiciel d'avoir des connaissances dans le
3232
Ainsi en plus des compétances technique, l'architecte devra évoluer fonctionnellement. Dans le cas contraire, il lui sera très difficile de comprendre les attentes et besoins métiers et d'y répondre de la plus juste des manière.
3333

3434
> Les architectes les plus performants sont ceux qui possèdent des connaissances pratiques/techniques étendues ainsi qu'une solide connaissance de leur domaine métier.
35+
36+
## Avoir des connaissances sur les non-requirement
37+
38+
Ce terme n'indique pas des choses qui ne sont pas requises, il se réfère plutôt à des exigences qui ne sont énoncées nulle part.
39+
Cela inclut le contexte, les suppositions tacites, les dépendances cachées et d'autres choses qui n'ont jamais été explicitées.
40+
41+
On trouve la scalabilité, la maintenabilité, la disponibilité, l'intéropérabilité, etc ...
42+
43+
Débusquer ces exigences implicites et les rendre explicites est l'une des contributions les plus précieuses de l'architecte.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
+++
2+
title = "Ce que n'est pas un architecte"
3+
weight = 45
4+
+++
5+
6+
{{% notice style="tip" title="Ressources" icon="fa fa-book" %}}
7+
8+
- The Software Architect Elevator
9+
{{% /notice %}}
10+
11+
Un architecte n'est pas un :
12+
13+
- **Senior developer**
14+
Developers often feel they need to become an architect as the next step in
15+
their career (and their pay grade). However, becoming an architect and a
16+
superstar engineer are two different career paths, with neither being supe-
17+
rior to the other. Architects tend to have a broader scope, including organi-
18+
zational and strategic aspects, whereas engineers tend to specialize and
19+
PART | I
20+
deliver running software. Mature IT organizations understand this and
21+
offer parallel career paths.
22+
- **Firefighter**
23+
Many managers expect architects to be able to troubleshoot and solve any
24+
crisis based on their broad understanding of the current system landscape.
25+
Architects shouldn’t ignore production issues, because they provide valua-
26+
ble feedback into possible architectural weaknesses. But an architect that
27+
runs from one fire drill to the next won’t have time to think about architec-
28+
ture. Architecture isn’t operations.
29+
- **Project manager**
30+
Architects must be able to juggle many distinct, but interrelated topics.
31+
Their decisions also take into account—and affect—project time lines,
32+
staffing, and required skill sets. As a result, upper management often
33+
comes to rely on architects for project information, especially if the project
34+
manager is busy filling out status report templates (Chapter 30). This is a slip-
35+
pery slope for an architect because it’s valuable work, but it distracts from
36+
the architect’s main responsibility.
37+
- **Scientist**
38+
Architects need to sport a sharp intellect and must be able to think in mod-
39+
els and systems (Chapter 10), but the decisions they make impact real busi-
40+
ness projects. Hence, many organizations separate the role of the chief
41+
architect from that of a chief scientist. Personally, I prefer the title chief engi-
42+
neer to highlight that architects produce more than paper. Lastly, although
43+
scientists may get their papers published by making things sound complex
44+
and difficult to understand, an architect’s job is the inverse: making complex
45+
topics easy to digest

content/software_architecture/definitions.md

+2
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,5 @@ An architecture is the set of significant decisions about the organization of a
4242
- Prendre des décisions sur l'organisation du logiciel, ses composants et leurs relations
4343
- Minimiser le coût du changement en écrivant un logiciel flexible
4444
- Les développeurs et les architectes doivent avoir une compréhension commune de comment diviser le système et comment les composants intéragissent entre eux. L'architecture n'est pas qu'un concept technique c'est également du _social_.
45+
46+
> The best architecture is the one that fits the business needs, not the one that mimics the tech giants (Google, Netflix, ...)

0 commit comments

Comments
 (0)