Chris Blakley

Results 109 issues of Chris Blakley

When I use blur.js on a page and use the Chrome inspector, the inspector locks up and if left long enough, it will crash. Appears to only happen in Chrome,...

I apologize that this is more of a "discussion" type post than an issue, but I've experimented in code and searched the docs and issues and it does not appear...

https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries Allows for more easily understandable media queries such as: ```css @media ( width

Frontend (Style)

https://www.chromestatus.com/feature/5050913014153216 Stale-While-Revalidate is coming as a Cache Control feature, so when that happens, consider updating the bundled `.htaccess` file to use it. For reference, here is the current method of...

Backend (Server)

This offers better performance than `overflow: hidden` and is more reliable for specifying the `overflow-x` or `overflow-y`. https://caniuse.com/mdn-css_properties_overflow_clip

Frontend (Style)

https://caniuse.com/mdn-api_sanitizer ``` sanitizer.sanitize(input) ``` This would replace the need for this Nebula function: ```js nebula.sanitize = function(text){ return document.createElement('div').appendChild(document.createTextNode(text)).parentNode.innerHTML; }; ```

Plugin / Library / API
Frontend (Script)

https://caniuse.com/css-has This will certainly optimize a few things that currently require JavaScript to designate.

Frontend (Style)

...when it is available. ![Screen Shot 2022-05-14 at 12 13 22 AM](https://user-images.githubusercontent.com/6349678/168410316-d507f5b5-042b-4300-b8b2-21355d652c5c.png)

Frontend (Script)

A few features to watch for that will occur natively in CSS rather than needing a preprocessor like Sass: ### Custom Selectors: https://cssdb.org/#custom-selectors ```css @custom-selector :--heading h1, h2, h3, h4,...

Frontend (Style)

PHP Version Timeline: https://www.php.net/supported-versions.php PHP Release Notes: https://php.watch/versions Version Stats: https://stitcher.io/blog/php-version-stats-january-2023 ## PHP 7.4 Info & References https://php.watch/versions/7.4 https://stitcher.io/blog/new-in-php-74 - Release Date: November 2019 - Active Support Until November 2020...

:thought_balloon: Question / Research
Backend (Server)