Blog

Author Archive


Compiling Sass Using the node-sass Node Package on a Mac
Posted on March 8, 2016 in Node.js, Sass by Matt Jennings

Steps:

First, install Node.js and NPM if you have not already done so.
Open up Terminal, type in cd, …

Read more


PHP Regular Expression Examples using preg_match()
Posted on January 25, 2016 in PHP, Regular Expressions by Matt Jennings

<?php
function test($my_pattern, $my_string) {
$output = ‘<p><strong>My String:</strong><br />’ . $my_string . ‘</p>’;
$output .= ‘<p><strong>My Pattern:</strong><br />’ …

Read more


Using SSH Keys to Connect to a Remote Server without Passwords
Posted on January 7, 2016 in Command Line, Linux, Mac by Matt Jennings

If you haven’t done so already, create an SSH key in your Mac by following these steps.
Then follow …

Read more


Fix Problems with Creating SSH Keys Using Mac Terminal
Posted on January 7, 2016 in Command Line, Mac, SSH by Matt Jennings

Per steps from GitHub, I tried using the code below in Mac Terminal to create a new SSH …

Read more


A Simple jQuery Slideshow
Posted on October 31, 2015 in JavaScript, jQuery by Matt Jennings

See the JSFiddle for this code including the jQuery, CSS, and HTML.