JPG-28.4kB

By Dillon Smart · · · 0 Comments

JPG vs WebP Compression

0 Comment

Was this helpful? Leave a comment!

This site uses Akismet to reduce spam. Learn how your comment data is processed.

5 Reasons to Use an IDE for Programming

Updated 3rd August 2022

If you’re a programmer, then you know how important it is to have the right tools for the job. And one of the most important tools for any programmer is an IDE, or integrated development environment. Let’s look at some reasons to use an IDE. What is an IDE? An IDE is a suite of

Destructuring in JavaScript

Updated 16th August 2022

Introduced in ES6, Destructuring in JavaScript is a way to unpack values from arrays, or properties from objects, into distinct variables. What is a use-case of Destructuring in JavaScript? Until ES6, if we wanted to extract data from an array we would have to do something similar to: let message = ; let greeting

How to Upload and Download files to and from a Linux server over SSH

Updated 16th August 2022

Its common place to need to upload and download files to and from a remote Linux server. To upload and download files from a remote Linux server you can use the scp (secure copy) command. To download a file you can use: To upload a file you can use: scp /path/to/file/your/uploading username@ip-or-server-name:/path/to/location/to/upload/to Note: It is