ericnormand Profile Banner
Eric Normand Profile
Eric Normand

@ericnormand

Followers
8K
Following
900
Media
719
Statuses
21K

Learn Clojure & Functional Programming ☞ https://t.co/oYnRibhoKr Author of Grokking Simplicity ☞ https://t.co/zPmPNRgOhK

New Orleans
Joined May 2009
Don't wanna be here? Send us removal request.
@ericnormand
Eric Normand
2 months
We're live! Apropos Clojure
0
1
7
@ericnormand
Eric Normand
3 months
Apropos is live soon:
0
3
5
@ericnormand
Eric Normand
4 months
We're talking with David Nolen on Apropos in 12 minutes! .
0
1
13
@ericnormand
Eric Normand
4 months
If there's one recommendation I'd give to podcasters it's to repeat the name of a book, blog post, movie, videogame, etc., that they're gushing on about. Don't refer to it as "it". Name it at least 3 times. If I'm driving and I missed the name, I want to hear it again.
3
3
17
@ericnormand
Eric Normand
4 months
Half off all books at @ManningBooks for the next couple of days! It's a great opportunity to buy Grokking Simplicity, my book on functional programming.
Tweet card summary image
manning.com
This practical guide will change the way you approach software design and development. It shows you how to write software that keeps complexity close to its inherent minimum.
0
6
24
@ericnormand
Eric Normand
4 months
Just about ready to go live! Apropos!! with Sean Corfield as a special guest.
0
0
5
@ericnormand
Eric Normand
4 months
The next Apropos is tomorrow with Sean Corfield!.
0
2
8
@ericnormand
Eric Normand
5 months
Apropos is live now!.
0
1
6
@ericnormand
Eric Normand
5 months
Apropos streaming next week with special guest Alex Engelberg: @alex_engelberg.
0
4
6
@ericnormand
Eric Normand
5 months
Apropos welcomes Alex Miller to the show today! . Catch us live!.
0
1
7
@ericnormand
Eric Normand
6 months
Apropos broadcasts in one hour! With guest Zach Tillman.
0
2
4
@ericnormand
Eric Normand
6 months
Going live soon!
1
0
1
@ericnormand
Eric Normand
7 months
RT @geoffreylitt: I always thought logic programming was about letting you specify the "what", and not the "how". but SICP has a more nua….
0
8
0
@ericnormand
Eric Normand
7 months
RT @heartofclojure: Be astounded and inspired by @ericnormand showing the leverage abstraction gives you at Heart of #Clojure: https://t.co….
0
3
0
@ericnormand
Eric Normand
7 months
RT @Malcolm_Ocean: reading the intro to @EricNormand's book Grokking Simplicity, about Functional Programming. & struck by how yesterday I….
0
1
0
@ericnormand
Eric Normand
8 months
. using promises directly:. someAjaxRequest().then(display);.someOtherAjaxRequest().then(display);. The former maintains order, the second one displays them as they come in.
0
0
7
@ericnormand
Eric Normand
8 months
. you're probably better off awaiting later where the value is used:. const aPromise = someAjaxRequest();.const bPromise = someOtherAjaxRequest();. display(await a);.display(await b);. Or. .
1
0
3
@ericnormand
Eric Normand
8 months
Pet peeve! When you see code like this:. const a = await someAjaxRequest();.const b = await someOtherAjaxRequest();. display(a);.display(b);. You can't display a until after b finishes! You're using a concurrent system but not taking advantage of the parallelism. Instead . .
3
1
15
@ericnormand
Eric Normand
9 months
Or do you know someone who works at Brilliant? I'd like to get an internal referral for a job, if I can.
1
2
5
@ericnormand
Eric Normand
9 months
Who do I know that works at Brilliant?.
2
0
4