Yearly Archives: 2016

Today’s Readings

The latest installment in my “Today’s Readings” series, offering my rants and thoughts based on findings from around the world-wide web. Happy reading! Continue reading

Converting WordPress to Web App: Adding Caching and Offline Support

In this fifth installment of my Converting WordPress to Web App series, I look into Adding Caching and Offline Support! And to do this, we’re gong to take advantage of the latest darling of the web development, the Service Worker. Service Workers allow us to monitor HTTP Requests and provide alternate functionality. This allows us to handle offline situations, and provide locally-cached assets rather than fetch them from the server. All of this gives our users a better experience, and that’s what it’s all about! So let’s get started! Continue reading

Today’s Readings

The latest installment in my “Today’s Readings” series, offering my rants and thoughts based on findings from around the world-wide web. Happy reading! Continue reading

Converting WordPress to Web App: Adding a Deployment Process

In this fourth installment of my Converting WordPress to Web App series, I look into Adding a Deployment Process! Rather than relying on the tried-and-true, manual FTP process, we continue our march into automation, recruiting a service to keep an eye on our repo and partially automate the process of moving our files from here to there! So let’s get started! Continue reading

Today’s Readings

The latest installment in my “Today’s Readings” series, offering my rants and thoughts based on findings from around the world-wide web. Happy reading! Continue reading

Today’s Readings

The latest installment in my “Today’s Readings” series, offering my rants and thoughts based on findings from around the world-wide web. Happy reading! Continue reading

Converting WordPress to Web App: Adding a Build Process

In this third installment of my Converting WordPress to Web App series, I look into Adding a Build Process! This is where the standard WordPress set-up really starts to quiver. Manual edits and file transfers can now cause conflicts or cause the loss of work, so we have to change our way of thinking, but the benefits are so huge, we cannot skip this step! So let’s get started! Continue reading

Today’s Readings

The latest installment in my “Today’s Readings” series, offering my rants and thoughts based on findings from around the world-wide web. Happy reading! Continue reading

How to add Critical CSS to a WordPress site

As part of my ongoing attempt to improve page load speeds and incorporate best practices, I have incorporated inlining critical CSS into a WordPress site via a Grunt task, documenting all the fun along the way! Continue reading

Converting WordPress to Web App: Adding Version Control

In this second installment of my Converting WordPress to Web App series, I look into Adding Version Control! And while using a repo for a WP site is not exactly a challenge, it is an important part of this process, and there are a few items to be aware of if you are new to Version Control for projects with a Build process. So let’s quickly run through this part! Continue reading