Brady Ouren
Brady Ouren
``` stack ghc -- --version The Glorious Glasgow Haskell Compilation System, version 8.8.1 ``` ``` $ stack repl λ> :script ghci λ> :vis λ> let g = [1..] λ> :view...
@annacruz I think @moofish32 is right about this. You should namespace it differently. Could you close the issue if this is the case?
while looking into #1156 I noticed a similar issue. It seems to be a cost-related error in general ``` >> (define-public (foo) (ok true)) → .ST000000000000000000002AMW42H.contract-0 contract successfully stored. Use...
Tried the `include_boot_contracts` and unfortunately it didn't work. At least not yet, I'll keep digging into this though, it seems close, but I'm missing something still
Yeah, I tried both and I'm including all the cost related just to see if it works ``` let settings = repl::SessionSettings { include_costs: true, include_boot_contracts: vec![ "costs".into(), "cost-voting".into(), "costs-2".into(),...
I use imagemagick to do this locally all the time. `convert cover.jpg -resize 50x50\> cover-thumb.jpg` The `\>` makes sure it doesn't enlarge anything which seems very unlikely, but w/e It...
Redis comes to mind since that's always mentioned in the same breathe as memcached. would you actually want to hold transcoded audio in memory? Seems like storing the path to...
Like mentioned in the SO comments, `PersistentImport.hs` includes `deleteCascade` but not `deleteCascadeWhere` https://github.com/bitemyapp/esqueleto/blob/master/src/Database/Esqueleto/Internal/PersistentImport.hs#L10 This is how I would expect to interact with it in esqueleto: ``` deleteCascade $ from \p...