Nextide Blog: New Maestro Workflow Engine Release
The Drop Times: Join the Adventure with The Drop Times at DrupalCon Lille 2023!
Hey Drupalers,
We are super excited to share that The Drop Times is now the official media partner for DrupalCon Lille 2023! This means we'll be bringing the spirit and excitement of DrupalCon to enthusiasts around the globe, whether they can attend or not.
BRAINSUM: How it feels to install Drupal 10 as an UX designer
Is it easy for a newcomer to install Drupal 10 in a local environment in 2023? With notes and feelings during the installation, I will break down the steps taken to achieve the installation.
Attention, I'm a UX guy :)
Andy Blum's blog: Web Sustainability Guidelines
ImageX: New Development Settings Page in Drupal 10.1 Simplifies Front-end Experiences
Drupal 10.1 is a truly outstanding release for advancements in the front-end development realm. The first ground-breaking innovation that comes to mind is Single Directory Components (SDC), which burst onto the scene bringing brand-new practices for creating and managing UI components.
Drupal Association blog: A Farewell From Von
With a heart full of joy, sadness, pride, and premature nostalgia, I will be departing the Drupal Association on 21 September, 2023 and will no longer serve on the leadership team as your Director, Programs.
Over the last two years at the Drupal Association, I have had the honor to work with so many incredible change-makers in the non-profit and Open Source world. I’ve grown beyond what I ever imagined in my relationship with the free and open web, and I’m so grateful to this community for trusting me with leading many of the Drupal Association’s most critical programs. I’m also deeply grateful for the entire staff at the Drupal Association for trusting me to help build our workplace into one that is rooted in equity, access, and employee agency. Cultivating a healthy culture at a remote global organization is one of things I’m most proud of leaving behind, and I’m confident that the leadership team will continue to nurture our working environment to be one where everyone can thrive.
Thank you so much to the Drupal community and the DA staff/board for making the last 2 years some of the most fulfilling, empowering, and productive of my career. It's been my pleasure to work hand-in-hand with you all on DrupalCon, Discover Drupal, contribution enablement, and DEI best practices, and I will take all I've learned into the next chapter of my career. It is my hope that I’ve left you all in a good place, and have had a positive impact on your experience in the Drupal ecosystem. I have the utmost faith in my colleagues to continue to deliver high-impact, equitable programs that make Drupal amazing.
Feel free to find me on the Drupal Community Slack (vonreyes) in my last two weeks, or at vonreyes.carrd.co if you want to stay in touch in the future.
Left to right: Von with Nikki Flores; Von with Iwantha Lekamge; Von with Angie Sabin
File attachments: vonheader.png
Specbee: Simplified PHP Debugging with XDebug in Lando & DDev for Drupal
Electric Citizen: 2023 Twin Cities Drupal Camp is Here!
This week we're excited for the return of an in-person, Twin Cities Drupal Camp!
After several years of pandemic-related postponements, we're finally ready to begin the 10th annual conference, dedicated to all things Drupal and hosted in the Minneapolis-St.Paul area.
Talking Drupal: Talking Drupal #415 - Front End Performance
Today we are talking about Front End Performance, Common Front End Issues, and Ways to test and fix said issues with guest Andy Blum. We’ll also cover Webp Fallback Image as our module of the week.
For show notes visit: www.talkingDrupal.com/415
Topics- How do we break down front end performance
- How do we measure front end performance
- What are web vitals
- Standard, objective measurements
- First/Largest contentful paint
- Cumulative layout shift
- Time to Interactive/First Input Delay/Time To Next Paint/Total Blocking Time
- What are some common client side performance problems
- “Flickering”
- “Slow loading”
- Image size/resolution issues
- Render-blocking resources
- Screen jitters
- Memory leaks
- Memory Bloat
- How do tracking scripts affect performance
- Tools to help identify and resolve
- Drupal front end performance
- Talking Drupal #373 - Performance, Privacy, and the Open Web
- Web Vitals
- Orders of magnitude 100 - 1000 ms
- Orders of 10 source
- Instant
- Near instant
- Subsequent
- Talking Drupal #368 - Image Optimization
- MDN - How Browsers work
- Prefetch
- Web Page Test
- Front End Performance in Drupal
- architecture.lullabot.com article
Nic Laflin - nLighteneddevelopment.com nicxvan John Picozzi - epam.com johnpicozzi Andy Blum - andy-blum.com - andy_blum
MOTW CorrespondentMartin Anderson-Clutz - @mandclu WebP fallback image
- Brief description:
- Do you want your Drupal site to generate WebP images in the most optimal way? There are a number of modules for that, today we’re going to talk about…
- Brief history
- How old: created in Jun 2022 by pedrop
- Versions available: 1.0.0 and 1.1.0 versions available, both of which support Drupal 8, 9, and 10
- Maintainership
- Actively maintained
- Number of open issues
- 3, 2 of which are bugs
- Has test coverage
- Usage stats:
- Almost 252 sites
- Maintainer(s):
- Most recent release is by dj1999
- Module features and usage
- Anyone using testing tools like Lighthouse will have seen suggestions to use modern image formats like WebP, and with good reason. They allow for much smaller image files at the same quality, which means a better user experience and less bandwidth used by both the server and the visitor. WebP is a natural choice because it enjoys over 95% browser support, but many sites still care about that other 5%
- Drupal core added its own support for webp in 9.2, but without a fallback image, so browsers that don’t have WebP support have been out of luck
- Contrib modules have allowed for generating a webp image and a jpeg fallback, to allow for universal support. Typically they have worked by creating the WebP variant from the output of a core image style, so after an image has been saved as something like a jpeg. That means the resulting WebP can’t compress as well, and can show compression artifacts
- WebP Fallback Image is different because it allows Drupal core to generate the WebP image from the source file, and then creates the jpeg fallback.
- Also worth noting that this module only creates the jpeg fallback when it’s requested, so it doesn’t add to the storage of your website unless it’s needed