Eric’s Works

Featured image for EricHepperle.com Developer Journal post - Researching Web Design Portfolios & Case Studies. (Collage by: Eric Hepperle, 2018)

Design Journal: Researching Web Design Portfolios and Case Studies

Developer Journal: Researching Web Design Portfolios & Case Studies (Collage by: Eric Hepperle Designs, 2018 | Credit: “Notebook Flat Icon Vector.svg” by Videoplasty.com; “pexels-photo-943096” by Danny Meneses)I’ve recently discovered the need for a decent web developer portfolio. Now, I’ve been aware of web developer portfolios for a while and I’ve seen some good ones. But, […]

Design Journal: Researching Web Design Portfolios and Case Studies Read More »

Developer Journal: Making ShopIsle Theme Search Page Display Excerpts Instead of Full Content [without plugin] – Pt. 01

This is part of a new series I’m starting called Developer Journal. Posts in this series discuss my challenges — various programming and design topics I’m trying to figure out. I take you on my journey of learning and discovery. You get to experience my process for problem-solving and troubleshooting technical issues. While these are

Developer Journal: Making ShopIsle Theme Search Page Display Excerpts Instead of Full Content [without plugin] – Pt. 01 Read More »

Contact Form 7 Broken on WordPress – GoDaddy, MS Exchange Email Spam Issues Likely Cause

Picture this. You just finished building a very basic WordPress website using any one of several popular contact form plugins including WPForms, Gravity Forms, Ninja Forms, Pirate Forms, or the old stalwart (and arguably the easiest contact form plugin to set up and configure), Contact Form 7. Maybe you’ve designed a detailed custom contact form

Contact Form 7 Broken on WordPress – GoDaddy, MS Exchange Email Spam Issues Likely Cause Read More »

Google Docs spreadsheet script: compare dates, highlight past dates, highlight weekends, and highlight today

ORIGINAL PROBLEM I spent hours tonight struggling with this Google Apps script I wrote to serve as custom functions or advanced macros. I adapted it from this StackOverflow post. The main issue I ran into was comparing dates. Here is my research path, and hopefully, some indicator as to why it took so long: STEPS

Google Docs spreadsheet script: compare dates, highlight past dates, highlight weekends, and highlight today Read More »

Screenshot of my jQuery Fancy Paragraphs code in JSFiddle 2013

Fancy HTML Paragraph Styling with jQuery

I wrote this jQuery fiddle in about 5 minutes. It is really simple, but amazingly powerful at the same time. The purpose of this is to instantly style paragraph tags. Here are the style parameters: Background color: Manila (light beige-ish/yellow) Border color: Orange Drop-shadow: Yes Rounded-rectangle: Yes I want to make the code easily available

Fancy HTML Paragraph Styling with jQuery Read More »

comcastArrisSurfboard_modemGateway_Xfinity_TG862R_01

Comcast Arris TG862 Gateway modem+router Won’t connect to ASUS X401A Mini-Laptop

Comcast Arris TG862 Gateway modem+router Won’t connect to ASUS X401A Mini-Laptop Problems with brand-new Best Buy ASUS laptop connnecting to Xfinity cable modem: Mom’s New Laptop My mom recently bought an ASUS X401A 14″ Laptop which was equipped without an optical (CD/DVD) drive, and for wireless network connection only. When I’m at her house, I

Comcast Arris TG862 Gateway modem+router Won’t connect to ASUS X401A Mini-Laptop Read More »

The Agony of Looping and Doing Foreach In XP DOS

07/07/12 It has been a primary goal of mine for several years to write a Windows program, in either DOS or Perl, to automate changing the folder icon in a batch of subdirectories.  It is quite tedious to do this process manually, and when I am trying to customize folder icons this process can eat

The Agony of Looping and Doing Foreach In XP DOS Read More »

Building A PHP Database Connection Class From Scratch (using Singleton & ActiveRecord patterns)

Greetings folks. Tonight I’m studying on how to create a PHP Object-Oriented MySQL database connection class.  This will be reusable and able to be implemented in any database driven web application built with PHP & MySQL.  It uses the ActiveRecord and Singleton design patterns. I’m currently following this YouTube tutorial: Using OOP PHP to select,

Building A PHP Database Connection Class From Scratch (using Singleton & ActiveRecord patterns) Read More »

PHP View Utilities Code Debugger – A Wrapper For print_r function

Greetings folks. If you’ve ever gotten tired of having to type: [sourcecode language=”php” htmlscript=”true”] echo "<pre>"; print_r($some_var); echo "</pre>"; [/sourcecode] you are going to love the little debugger class I built. This is a very simple, basic class which doesn’t use patterns or anything fancy.  Actually, it may indeed use patterns that I’m not familiar

PHP View Utilities Code Debugger – A Wrapper For print_r function Read More »