Skip to content

Commit 7b8b48f

Browse files
authored
Statesman (#83)
1 parent e6f458d commit 7b8b48f

File tree

2 files changed

+215
-10
lines changed

2 files changed

+215
-10
lines changed
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
---
2+
layout: post
3+
title: "First read: Plato, Statesman"
4+
date: 2025-05-26
5+
categories: twentytwentyfive
6+
---
7+
8+
<p>
9+
The <a href="https://www.gutenberg.org/files/1738/1738-h/1738-h.htm#link2H_4_0002">Statesman</a> is an example of how to define a scientific field.
10+
The <a href="https://en.wikipedia.org/wiki/Eleatics">Eleatic</a> Stranger and a young Socrates have gathered to discuss an area of science: the science of the political.
11+
The classification of political science goes as follows:
12+
</p>
13+
<div class="tree">
14+
<ul>
15+
<li>
16+
<div>Science</div>
17+
<ul>
18+
<li>
19+
<div>Theoretical</div>
20+
<ul>
21+
<li>
22+
<div>Individual Contributor</div>
23+
</li>
24+
<li>
25+
<div>Manager</div>
26+
</li>
27+
</ul>
28+
</li>
29+
<li>
30+
<div>Practical</div>
31+
</li>
32+
</ul>
33+
</li>
34+
</ul>
35+
</div>
36+
<div style="clear:both;"></div>
37+
<p>
38+
The division between the theoretical and practical is akin to the division between knowledge work and manual labor.
39+
The individual contributor is engaged in knowledge work that does not need to be passed off to others, while the manager does. The mathematician is an individual contributor, while the statesman is not,
40+
so we climb down the "Manager" node on this tree of science:
41+
</p>
42+
<div class="tree">
43+
<ul>
44+
<li>
45+
<div>Manager</div>
46+
<ul>
47+
<li>
48+
<div>Middle Manager</div>
49+
</li>
50+
<li>
51+
<div>Upper Manager</div>
52+
<ul>
53+
<li>
54+
<div>Herdsman</div>
55+
<ul>
56+
<li>
57+
<div>Animals</div>
58+
</li>
59+
<li>
60+
<div>Human Beings</div>
61+
</li>
62+
</ul>
63+
</li>
64+
<li>
65+
<div>Master-Workman</div>
66+
</li>
67+
</ul>
68+
</li>
69+
</ul>
70+
</li>
71+
</ul>
72+
</div>
73+
<div style="clear:both;"></div>
74+
<p>
75+
The tree in Plato's text is more detailed than the one displayed here, but we see that the division has been made between middle management and upper management. Middle management passes on instructions from elsewhere, while upper management forges and passes on their own instructions.
76+
A prophet who passes on the instructions of God to the people is middle management.
77+
</p>
78+
<p>
79+
Following the none of the "Upper Manager", we see that this science divided into the work of the master-workman and herdsman: the management of non-living things and living things, respectively.
80+
Notice, as we go farther down the tree, the more the lines between a practical science and a theoretical science are blurred. The mathematician only needs to worry about abstract objects,
81+
but a master-builder, such as an engineer, has to be concerned with the actions of the beings he's controlling in order to be successful.
82+
This applies to the herdsman and, with that, the statesman.
83+
</p>
84+
<p>
85+
<b>Reference: </b>
86+
<a href="https://plato.stanford.edu/entries/plato-sophstate/">Method and Metaphysics in Plato’s Sophist and Statesman</a>
87+
</p>

css/main.css

Lines changed: 128 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,140 @@
1-
body { margin: 60px auto; width: 70%; }
1+
body {
2+
margin: 60px auto;
3+
width: 70%;
4+
}
25

3-
a { color: #00a; }
4-
a:visited { color: #a0a; }
5-
a:hover { text-decoration: underline; }
6+
a {
7+
color: #00a;
8+
}
69

7-
p, ul { font-family: Sans-Serif; font-size: 1.00em; line-height: 1.4em; color: #333; }
10+
a:visited {
11+
color: #a0a;
12+
}
13+
14+
a:hover {
15+
text-decoration: underline;
16+
}
17+
18+
p,
19+
ul {
20+
font-family: Sans-Serif;
21+
font-size: 1.00em;
22+
line-height: 1.4em;
23+
color: #333;
24+
}
825

926
/* h1, h2, h3, h4 { font-family: 'Helvetica', 'Arial', 'Sans-Serif'; }
1027
h1 { font-size: 3em; }
1128
h2 { font-size: 2.7em; }
1229
h3 { font-size: 2.3em; }
1330
h4 { font-size: 1.9em; } */
1431

15-
nav ul, footer ul { font-size: 1em; font-family: 'Helvetica', 'Arial', 'Sans-Serif'; padding: 0px; list-style: none; font-weight: bold; }
16-
nav ul li, footer ul li { display: inline; margin-right: 20px; }
32+
nav ul,
33+
footer ul {
34+
font-size: 1em;
35+
font-family: 'Helvetica', 'Arial', 'Sans-Serif';
36+
padding: 0px;
37+
list-style: none;
38+
font-weight: bold;
39+
}
1740

18-
footer { border-top: 1px solid #d5d5d5; font-size: .8em; }
41+
nav ul li,
42+
footer ul li {
43+
display: inline;
44+
margin-right: 20px;
45+
}
46+
47+
footer {
48+
border-top: 1px solid #d5d5d5;
49+
font-size: .8em;
50+
}
1951

2052
/* Blog */
21-
ul.posts { margin: 20px auto 40px; font-size: 1.5em; }
22-
ul.posts li { list-style: none; }
53+
ul.posts {
54+
margin: 20px auto 40px;
55+
font-size: 1.5em;
56+
}
57+
58+
ul.posts li {
59+
list-style: none;
60+
}
61+
62+
63+
.tree ul {
64+
padding-top: 20px;
65+
position: relative;
66+
transition: all 0.5s;
67+
-webkit-transition: all 0.5s;
68+
-moz-transition: all 0.5s;
69+
}
70+
71+
.tree li {
72+
float: left;
73+
text-align: center;
74+
list-style-type: none;
75+
position: relative;
76+
padding: 20px 5px 0 5px;
77+
transition: all 0.5s;
78+
-webkit-transition: all 0.5s;
79+
-moz-transition: all 0.5s;
80+
}
81+
82+
/* Connectors */
83+
.tree li::before,
84+
.tree li::after {
85+
content: '';
86+
position: absolute;
87+
top: 0;
88+
right: 50%;
89+
border-top: 1px solid #ccc;
90+
width: 50%;
91+
height: 20px;
92+
}
93+
94+
.tree li::after {
95+
right: auto;
96+
left: 50%;
97+
border-left: 1px solid #ccc;
98+
}
99+
100+
.tree li:only-child::before,
101+
.tree li:only-child::after {
102+
display: none;
103+
}
104+
105+
.tree li:only-child {
106+
padding-top: 0;
107+
}
108+
109+
.tree li:first-child::before,
110+
.tree li:last-child::after {
111+
border: 0 none;
112+
}
113+
114+
.tree li:last-child::before {
115+
border-right: 1px solid #ccc;
116+
border-radius: 0 5px 0 0;
117+
}
118+
119+
.tree li:first-child::after {
120+
border-radius: 5px 0 0 0;
121+
}
122+
123+
.tree ul ul::before {
124+
content: '';
125+
position: absolute;
126+
top: 0;
127+
left: 50%;
128+
border-left: 1px solid #ccc;
129+
width: 0;
130+
height: 20px;
131+
}
132+
133+
.tree li div {
134+
border: 1px solid #ccc;
135+
padding: 5px 10px;
136+
display: inline-block;
137+
border-radius: 5px;
138+
background: #f8f8f8;
139+
transition: all 0.5s;
140+
}

0 commit comments

Comments
 (0)