House at 59 Aegean Avenue

The House at 59 Aegean Avenue is a historic home in the Davis Islands neighborhood of Tampa, Florida, United States. It is located at 59 Aegean Avenue. On August 3, 1989, it was added to the U.S. National Register of Historic Places.

House at 59 Aegean Avenue
LocationHillsborough County, Florida, USA
Nearest cityTampa, Florida
Coordinates27°55′57″N 82°27′33″W
Built1926
ArchitectRichard Smallwood
Architectural styleLate 19th And 20th Century Revivals, Mediterranean Revival
MPSMediterranean Revival Style Buildings of Davis Islands MPS
NRHP reference No.89000956[1]
Added to NRHPAugust 3, 1989


gollark: Yes, you can use my segfault fixer if that happens.
gollark: Doesn't it just segfault at some point?
gollark: It was more elegance™ to just make it able to do tail-call optimization.
gollark: I actually stole this particular quicksort from a r/haskell post talking about it.
gollark: ```lisp (let (partition_rec xs pred acc) (cond ((= xs '()) acc) (true (partition_rec (tail xs) pred (cond ((pred (head xs)) (list (cons (head xs) (head acc)) (snd acc))) (true (list (head acc) (cons (head xs) (snd acc)))) ))) )) (let (qsort xs cont) (cond ((= xs '()) (cont '())) (true (do (let h (head xs)) (let t (tail xs)) (let part_result (partition_rec t (lambda (x) (< x h)) '(() ()))) (qsort (head part_result) (lambda (ls) (qsort (snd part_result) (lambda (rs) (cont (+ ls (list h) rs)))))) )) ))```These all have to be done tail recursively or it could overflow.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.