Pancake (disambiguation)
Pancake is a batter cake fried in a pan or on another hot surface.
Look up pancake or pancakes in Wiktionary, the free dictionary. |
Pancake or Pancakes may also refer to:
People
- Pancake, Thai actress Khemanit Jamikorn
- Pancake (surname)
Art, entertainment, and media
- The Pancakes, a music group from Hong Kong
- Pancakes (You're the Worst), the series finale of You're the Worst
Businesses and brands
- Pan-Cake, Max Factor's makeup products
Technology
- Pancake engine, a radial internal combustion engine with a vertical crankshaft
- Pancake (slot car), a type of slot car with a vertical shaft and flat commutator
- Pancake lens, a wide-angle or flat lens in photography
gollark: > inputs longer string> program goes crazy
gollark: f i b o n a c c i
gollark: Besides, this is slower.
gollark: I mean, this is a full program...
gollark: ```haskell#!/usr/bin/stack{- stack --resolver lts-12.13 --install-ghc runghc --package Hclip --package deepseq-}import Data.Charimport Control.DeepSeqimport System.Hclipevaluate x = x `deepseq` xmain = do input <- evaluate <$> getContents let text = concatMap toFib $ zip input [0..] setClipboard text putStr textfibs :: [Int]fibs = 0 : 1 : zipWith (+) fibs (tail fibs)toFib :: (Char, Int) -> StringtoFib (c, i) = replicate (fibs !! i) ' ' ++ [c, "\n"]```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.