Social Media Posts

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 🤔...

Javascript: array inclusion check

Mar 16, 2019

Looking for a quick way to see if an item is an array? Use the...

Autofocus HTML Attribute

Mar 14, 2019

You can add in an autofocus HTML5 attribute which tells the browser to give that element focus when the page loads.