do you think www.aws.org runs on aws?
For those inter st in the finest writing of all time https://www-allure-com.cdn.ampproject.org/v/s/www.allure.com/story/best-sex-tip-by-zodiac-sign/amp?amp_gsa=1&_js_v=a6&usqp=mq331AQKKAFQArABIIACAw%3D%3D#amp_tf=From%20%251%24s&aoh=16392879347932&referrer=https%3A%2F%2Fwww.google.com&share=https%3A%2F%2Fwww.allure.com%2Fstory%2Fbest-sex-tip-by-zodiac-sign
Source Contents Index dyre-0.8.12: Dynamic reconfiguration in Haskell Safe Haskell None Config.Dyre Description Dyre is a library for configuring your Haskell programs. Like Xmonad, programs configured with Dyre will look for a configuration file written in Haskell, which essentially defines a custom program configured exactly as the user wishes it to be. And since the configuration is written in Haskell, the user is free to do anything they might wish in the context of configuring the program. Dyre places emphasis on elegance of operation and ease of integration with existing applications. The wrapMain function is the sole entry point for Dyre. When partially applied with a parameter structure, it wraps around the realMain value from that structure, yielding an almost identical function which has been augmented with dynamic recompilation functionality. The Relaunch module provides the ...
Source Contents Index snappy-0.2.0.2: Bindings to the Google Snappy library for fast compression/decompression Portability portable Stability experimental Maintainer Bryan O'Sullivan <bos@serpentine.com> Safe Haskell Safe-Infered Codec.Compression.Snappy Description This module provides fast, pure Haskell bindings to Google's Snappy compression and decompression library: http://code.google.com/p/snappy/ These functions operate on strict bytestrings, and thus use as much memory as both the entire compressed and uncompressed data. Synopsis compress :: ByteString -> ByteString decompress :: ByteString -> ByteString compress :: ByteString -> ByteString Source Compress data into the Snappy format. decompress :: ByteString -> ByteString Source Decompress data in the Snappy format. If the input is not compressed or is corrupt, an exception will be thrown. Produced by Haddock version 2.10.0...
Source Contents Index http-streams-0.8.3.3: An HTTP client using io-streams Maintainer Andrew Cowie Stability Experimental Safe Haskell None Language Haskell2010 Network.Http.Client Contents Connecting to server Building Requests Sending HTTP request Processing HTTP response Resource cleanup Convenience APIs Secure connections Testing support Deprecated Description Overview A simple HTTP client library, using the Snap Framework's io-streams library to handle the streaming I/O. The http-streams API is designed for ease of use when querying web services and dealing with the result. Given: {-# LANGUAGE OverloadedStrings #-} import System.IO.Streams (InputStream, OutputStream, stdout) import qualified System.IO.Streams as Streams import qualified Data.ByteString as S and this library: import Network.Http.Client the underlying API is straight-forward. In particular, constructing the Reques...
Home Search Browse What's new Upload User accounts react-haskell: Haskell React bindings [ Tags : library , mit ] This package provides high level bindings to Facebook's React library, meant for use with Haste . React is a JavaScript library for building user interfaces. React (and React-Haskell) is focused on just UI - it's not a framework. Currently React-Haskell can render simple stateful components, but not what React calls classes. Put another way, React-Haskell doesn't support lifecycle methods yet. Here's a simple example which demonstrates basic elements, attributes, state, and handling events. -- We're creating a class with JSString state data Example instance ReactKey Example where type ClassState Example = JSString type AnimationState Example = () type Signal Example = JSString -- updating to the new state without animation transition :: JSString -> JSStr...
Source Contents Index base-4.7.0.1: Basic libraries Copyright (c) Ross Paterson 2002 License BSD-style (see the LICENSE file in the distribution) Maintainer libraries@haskell.org Stability provisional Portability portable Safe Haskell Trustworthy Language Haskell2010 Control.Arrow Contents Arrows Derived combinators Right-to-left variants Monoid operations Conditionals Arrow application Feedback Description Basic arrow definitions, based on Generalising Monads to Arrows , by John Hughes, Science of Computer Programming 37, pp67-111, May 2000. plus a couple of definitions ( returnA and loop ) from A New Notation for Arrows , by Ross Paterson, in ICFP 2001 , Firenze, Italy, pp229-240. These papers and more information on arrows can be found at http://www.haskell.org/arrows/ . Synopsis class Category a => Arrow a where arr :: (b -> c) -> a b c first :: a b c -> a (b, d) (c, d) secon...
Source Contents Index base-4.7.0.1: Basic libraries Copyright (c) The University of Glasgow 2001 License BSD-style (see the file libraries/base/LICENSE) Maintainer libraries@haskell.org Stability stable Portability portable Safe Haskell Trustworthy Language Haskell2010 Prelude Contents Standard types, classes and related functions Basic data types Tuples Basic type classes Numbers Numeric types Numeric type classes Numeric functions Monads and functors Miscellaneous functions List operations Reducing lists (folds) Special folds Building lists Scans Infinite lists Sublists Searching lists Zipping and unzipping lists Functions on strings Converting to and from String Converting to String Converting from String Basic Input and output Simple I/O operations Output functions Input functions Files Exception handling in the I/O monad Description The Prelude: a standard module. The Prelude is im...
Home Search Browse What's new Upload User accounts Ketchup: A super small web framework for those who don't like big and fancy codebases [ Tags : library , mit ] Ketchup is a very small HTTP server implementation, currently under 400 LoC total! Ketchup is also made to be as modular and embeddable as possible, if you want a cabal-free Haskell app, just take those two/three files you need and put it in your project! Currently Ketchup comes with: Basic httpd functionality (IPV4 only for now) Regexp routing with parameters (ie. ` user :name/(.*)`) Static file handler (ie. `static "."` as route/handler) Dependencies The core parts of Ketchup are all depedency free, that includes Ketchup.Httpd and Ketchup.Utils (and to a certain extent, Ketchup.Chunked). The dependencies required are for the following modules: Ketchup.Routing (uses regex-pcre-builtin, This can ben modified to use builtin POS...
Home Search Browse What's new Upload User accounts Ketchup: A super small web framework for those who don't like big and fancy codebases [ Tags : library , mit ] Ketchup is a very small HTTP server implementation, currently under 300 LoC total! Ketchup is also made to be as modular and embeddable as possible, if you want a cabal-free Haskell app, just take those two/three files you need and put it in your project! Currently Ketchup comes with: Basic httpd functionality (IPV4 only for now) Regexp routing with parameters (ie. ` user :name/(.*)`) Static file handler (ie. `static "."` as route/handler) Most of the project is dependency-free and only uses stuff included in Prelude, with the exception of Ketchup.Static who uses the mime-types package from Hackage, which is a single separately downloadable file. No changelog available Versions 0.1.0 , 0.1.1 , 0.1.2 , 0.2.0 , 0.2.1 , 0.2.2 , 0...
Home Search Browse What's new Upload User accounts Ketchup: A super small web framework for those who don't like big and fancy codebases [ Tags : library , mit ] No changelog available Version 0.1.0 Dependencies base (==4.*), bytestring (>=0.9 && <0.11), containers (>=0.2 && <0.6), network (<2.5) License MIT Author Alessandro Gatti Maintainer zikyky@gmail.com Category Web , Ketchup Home page https://github.com/Hamcha/Ketchup Source repository head: git clone git://github.com/Hamcha/Ketchup.git Upload date Sat May 24 12:35:49 UTC 2014 Uploaded by Hamcha Downloads 0 total (0 in last 30 days) Ketchup Ketchup.Httpd Ketchup.Routing Ketchup-0.1.0.tar.gz [ browse ] (Cabal source package) Package description (included in the package) For package maintainers and hackage trustees edit package information Produced by hackage and Cabal 1.18.1.3...