Expositus

Hello, I'm Mark Fischer. I am a Digital Experience Architect at ArcBest.

GitHubCodepenUnsplashLinkedIn

Poetry

Some poetry I’ve written in the past couple months. Morning Soft and warm The golden paths And shadows On the carpet. Quiet footsteps, It’s morning And the baby’s Still asleep. Loss Milky, fuzzy, sweet and soft The odor still remains entombed ‘Til mother lifting up the cloth Escapes the scent...

Getting started with the HTML5 notification API

I used the HTML5 notification API for the first time today, it’s actually much more simple than I expected. There are two functions you need to know about: // to ask for permission Notification.requestPermission(callback); // to display a notification new Notification(message); Before you actually display the notification, you need to...

Getting neosnippet to work with deoplete

It took me a bit of searching, but I finally figured out how to get neosnippet to work with deoplete. The issue is that the deoplete auto-complete trigger is <Tab>, which is also the neosnippet expansion trigger. So we want to change the neosnippet trigger to something else, like <C-k>....