Author: Mark Fischer, Jr.
Posted: Feb 22, 2018
Categories: 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...
Author: Mark Fischer, Jr.
Posted: Aug 19, 2016
Categories: javascript
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...
Author: Mark Fischer, Jr.
Posted: Aug 7, 2016
Categories: vim
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>....