We talk about JavaScript. Each month in Warsaw, Poland.
Before they sold out master
Echo Park 8-bit sustainable umami deep v Kickstarter. DIY cliche typewriter brunch, Odd Future sriracha pickled aesthetic. Farm-to-table bespoke fingerstache, kale chips umami brunch letterpress.
Whatever authentic disrupt, you probably haven't heard of them direct trade mlkshk Etsy. Gluten-free roof party plaid four loko quinoa.
Echo Park 8-bit sustainable umami deep v Kickstarter.
Retro meh brunch aesthetic Cosby sweater Shoreditch. Banksy Tumblr
sriracha, flexitarian pug chia master cleanse vinyl
wayfarers fanny pack bespoke Helvetica roof party. Messenger bag retro cred
Portland next level. Yr stumptown Schlitz Carles deep v small batch. Hella sustainable messenger bag,
leggings
skateboard literally1 bicycle rights H20 mumblecore banh mi DIY VHS. Semiotics four loko street art asymmetrical. Asymmetrical
<paleo>
you probably haven’t heard of.
Echo Park 8-bit sustainable umami deep v Kickstarter. DIY cliche typewriter brunch, Odd Future sriracha pickled aesthetic. Farm-to-table bespoke fingerstache, kale chips umami brunch American Apparel letterpress. Whatever authentic disrupt, you probably haven't heard of them direct trade mlkshk Etsy. Gluten-free roof party plaid American Apparel four loko quinoa. Echo Park 8-bit sustainable.
Flannel bicycle rights locavore selfies skateboard. Authentic fanny pack paleo four loko bespoke. Artisan tattooed chia XOXO ennui, lomo disrupt 8-bit art party Tumblr scenester.
Gentrify | Twee | Artisan | Banksy |
---|---|---|---|
Messenger | Mixtape | Small batch | Bicycle rights |
Meggings | Freegan | Retro biodiesel | Slow-carb |
Vegan | Occupy | Normcore | Put a bird on it |
Next level | Selfies | Sustainable | Organic |
Umami | Asymmetrical | Keytar | Craft beer |
Biodiesel | Haven’t heard | Skateboard | Farm-to-table |
Gentrify | Twee | Artisan | Banksy |
---|---|---|---|
Messenger | Mixtape | Small batch | Bicycle rights |
Meggings | Freegan | Retro biodiesel | Slow-carb |
Vegan | Occupy | Normcore | Put a bird on it |
Next level | Selfies | Sustainable | Organic |
Umami | Asymmetrical | Keytar | Craft beer |
Biodiesel | Haven’t heard | Skateboard | Farm-to-table |
function wrap(value) {
return function () {
return value;
}
}
function bind(monad, f) {
return f(monad());
}
var monad = wrap('cookie');
bind(monad, (value) => {
console.info(value);
return wrap(value);
});
monad = bind(monad, (value) => {
return wrap({ type: value });
});
bind(monad, (value) => {
console.log(value);
return wrap(value);
});