Compare commits
3 Commits
41b47e775c
...
25cab4cd5e
Author | SHA1 | Date | |
---|---|---|---|
25cab4cd5e | |||
165666462b | |||
a8cf1d802d |
4
content/.obsidian/community-plugins.json
vendored
4
content/.obsidian/community-plugins.json
vendored
@ -4,6 +4,6 @@
|
||||
"obsidian-auto-link-title",
|
||||
"obsidian-pandoc-reference-list",
|
||||
"templater-obsidian",
|
||||
"obsidian-git",
|
||||
"better-word-count"
|
||||
"better-word-count",
|
||||
"obsidian-git"
|
||||
]
|
4
content/Carl Emil Seashore.md
Normal file
4
content/Carl Emil Seashore.md
Normal file
@ -0,0 +1,4 @@
|
||||
---
|
||||
date: 2024-04-15 16:54
|
||||
---
|
||||
#person
|
@ -0,0 +1,64 @@
|
||||
---
|
||||
cssclasses:
|
||||
- research-note
|
||||
type: book
|
||||
author: Koza, Julia
|
||||
contributor: Michigan Publishing (University of Michigan)
|
||||
title: "Destined to fail: Carl Seashore's world of eugenics, psychology education, and music"
|
||||
date: 2021-01-01
|
||||
citekey: kozaDestinedFailCarl2021
|
||||
tags:
|
||||
- research
|
||||
- book
|
||||
---
|
||||
|
||||
> [!Cite]
|
||||
> Koza, Julia. 2021. _「Destined to fail」: Carl Seashore’s world of eugenics, psychology education, and music_. Ann Arbor, Michigan: University of Michigan Press.
|
||||
|
||||
>[!Synth]
|
||||
>**Contribution**::
|
||||
>
|
||||
>**Related**::
|
||||
>
|
||||
|
||||
[online](http://zotero.org/users/12014264/items/KZD65DDV) [local](zotero://select/library/items/KZD65DDV)
|
||||
|
||||
>[!md]
|
||||
> **FirstAuthor**:: Koza, Julia
|
||||
~> **FirstContributor**:: Michigan Publishing (University of Michigan)
|
||||
~
|
||||
> **Title**:: "Destined to fail": Carl Seashore's world of eugenics, psychology education, and music
|
||||
> **Year**:: 2021
|
||||
> **Citekey**:: kozaDestinedFailCarl2021
|
||||
> **itemType**:: book
|
||||
> **Publisher**:: University of Michigan Press
|
||||
> **Location**:: Ann Arbor, Michigan
|
||||
> **ISBN**:: 978-0-472-13260-7
|
||||
|
||||
> [!LINK]
|
||||
>.
|
||||
|
||||
> [!Abstract]
|
||||
>
|
||||
> A little-known fact about the prominent US psychologist and educator Carl E. Seashore (1866-1949) is that he was deeply involved in the American eugenics movement. He was among the US academics to support eugenics long before German Nazis embraced it. A titan in a host of disciplines and a proponent of radical education reform, Seashore used his positional power to promote a constellation of education reforms consistent with central precepts of eugenics. Many of these reforms, including tracking, gifted and talented programs, and high-stakes standardized testing, were adopted and remain standard practice in the United States today. He promulgated the idea that musical talent is biologically inheritable, and he developed the first standardized tests of musical talent; these tests were used by early-twentieth-century researchers in their attempts to determine whether there are race differences in musical talent. Seashore's ideas and work profoundly shaped music education's research trajectory, as well as enduring "commonsense" beliefs about musical ability. An intersectional analysis, "Destined to Fail" focuses on the relationship between eugenics and Seashore's views on ability, race, and gender. Koza concludes that Seashore promoted eugenics and its companion, euthenics, because he was a true believer. She also discusses the longstanding silences surrounding Seashore's participation in eugenics. As a diagnosis and critique of the present, "Destined to Fail" identifies resemblances and connections between past and present that illustrate the continuing influence of eugenics--and the systems of reasoning that made early-twentieth-century eugenics imaginable and seem reasonable--on education discourse and practice today. It maps out discursive, citational, and funding connections between eugenicists of the early twentieth-century and contemporary White supremacists; this mapping leads to some of Donald Trump's supporters and appointees
|
||||
>.
|
||||
>
|
||||
# Notes
|
||||
|
||||
## イントロ
|
||||
|
||||
- [[Carl Emil Seashore]]の音楽の才能テストがいかにアメリカの優生学に貢献したかが主題。
|
||||
- 第2世代のテストとしては[[Edwin Gordon]]の Musical Aptitude Test
|
||||
- スズキメソードを開発した[[鈴木鎮一]]の「愛に生きる」(Nurtured By Love) も紹介されてる
|
||||
|
||||
> Seashore is not a metonym for all eugenicists of the early twentieth century. He was, however, a central element.
|
||||
|
||||
|
||||
|
||||
# Annotations%% begin annotations %%
|
||||
|
||||
|
||||
%% end annotations %%
|
||||
|
||||
|
||||
%% Import Date: 2024-04-15T16:37:11.917+09:00 %%
|
@ -10,3 +10,5 @@ https://kronoslang.io/
|
||||
[[System-FΩ]]という高階ラムダ計算をベースにしているため、めちゃくちゃメタプログラミング能力が高い。
|
||||
|
||||
例えば[[Faust]]では項書き換え系マクロとして実施されていたプロセッサ自体のメタ出力も一つの言語体系で書ける
|
||||
|
||||
Meta-Sequencerという機能で[[継時再帰]]が抽象化されてる
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit b28c642928c32b53d344b785ed4eb56e4f34e085
|
||||
Subproject commit c7af417134b2c0cf7fb73fa7b0b611dc7ed4bae0
|
@ -159,22 +159,25 @@ process = hmtx(16);
|
||||
fn hmtx(n:int)-> <[float;n]->[float;n]>{
|
||||
assert!(n>=2 && n%2 == 0);
|
||||
if(n==2){
|
||||
`|list|{ [list[0]+list[1], list[0]-list[1]] }
|
||||
`|list|{
|
||||
let l = list[0];
|
||||
let r = list[1];
|
||||
[l+r, l-r]
|
||||
}
|
||||
}else{
|
||||
`|list:[float]|{
|
||||
let mixer = interleave
|
||||
|> |(l1,l2)| {zipwith(l1,l2).map(|(a,b)| a + b)};
|
||||
|> ~hmtx(n/2);
|
||||
|> |(l1,l2)| {zipwith(l1,l2).map(|(a,b)| a + b)}
|
||||
|> ~hmtx(n/2);
|
||||
let upper = list |> mixer;
|
||||
let lower = list
|
||||
|> split(_,2)
|
||||
|>|(l1,l2)| {(l1,l2.map(|a| -a))}
|
||||
|> mixer;
|
||||
|> split(_,2)
|
||||
|>|(l1,l2)| {(l1,l2.map(|a| -a))}
|
||||
|> mixer;
|
||||
join(upper,lower)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
項でインデックスされた型=依存型な気がするのよな
|
||||
|
Loading…
Reference in New Issue
Block a user