Skip to content

Instantly share code, notes, and snippets.

View anthonylebrun's full-sized avatar

Pierre Lebrun anthonylebrun

View GitHub Profile

Elixir Conf 2014 - Keynote: Think Different by Dave Thomas

https://www.youtube.com/watch?v=5hDVftaPQwY

My Rating: 10/10

This talk is mainly about the paradigm shift in thinking that happens when you apply elixir-style pattern matching, pipes and functional programming thought (i.e. data transformation) to problem solving.

@anthonylebrun
anthonylebrun / gemlist.txt
Last active April 19, 2016 23:02
List of gems I use or interesting gem I might want to use in my next project
https://github.com/hashrocket/decent_exposure
https://github.com/dkubb/adamantium
https://github.com/tcrayford/Values
https://github.com/apotonick/reform
https://github.com/apotonick/cells
https://github.com/mikeyhogarth/duckpond
https://github.com/substantial/updeep
@anthonylebrun
anthonylebrun / passingProps.js
Created February 7, 2016 20:16
Dynamically passing props in react from a component to it's yet unknown children.
var FooBar = React.createClass({
render() {
return <div className="foo-bar">
{React.Children.map(this.props.children, child => React.cloneElement(child, {passedProp: this.props.passedProp}))}
</div>
}
})