designMode
Every once in a while I stumble upon an API or browser setting that I can't believe ever existed.  Such examples can be seen in the numerous String.prototype properties such as bold, italics, and even blink, which wrap given string text in their representative HTML tags.  Bizarre.
It was recently brought to my attention the document.designMode API: an on|off switch that acts almost like a contentEdible attribute for the entire document.  You can toggle designMode by simply changing the setting:
document.designMode = "on";
With the designMode setting on, you can edit page text, drag and drop assets, and generally cause chaos on the page.  This is really nice for prototyping; I'd have loved to have known about this while doing client work.
While I see uses for this API, it does feel a bit bizarre.  I'd have liked to have known the origins of this property and its use cases.  Have ideas about how you'd use it?  Share!
![I’m an Impostor]() - This is the hardest thing I've ever had to write, much less admit to myself.  I've written resignation letters from jobs I've loved, I've ended relationships, I've failed at a host of tasks, and let myself down in my life.  All of those feelings were very... 
![Being a Dev Dad]() - I get asked loads of questions every day but I'm always surprised that they're rarely questions about code or even tech -- many of the questions I get are more about non-dev stuff like what my office is like, what software I use, and oftentimes... 
![Create a Simple News Scroller Using Dojo]() - 
My journey into Dojo JavaScript has been exciting and I'm continuing to learn more as I port MooTools scripts to Dojo.  My latest experiment is porting a simple new scroller from MooTools to Dojo.  The code is very similar!
The HTML
The news items... 
![dwImageProtector Plugin for jQuery]() - I've always been curious about the jQuery JavaScript library.  jQuery has captured the hearts of web designers and developers everywhere and I've always wondered why.  I've been told it's easy, which is probably why designers were so quick to adopt it NOT that designers... 
Hi David,
thanks for the trigger!
We digged deeper and unveiled the origin: https://twitter.com/slicknet/status/1180862121371811840
That was fun :-D