Jonas Schürmann

Results 17 comments of Jonas Schürmann

I read the essay about selling exceptions that you mentioned, but Richard Stallman is describing a different problem there. Copyleft licenses put restrictions on the consumer by requiring them to...

This should work (in bash): ``` bash function myhttp { http "$@" 'Foobar:asdf' } ``` The order in which the REQUEST_ITEMs are specified doesn't matter. Although I have to admit...

Yeah hie is now bundled with Obelisk, which is great :+1: It works great with the Visual Studio Code plugin, but I still have to do > ``` > cd...

FYI, not using the global `mdl` state and wiring up all components individually using their Elm architecture functions solves this problem.

@Spiralis The problem is the general architecture of this libraray, so I don't expect it to be fixed soon.

@rubenvincenten I submitted a pull request to fix this: twigphp/Twig-extensions#160

Ramda also takes this approach: > The parameters to Ramda functions are arranged to make it convenient for currying. The data to be operated on is generally supplied last. http://ramdajs.com/

I am aware that this change doesn't give much advantage when it comes to currying or pipelining because JavaScript doesn't support this (yet?). For me, this is more about a...

I don't use this library anymore, closing after no response for a few months.

This is a conflict I've been struggeling with, too. For my current project and for my JSON decoder I just used functions everywhere, just like Ramda. The advantage is that...