I hereby claim:
- I am psibi on github.
- I am sibi (https://keybase.io/sibi) on keybase.
- I have a public key whose fingerprint is A241 B3D6 F4FD D40D D7DE B1C6 D19E 3E0E BB55 7613
To claim this, I am signing this object:
{-#LANGUAGE ScopedTypeVariables#-} | |
{-#LANGUAGE MagicHash#-} | |
----------------------------------------------------------------------------- | |
-- | | |
-- Module : System.Time | |
-- Copyright : (c) The University of Glasgow 2001 | |
-- License : BSD-style (see the file libraries/old-time/LICENSE) | |
-- | |
-- Maintainer : [email protected] |
foreign import ccall unsafe "read" c_read :: CInt -> Ptr () -> CSize -> IO CSsize | |
read :: Int -- ^ file descriptor | |
-> Int64 -- ^ Bytes to allocate | |
-> Word64 -- ^ Read upto this many bytes | |
-> IO (ByteString, Int64) | |
read fd bytes len = do | |
(ptr :: Ptr ()) <- mallocBytes (fromIntegral bytes) | |
size <- c_read (fromIntegral fd) ptr (fromIntegral len) | |
bstring <- packCString (castPtr ptr) |
sibi::casey { ~/github/smafia/yesod-server }-> stack exec -- yesod devel | |
Yesod devel server. Type 'quit' to quit | |
Application can be accessed at: | |
http://localhost:3000 | |
https://localhost:3443 | |
If you wish to test https capabilities, you should set the following variable: | |
export APPROOT=https://localhost:3443 |
Preprocessing executable 'eta-ffi' for eta-ffi-0.1.0.0... | |
Running eta-ffi... | |
Exception in thread "main" java.lang.VerifyError: Inconsistent stackmap frames at branch target 513 | |
Exception Details: | |
Location: | |
aesonzm1zi1zi0zi0/data/aeson/types/Internal$zdwzdszdwupdateOrSnocWithKey.enter(Leta/runtime/stg/StgContext;)V @175: goto | |
Reason: | |
Current frame's stack size doesn't match stackmap. | |
Current Frame: | |
bci: @175 |
@sibi::jane { ~/github/codec-jvm }-> java Stack1 | |
Error: A JNI error has occurred, please check your installation and try again | |
Exception in thread "main" java.lang.VerifyError: Inconsistent stackmap frames at branch target 28 | |
Exception Details: | |
Location: | |
Stack1.main([Ljava/lang/String;)V @15: goto | |
Reason: | |
Current frame's stack size doesn't match stackmap. | |
Current Frame: | |
bci: @15 |
M Filemode Length Date Time File | |
- ---------- -------- ----------- -------- ------------------------------------------------------------------------------------------------------- | |
-rw-rw-rw- 1559 22-Jan-2017 12:09:08 bouncycastlezm0zi1zi0zi0/ThreeFishEngine$getLong.class | |
-rw-rw-rw- 735 22-Jan-2017 12:09:08 bouncycastlezm0zi1zi0zi0/ThreeFishEngine$threeFishProcessBlock.class | |
-rw-rw-rw- 1286 22-Jan-2017 12:09:08 bouncycastlezm0zi1zi0zi0/ThreeFishEngine$zdLr2YKa.class | |
-rw-rw-rw- 668 22-Jan-2017 12:09:08 bouncycastlezm0zi1zi0zi0/ThreeFishEngine$zdwccall.class | |
-rw-rw-rw- 799 22-Jan-2017 12:09:08 bouncycastlezm0zi1zi0zi0/ThreeFishEngine.class | |
-rw-rw-rw- 448 22-Jan-2017 12:09:08 eta/bouncycastle/Utils.class | |
-rw-rw-rw- 5865 22-Dec-2016 12:21:40 meta-inf/bckey.dsa | |
-rw-rw-rw- 367678 22-Dec-2016 12:21:40 meta-inf/bckey.sf |
#!/usr/bin/env stack | |
{- stack | |
--resolver lts-6.24 | |
--install-ghc | |
runghc | |
--package yesod | |
--package blaze-html | |
--package persistent | |
--package text | |
--package bytestring |
I hereby claim:
To claim this, I am signing this object:
Note that if you install something incorrectly, there is a high change of your mobile getting bricked.
{-# LANGUAGE NoImplicitPrelude #-} | |
{-# LANGUAGE OverloadedStrings #-} | |
{-# LANGUAGE ScopedTypeVariables #-} | |
module Pantry.Repo | |
( fetchReposRaw | |
, fetchRepos | |
, getRepo | |
, getRepoKey | |
, createRepoArchive | |
, withRepoArchive |