It's that time of the week again. So wonderful devs, what did you learn this week? It could be programming tips, career advice etc.
Feel free to comment with what you learnt and/or reference your TIL post to give it some more exposure.
#todayilearned
Summarize a concept that is new to you.
And remember, if something you learnt was a big win for you, then you know where to drop it as well.👇👇🏻👇🏼👇🏽👇🏾👇🏿
Top comments (21)
I attended my first GoLang Essentials course on LinkedInLearning.
Being a FE Dev I am delighted to see the power of Go and motivated to do some experiments with it.
I hope one day I would be able to write my serverless functions in Go as well
Yeah!
Thank you @nickytonline
This week I learned how useful it is, posting and commenting on Dev.to.
Nice!
I learned how useful
git stash save
andgit stash apply
can be.Is git stash different from git stash save?
With
git stash save
you are able to add a message to your stash, almost like a commit message. It would like something likegit stash save "stashing my changes"
. This makes it easier to know which stash is which when you rungit stash list
. You can then pick which stash to use with thegit stash apply
command. You would just need to provide which stash from the list using syntax likegit stash apply stash@{2}
. The 2 is the id of the stash, which you can see when you rungit stash list
.Awesome!
Studied the node event loop in greater depth and how es modules and common js modules are loaded and executed differently by node
Care to share any resources you looked at?
I'm reading a book called node js design patterns the first few chapters disect the internal architecture of node, I also watched a free 1.5h workshop on YouTube called broken promises
I learned that I enjoy take-home assessments way too much. Also, Ruby on Rails! I wish I had picked it up earlier. It has everything.
Today I learned that GitHub does not use the PR title as commit message (when using “Squash and merge”) if there is only one commit in the PR (it uses the commit message instead). Broke the build :-(
This week I learnt Nestjs by making simple authenticate API
Nice!