Michel Belleville
Michel Belleville
Hi ; transitioning to Elm in an older system, we've been using Elm 0.18 to implant incrementally `element`-style elm parts as pages that still get the benefits of the existing...
Trying to fix this issue: https://github.com/tomstuart/monads/issues/8 The problem was that flat_map didn't actually necessarily return a flat array, just tore down one layer of array returned by the block, leaving...
First of all, thanks for your talk about Ruby monads, it blew my mind ^^ I've been trying to imitate your logic as a TDD exercise, and was comparing what...
https://expects.readthedocs.io/en/latest/custom-matchers.html The page reads: ``` from expects.matchers import Matcher class have_header(Matcher): def __init__(self, expected): self._expected = expected def _match(self, request): if self._expected in request.headers: return True, ['header found'] return True,...
I've been looking into this project to code a bot, judging Nostrum's documentation not very beginner-friendly, but now that I'm digging into it this project looks a bit dead (last...
I tried the git-svn-clone-externals script right out of the repository on symfony right out of it's own svn repository and I got : git reset --hard branches/1.0/lib fatal: ambiguous argument...
Hi NyanCatFormatters ^^ I'm discovering this awesome gem under Ubuntu 14.04 and I'm just a tiny bit bugged by the lack of colors on the 4 spec counters on the...
Tinkering with `espec_phoenix` with the latest `phoenix` version I'm finding these annoying errors that I can't seem to fathom when I run my specs for a simple controller test (copy-pasted-adapted...
Hi, Tinkering with this (awsome) lib, I encountered an issue decoding attached file.  Since I don't know much about the png encoding format I fumbled around the file, and...
Hi :) awesome lib you've got there... ...but there's something that could make it awesome-er! See, the `setup_with_mocks` macro is great, but it does not let us execute an `on_exit`...