Social Media Posts
Javascript Cloning
Mar 22, 2019
Cloning in javascript can mean either a deep clone or a shallow clone of an object.
Git: rename a branch
Mar 21, 2019
Named your git branch incorrectly? You can quickly rename a branch by using the -m flag
Browser shortcuts: Part 1
Mar 19, 2019
BizDev: web browser tips: there are some shortcuts that work in all browsers
Linux: screen utility
Mar 18, 2019
If you need to run a long running task on a remote machine and don’t want to worry about the connection dropping, you can use the screen utility. The screen utility allows us to detach from that session and resume whenever we need to.
SCSS: ampersand rules
Mar 17, 2019
Using the & after a declaration you can set a css rule to apply given that the selector that has the & after actually applies when it is the parent of the element it is nested under 🤔...