Empty
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Version 1.1.2 x86_64 hpack-0.14.1 | |
| 2016-08-21 09:16:54.646365: [debug] Checking for project config at: /home/livid/github/atom-haskell-utils/hs/stack.yaml @(5BJ0oDzTifWLpSS0yqiJ1g:Stack.Config src/Stack/Config.hs:811:9) | |
| 2016-08-21 09:16:54.646627: [debug] Loading project config file stack.yaml @(5BJ0oDzTifWLpSS0yqiJ1g:Stack.Config src/Stack/Config.hs:829:13) | |
| 2016-08-21 09:16:54.648320: [debug] Checking whether stack was built with libgmp4 @(5BJ0oDzTifWLpSS0yqiJ1g:Stack.Config src/Stack/Config.hs:326:5) | |
| 2016-08-21 09:16:54.648458: [debug] Run process: ldd /usr/bin/stack @(5BJ0oDzTifWLpSS0yqiJ1g:System.Process.Read src/System/Process/Read.hs:283:3) | |
| 2016-08-21 09:16:54.667295: [debug] Stack was not built with libgmp4 @(5BJ0oDzTifWLpSS0yqiJ1g:Stack.Config src/Stack/Config.hs:330:14) | |
| 2016-08-21 09:16:54.667742: [debug] Trying to decode /home/livid/.stack/build-plan-cache/x86_64-linux/lts-5.12.cache @(5BJ0oDzTifWLpSS0yqiJ1g:Data.Binary.VersionTagged src/Data/Binary/VersionTagged.hs:55:5) | |
| 2016-08-21 09:16:54.674994: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fileTypes: [] | |
| name: 'TestGrammar' | |
| scopeName: 'source.test-grammar' | |
| patterns: [ | |
| {include: '#indent-block'} | |
| ] | |
| repository: | |
| 'indent-block': { | |
| name: 'indent-block.test-grammar' | |
| begin: '^(\\s+)(?=\\S)' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {-# LANGUAGE FlexibleContexts #-} | |
| module ArrowTest where | |
| import Control.Arrow | |
| import Test.QuickCheck | |
| f, g :: Floating a => [a] -> [a] | |
| f = loop go | |
| where |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Text.Pandoc | |
| import Text.Pandoc.JSON | |
| import Text.Pandoc.Builder | |
| import Control.Monad.State | |
| import qualified Data.Map as M | |
| main :: IO () | |
| main = toJSONFilter go | |
| where | |
| go (Just (Format "latex")) p = bottomUp runLatex p |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| main :: IO () | |
| main = putStrLn $ "Hello World!" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| localhost | |
| startup php-cgi -b 10000 & | |
| fastcgi / 127.0.0.1:10000 php | |
| root . | |
| errors stderr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define AMACROS(id, size) \ | |
| static BIN_ATTR_RW(eeprom, size); \ | |
| static struct bin_attribute *w1_f ## id ## _bin_attrs[] = { \ | |
| &bin_attr_eeprom, \ | |
| NULL, \ | |
| }; \ | |
| static const struct attribute_group w1_f ## id ## _group = { \ | |
| .bin_attrs = w1_f ## id ## _bin_attrs, \ | |
| }; \ | |
| static const struct attribute_group *w1_f ## id ## _groups[] = { \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface Functor<T> { | |
| map<U>(f: (x: T) => U): Functor<U> | |
| } | |
| class Box<T> implements Functor<T> { | |
| value: T | |
| constructor(x: T) { | |
| this.value = x | |
| } | |
| map<U>(f: (x: T) => U): Box<U> { |