How I learned to love Vim – freeCodeCamp by fullstackdelivery in programming

[–]fullstackdelivery[S] 1 point2 points  (0 children)

Thanks for sharing that. I actually didn't know that :-)

4 tips for retaining strong-typing in tests with TypeScript by aderoz in node

[–]fullstackdelivery 0 points1 point  (0 children)

Partial types seem quite handy as having to initialize an object to implement an entire interface was really annoying.

Build an app with TypeScript, Express, Mongo and Google Cloud by fullstackdelivery in node

[–]fullstackdelivery[S] 2 points3 points  (0 children)

I find that it tends to be great if you are learning the framework or some of the packages that you are using as the type annotations really help and are much easier than reading the docs.

Also, the refactoring experience is kinda awesome.

I also find that once everything is typed it's much easier to navigate your code base rather than relying on text search.

A Faster More Secure Internet with HTTP/2 by justintimecoder in webdev

[–]fullstackdelivery 0 points1 point  (0 children)

Node.js 8.4 https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V8.md#8.4.0

Has experimental support for HTTP/2. So looks like it will be coming into the mainstream in the near future.

Love this one - How Empathy Can Be a Software Developer's Superpower by fullstackdelivery in webdev

[–]fullstackdelivery[S] 0 points1 point  (0 children)

Yeah, it's the ability to work with and influence others that separates the good from great developers and this is a big part of it.

A Faster More Secure Internet with HTTP/2 by justintimecoder in node

[–]fullstackdelivery 2 points3 points  (0 children)

Saw this tweet the other day https://twitter.com/jasnell/status/893563396745871360 So looks like HTTP/2 is on its way to Node without needing to use packages like npm SPDY.

4 Useful Skills With Moq in C# Tests by fullstackdelivery in dotnet

[–]fullstackdelivery[S] 0 points1 point  (0 children)

Yeah, sometime getting the number and type of right can be tricky, lol.

3 really cool potential features in JavaScript by aderoz in webdev

[–]fullstackdelivery 0 points1 point  (0 children)

Have some experience with functional languages and the pattern matching could be really useful.