Luciano Mammino 𝕏 Node.js Design Patterns Profile picture
Jun 30, 2020 β€’ 7 tweets β€’ 6 min read β€’ Read on X
What have you learned by using/studying different programming languages?

Here's my personal 🧡thread🧡, but I look forward to seeing your version of this :)

#learning #coding
#PHP: sandboxing the lifecycle and data related to every request is often a good idea.

(@official_php)
#basic (specifically #qbasic): my first language. Thought me to do "basic" things like variables, loops, functions and random numbers.

But, most importantly, it thought me that you can be #creative with #code as I started to use my learnings for generative graphics and audio.
#JavaScript / #Nodejs they have taught me the beauty and the power of asynchronous I/O and that code can be often simple, yet very effective.

Think about solving small problems and make sure your solution can be combined with other pieces to solve bigger problems.

@nodejs
#rustlang unlocked a lower-level world for me. In my previous experience, I didn't have to worry about memory management and therefore it has been a fascinating topic to explore. The rust compiler is a helpful guide on this path. I still have a lot to learn though!

@rustlang
#elixirlang! I have been reading some books and done some small exercise in the last few years. I am far away from being proficient with it, but I taught me immensely about #functional #programming and thinking list operations using #recursion rather than loops

@elixirlang
#Java: Object-Oriented Programming (and many of its patterns) plus a good amount of algorithms (as it was the language I mostly used at the university). It has also taught me that #composition is better than #inheritance and that often you don't need too many abstraction layers!

β€’ β€’ β€’

Missing some Tweet in this thread? You can try to force a refresh
γ€€

Keep Current with Luciano Mammino 𝕏 Node.js Design Patterns

Luciano Mammino 𝕏 Node.js Design Patterns Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @loige

Sep 15, 2022
Here are 6 of my favorite third-party libraries when building CLI applications using #NodeJS

Want to know why?πŸ‘‡πŸ§΅
commander ➑️ npm.im/commander

Simple yet powerful command-line argument parser. It automatically generates help messages and can be configured to support multiple commands.

I ❀️ it bc it's not prescriptive, you can organize the code as you want (1 file or more).
conf ➑️ npm.im/conf

How many times did you have to store settings (creds & other preferences)? Where do you save the conf file? Which format do you use? How do you load and update the file?

Conf takes care of all of this (and more!) with an extremely simple API
Read 10 tweets
Aug 3, 2022
"Yo, why are #JavaScript and its ecosystem so messy?!" 😑

Well, I am glad you asked... Let me tell you a story! πŸ€“

πŸ§΅πŸ‘‡
For starting... #JavaScript was not designed to be the language that it is today!

JS was created in 1995 by @BrendanEich for Netscape, a web browser that was trying to come up with a language to make the web more interactive
@BrendanEich #JS wasn't related w/ #Java, so why did they call it Java-Script?! Duh! 😳

Java was trendy! it was possible to build interactive sites by embedding Java apps in pages (applets). So it was mostly a #mktg move: "JS: the lightweight Java alternative" or something like that I guess
Read 40 tweets
May 25, 2021
I have been confused for a while on what's the best way to implement a "to string" functionality for a #Rust struct. πŸ¦€

The reason why this has been confusing to me is that there are indeed many ways to do that and they all have different purposes!

This is what I learned

πŸ‘‡πŸ§΅
The first thing that you can do is to just implement a simple `to_string()` function directly on your struct!

play.rust-lang.org/?version=stabl…
This is easy and it works! But the implementation is very specific to our struct.

The rest of the codebase doesn't really know that this type can be converted to a String and therefore you cannot build abstractions on top of this... 🀨
Read 23 tweets
Oct 1, 2020
Do you know what's in a #JWT token?

Here's a quick thread to learn something about this! πŸ‘‡
A JWT token (JSON Web Token) is just a string with a well-defined format. A sample token might look like this:

```
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJoZWxsbyI6ImZyb20gSldUIn0.XoByFQCJvii_iOTO4xlz23zXmb4yuzC3gqrWNt3EHrg
```
There are 3 parts separated by a `.` (dot) character:

- header: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
- body: eyJoZWxsbyI6ImZyb20gSldUIn0
- signature: XoByFQCJvii_iOTO4xlz23zXmb4yuzC3gqrWNt3EHrg
Read 13 tweets
Sep 17, 2020
@eleven_ty micro tip: Give eleventy some credit by injecting a "generator" meta tag in your HTML! πŸ”₯

Frontpage and Dreamweaver used to get credit this way, why shouldn't we give Eleventy some credit too? πŸ˜‡

(a short thread in 3 steps πŸ‘‡) Image
STEP 1. Create a data file in `_data/site.js` with the following content: Image
STEP 2. Create your base layout `_includes/layout.njk` and use the variable `{{ site.generator }}`: Image
Read 8 tweets
Aug 18, 2020
✨ Rob Pike's 5 Rules of #programming ✨

#golang #simplicity

πŸ§΅πŸ‘‡
1️⃣ You can't tell where a program is going to spend its time. Bottlenecks occur in surprising places, so don't try to second guess and put in a speed hack until you've proven that's where the bottleneck is.
2️⃣ Measure. Don't tune for speed until you've measured, and even then don't unless one part of the code overwhelms the rest.
Read 7 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us!

:(