TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Samurai Helmets

132 点作者 cnahr大约 6 年前

11 条评论

ender7大约 6 年前
While beautiful, most of these pieces are primarily ceremonial or intended for generals who would rarely involve themselves on the battlefield†.<p>Almost all of these pieces date from after the unification of Japan under the Tokugawa shogunate (c. 1600). From 1600 to 1850 Japan experienced a stable period marked by very little real armed conflict. During this time, the samurai transitioned from soldiers to what were effectively mid-level bureaucrats. However, unlike most bureaucrats, they managed to retain all of the trappings of a martial lifestyle, including ornate armor, beautiful swords, and the occasional mortal duel. It was during this time of relative peace that these (sometimes ridiculous) fashion pieces developed, somewhat complicated by the tradition of incorporating pieces of much, much older helmets into the &quot;core&quot; of the helmets (one of the helmets in the OP has a core dating from the 14th century, but was significantly embellished later on).<p>†This is generally true of what arms and armor have survived from around the world. The stuff that was actually used rusted away long ago; the highest chance for survival was to have been so valuable that no one dared to actually take it onto a battlefield.
评论 #19704528 未加载
saidajigumi大约 6 年前
I highly recommend checking out the Samurai Collection[1] referenced here, if you can get to one of its showings – it travels around quite regularly. The exhibit is great, both in size (good, but not overwhelming) and presentation details. Especially the full (O-yoroi) armor, which is in transparent cases that let you get up close on all sides to see how the armor is constructed, and the many levels of artisanship that go into each piece.<p>Also, the exhibition venues will often do things like find local artisans to demonstrate related skills. E.g. I demoed making the armor lacing braids (as much as 200-400 yards, in reeled silk, per suit!) when the show was at the Portland Art Museum.<p>[1] <a href="http:&#x2F;&#x2F;samuraicollection.org&#x2F;aboutus_history.html" rel="nofollow">http:&#x2F;&#x2F;samuraicollection.org&#x2F;aboutus_history.html</a>
ereyes01大约 6 年前
After looking at pictures of a bunch of samurai helmets, I came to a realization that Darth Vader&#x27;s helmet is more or less the shape of a samurai helmet. Maybe this should have been obvious to me (especially being a fan of the Hidden Fortress film), but it was a cool discovery for me.
评论 #19702094 未加载
评论 #19701838 未加载
评论 #19705069 未加载
sorokod大约 6 年前
Is the fantastic impracticality of these helmets due to the handicap principal ( <a href="https:&#x2F;&#x2F;en.m.wikipedia.org&#x2F;wiki&#x2F;Handicap_principle" rel="nofollow">https:&#x2F;&#x2F;en.m.wikipedia.org&#x2F;wiki&#x2F;Handicap_principle</a> )?
评论 #19702233 未加载
评论 #19702131 未加载
评论 #19702085 未加载
abledon大约 6 年前
If anyone lives in London and would like to investigate how the ancient sword arts of japan tie into meditation, I highly recommend <a href="http:&#x2F;&#x2F;battodo-fudokan.co.uk&#x2F;" rel="nofollow">http:&#x2F;&#x2F;battodo-fudokan.co.uk&#x2F;</a>
评论 #19701933 未加载
评论 #19701473 未加载
Isamu大约 6 年前
There&#x27;s an interesting helmet with a large statue of Fudo Myo-o, the &quot;immovable radiant king&quot; of Shingon Buddhism.<p>I don&#x27;t recall seeing another helmet with a full statue. Are there more examples?
评论 #19702228 未加载
评论 #19701650 未加载
benj111大约 6 年前
Does the Royal Armouries in Leeds still have that amazing collection of Japanese armour?<p>That would be my bank holiday recommendation.
mhb大约 6 年前
Mouse and cat armor: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=19703277" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=19703277</a>
zzo38computer大约 6 年前
What is the mass of the helmet?
评论 #19702004 未加载
评论 #19704108 未加载
billconan大约 6 年前
are these helmets practical or mostly for decoration purposes?
siqu大约 6 年前
(define (get) (get1 (quote ()) (read)))(define (get1 b r) (if (eof-object? r) (reverse b) (get1 (cons r b) (read))))(define (put) (put1 (quote ()) (read-char)))(define (put1 b r) (if (eof-object? r) (list-&gt;string (reverse b)) (if (char=? #\) r) (put1 (cons #\. (cons #\. (cons r b))) (read-char)) (put1 (cons r b) (read-char)))))(define (final lis) (if (null? lis) lis (final1 (car lis) (cdr lis))))(define (final1 f r) (if (and (pair? f) (pair? (cdr f)) (eqv? (quote quote) (car f))) (cons f (final (cdr r))) (if (list? f) (final2 f (gather (count (car r)) (cons (quote ()) (final (cdr r))))) (if (or (vector? f) (pair? f) (eq? #\) f)) (cons f (final (cdr r))) (cons f (final r))))))(define (final2 f g) (cons (append (final f) (car g)) (cdr g)))(define (count s) (- (string-length (symbol-&gt;string s)) 2))(define (gather c lis) (if (= c 0) (cons (reverse (car lis)) (cdr lis)) (gather (- c 1) (cons (cons (cadr lis) (car lis)) (cddr lis)))))(for-each write (final (with-input-from-string (put) get)))
评论 #19701490 未加载
评论 #19701462 未加载
评论 #19701465 未加载