Fork me on GitHub
#off-topic
<
2017-07-17
>
bherrmann02:07:07

Book idea: "Programming for People Whose Programs Don't Need to Scale to Millions of Users or Billions of Transactions per Second." -- @jdeisenberg

dpsutton03:07:14

honestly, in most books i read they come with a disclaimer like "obviously you would never do this in production..."

shidima_11:07:06

You should add "By example" for me thats the best way to see how the pieces fit together.

mnzt11:07:53

There's a bit of a disconnect between "horrible hacky shit i wrote that works on the weekend" and "Production ready UberService-9000-a-thon", I'm yet to find a proper overlap

flaviohenriquecbc14:07:02

hey, people! I just wrote an article about the new features of Javascript, ES8. Take a look and tell me what you think ๐Ÿ˜‰ https://medium.com/@flaviohfreitas/es8-the-new-features-of-javascript-7506210a1a22

souenzzo15:07:21

Object.values -> vals Object.entries -> map Async functions (async and await) -> promise/`deref`/`deliver` Shared memory and atomics -> atom/Immutability

ghadi15:07:13

Anyone have opinions on Zipkin vs. Jaeger?

akiroz17:07:53

oh wow, ES8 is already a thing? is there gonna be a new version of JS every year? ๐Ÿ˜ฎ

roberto17:07:46

they stopped calling it ES6 โ€ฆ

roberto17:07:57

and prefer to call it ES$CURRENT_YEAR

roberto17:07:02

e.g. ES2017

akiroz17:07:04

ES8 has leftPad built-in ๐Ÿ˜‚ ๐Ÿ˜‚ ๐Ÿ˜‚

schmee17:07:00

when you let memes guide your programming language designโ€ฆ ๐Ÿ˜

baptiste-from-paris19:07:16

Hello friends, some of you have ever tried Google Closure Stylesheet minifier for ther cljs project ? I am looking for feedbacks ๐Ÿ™‚

mobileink22:07:47

proposition: js promises are a Crime Against Humanity. i'm just learning them, but it looks to me like they just add state to callbacks. i can't see what makes that a good thing. what am i missing? does it make any sense to use them in cljs code?

chrisbroome23:07:13

Can't speak for cljs code but promises make vanilla js asynchronous code a LOT more composable.