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.
![Boss from ...
For further actions, you may consider blocking this person and/or reporting abuse
I learned how to do my Github readme!
I found out about
key-tables
intmux
.Funny thing, I basically have no space for keyboard shortcurts when using tmux so... key-tables to the rescue. This is like a hacky way of having yet another "prefix key" which can trigger another set of actions.
For the moment I only have one custom key-table with two shortcuts.
Awesome!
I'm continuing to learn Rust. I stream on Twitch if anyone is interested in learning with me at livecoding.ca. If you can't make the streams, I polish them and post them to YouTube, youtube.iamdeveloper.com.
Here's the latest one!
How to build a server work queue on my own. I knew what they were and why you might want one, but I’d never had to stand one up from zero by myself before.
Nice!
I learned more about RESTful and HTTP methods, and how to change (and split) my controllers so they are more RESTful (and more readable and better structured).
I was inspired by this article to refactor my controllers. And I'm quite happy about this - every controller is short, concise, it led to some more refactoring and fixes I overlooked in my old messy controllers.
I learned that when there's a dependency issue because of another dependency you have in node...It's NOT easy to fix.. I need help! And some hot chocolate 😢
I’m curious which npm package it is and which dependency?
Alright, ready for this? So, it's a dependency of
In AWS you can get fractional GPUs using Elastic Inference which is hardware device you can attach to a EC2 CPU based instance. Save so much money not having to use an EC2 GPU instance.
Noice!
I have learned about how to grow an Instagram page and started growing check once 👇🏾
IG Profile
I found out that \t is great for tabs, bad when they're in a string for Windows C:\ Path
I learned the definition of a closure in Golang-- they are anonymous functions that use at least one variable defined outside of the function.