Seinfeld S03E12: The Red DotS04E13: The PickS06E10: The RaceS07E10: The GumS08E10: The Andrea DoriaS09E10: The Strike Friends S01E10: The One With The MonkeyS02E09: The One With Phoebe’s DadS03E10: The One Where Rachel QuitsS04E10: The One With The Girl From PoughkeepsieS05E10: The One With The Inappropriate SisterS05E11: The One With All The ResolutionsS06E10: The One With […]
Category Archives: Miscellaneous Debris
Drupal 8 configuration management workflow for multisites
I’m going to document how I handle a project at work with many, many (150+) multisites using Drupal 8 and configuration management. When thinking of what to write for this post, I pretended that this is the blog post I wish I read at the beginning of the migration process from Drupal 7 to Drupal […]
Emulsify Drupal PHPStorm configuration
I’m trying to make my tooling work as well as it can for me. This post is me documenting my configuration for working with PhpStorm on a Emulsify Drupal project. Your *.stories.js will be annoyingly underlined red unless you set the JavaScript language version to ECMAScript 6. Set the webpack configuration file to the webpack.dev.js […]
Serving files from a local CORS server for local development
Googling around, I found an awesome little script that allows you to transform python’s SimpleHTTPServer into a CORS enabled server. I copied the above gist into a folder, then within that made a “data” folder where I put CSVs and JSON files for local projects I’m working on. My CORS server file structure. Now, when […]
Deploying Eleventy to a S3 bucket using AWS CodeBuild
It’s no secret that I love automation and making my job more efficient. Netlify has been a game changer for deploying web apps and static sites. However, Netlify isn’t an ideal solution for deploying static sites to sub-directories because by default it deploys to the root of a domain. Maybe it’s possible to change this […]
FTP alternatives research
Ever since I tried Netlify, I have less patience for FTPing files to a server. I’m trying to automate as much of my work as possible to take out the possibility of human error and save time. Here are a few resources I’ve found that have helped me out immensely. Netlify – This is the […]
Video with a min-height
I’m currently developing a component for a project that has a video background with some moving type on top of it. It looks great except when it gets down to mobile. I’ve also encountered this problem when trying to make video heros; they look great on large screens but if you keep the video ratio […]
2019 year in review
2019 was a fairly uneventful year for me in terms of professional accomplishments, but nonetheless it was excellent in terms of challenging some old beliefs and reevaluating the way I am in the world. Web development My web development energy was mostly consumed by two things: Drupal 8 and JavaScript (specifically Vue). Vue To continue […]
A component-based theming case study
Often times I’ve seen articles talking about the benefits of components to developers, but less often I see articles talking about the benefits of components to site builders and editors. Component-based theming and site building is where the web is going. WordPress is there with Gutenberg’s block system. Drupal uses Paragraphs, Layout Builder, and probably […]
Eleventy syntax highlighting HTML
I’m currently in the process of moving my beloved WordPress blog over to Eleventy and it’s been a really awesome opportunity to learn some new things. During the migration, I noticed my syntax highlighting for HTML tags looked a little weird. The lines were highlighted and the text was all caps. Example syntax showing the […]