Living Alone (EP)

Living Alone is an EP by musician Teddy Geiger. It was released on November 2, 2010.[1]

Living Alone
EP by
ReleasedNovember 2, 2010
GenrePop rock
LabelIndependent
Teddy Geiger chronology
Snow Blankets the Night (EP)
(2006)
Living Alone
(2010)
The Last Fears
(2013)

Track listing

All songs written by Teddy Geiger.

  1. "Lie Tonight (WE USed TWO)" - 2:40
  2. "What Kind of Love" - 3:42
  3. "Give It Up" - 3:24
  4. "Sit and Wonder" - 3:47
  5. "Living Alone" – 3:09
  6. "Drink It In" - 3:32
gollark: ```haskellimport Data.Listimport Data.Bits fib :: Int -> Integerfib n = snd . foldl_ fib_ (1, 0) . dropWhile not $ [testBit n k | k <- let s = bitSize n in [s-1,s-2..0]] where fib_ (f, g) p | p = (f*(f+2*g), ss) | otherwise = (ss, g*(2*f-g)) where ss = f*f+g*g foldl_ = foldl' -- '```
gollark: import Data.Listimport Data.Bits fib :: Int -> Integerfib n = snd . foldl_ fib_ (1, 0) . dropWhile not $ [testBit n k | k <- let s = bitSize n in [s-1,s-2..0]] where fib_ (f, g) p | p = (f*(f+2*g), ss) | otherwise = (ss, g*(2*f-g)) where ss = f*f+g*g foldl_ = foldl' -- '
gollark: 3.1 Using 2x2 matricesThe argument of iterateabove is a linear transformation, so we can represent it as matrix and compute the nth power of this matrix with O(log n) multiplications and additions.For example, using the simple matrix implementation in Prelude extensions,fib n = head (apply (Matrix [[0,1], [1,1]] ^ n) [0,1])
gollark: 0, 1, 1, 2, 3...
gollark: d o n ' t c h a n g e p e r

References

  1. "Twitter / Teddy Geiger: looks like the EP is gonna". Twitter.com. 2010-09-01. Retrieved 2012-02-29.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.