Camilo

Results 103 comments of Camilo

```elixir () |> f // instead of f.call() ``` I think the pipe operator would be best to ease multiple nested function calls. For a single call I don't know...

Currently you can pass any arguments to a 0 arity function without Wren complaining. ```wren var print = Fn.new{|s| System.print(s)} var hello = Fn.new{print.call("Hello Wren")} hello.call(null) hello.call(1234) ``` So if...

If I understand, for the Pipe `|>` to work both sides must implement the `call` method (be like functions). It will first `call` the left side and use the return...

https://docs.python.org/3/license.html > 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly,...

I successfully implemented this functionality using some code from the @rFlex Pull request. Now you can detect up down left right directions! ``` options.allowedDirections = MDCSwipeDirectionUp | MDCSwipeDirectionDown | MDCSwipeDirectionLeft...

I ended using another solution more flexible. https://github.com/cwRichardKim/TinderSimpleSwipeCards/issues/12#issuecomment-105674387

Hey thanks for your code I was able to add full functionality of swipe Vertical Dectection and Programatically too! Check it out! :+1: :heart: https://github.com/clsource/MDCSwipeToChoose

Thanks. I'm Testing my Game on iPhone SE Xcode 8 With Love 10.2

For the `x-data` webscript supports https://mudgen.github.io/webscript/docs/#hyphens-in-property-names So that would be `x·data`. For the following use cases: - `@click.away` - `:class` - attributes with `:` like `xml:lang` There is currently no...

I like the following ideas, that I think are shared from Wren projects like DOME: - Minimal Core. Just enough building bricks for creating more complex external components - Easy...