(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->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)…
Samurai Helmets
11–20 of 91 posts
Re: Samurai Helmets
#12(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->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)…
I'm bored and we are on a site called hacker news; anyone want to join me on de-obfuscating this code?
Re: Samurai Helmets
#13Earlier quoted context omitted.
Nice try bot, whatever it is you were trying to do
You have to at least give credit that the bot was apparently written in lisp.
Re: Samurai Helmets
#14There's an interesting helmet with a large statue of Fudo Myo-o, the "immovable radiant king" of Shingon Buddhism. I don't recall seeing another helmet with a full statue. Are there more examples?
Re: Samurai Helmets
#15After looking at pictures of a bunch of samurai helmets, I came to a realization that Darth Vader'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.
Re: Samurai Helmets
#16Re: Samurai Helmets
#17After looking at pictures of a bunch of samurai helmets, I came to a realization that Darth Vader'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.
George Lucas was heavily inspired by "7 Samurai" by Akira Kurosawa. Its a must watch if you like samurai movies.
Re: Samurai Helmets
#18If anyone lives in London and would like to investigate how the ancient sword arts of japan tie into meditation, I highly recommend http://battodo-fudokan.co.uk/
Re: Samurai Helmets
#19Re: Samurai Helmets
#20After looking at pictures of a bunch of samurai helmets, I came to a realization that Darth Vader'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.
George Lucas was heavily inspired by "7 Samurai" by Akira Kurosawa. Its a must watch if you like samurai movies.