25 May 2026
Drupal.org aggregator
Talking Drupal: Talking Drupal #554 - Hey! Scott Tolinski!
Today we are talking about Web Education, Level up Tutorials, and life after Drupal with guest Scott Tolinski. We'll also cover Views Row SDC as our module of the week.
For show notes visit: https://www.talkingDrupal.com/554
Topics
- Scott Origin Story
- Level Up Tutorials Era
- Syntax Podcast Beginnings
- Growing The Audience
- Web Components Debate
- Leaving Drupal Behind
- What Drupal Still Nails
- Agency Project Highlights
- Booking Podcast Guests
- Scott Work Week Setup
- Running Syntax Team
- Canvas HTML Experiments
- Livestream Tools Challenges
- Funding Via Sentry
- Project Ideas Process
- Conference Speaking Journey
- Speaking Logistics Family
- Content Focus Passion
- Drupal Influence Today
- Mad CSS Tournament
- AI Coding Workflow
- What Excites Him Now
Resources
- Scott Tolinski's Website
- Levelup tutorials
- 1000th episode
- Web awesome
- Talk in Amsterdam - React summit
- This component could have been a class
- Sigraph conference site
- Too fast too furious learning things quickly
- JSNation
- Scratch
- Css tricks
- MadCss Championship
- State of ai survey
- Jazz.tools
- 0sync
- Graffiti
Guests
Scott Tolinski - tolin.ski stolinski
Hosts
Nic Laflin - nLighteneddevelopment.com nicxvan John Picozzi - epam.com johnpicozzi Bernardo Martinez - bernardm28
MOTW Correspondent
Martin Anderson-Clutz - mandclu.com mandclu
- Brief description:
- Have you ever wanted to use a Single Directory Component to format the output of a view on your Drupal website? There's a module for that
- Module name/project name:
- Brief history
- How old: created in Apr 2026 by James Shields (lostcarpark), a friend of the podcast
- Versions available: 1.0.0, which works with Drupal 11.3 and 12
- Maintainership
- Actively maintained
- Security coverage
- Number of open issues: 9 open issues, 3 of which are bugs, though two are marked as fixed in the latest release
- Usage stats:
- 4 sites
- Module features and usage
- With this module installed, when you select "Show" in the Format modal for any views display, you'll see a new option for "Single Directory Component", in addition to standard options like "Content view mode" or "Fields"
- You can then select which of the site's available SDCs you want to use to format each result, and then you can map fields defined in the view to the properties and slots defined for the selected component
- You can also place a view using this format into a Drupal Canvas layout by having a block display
- SDCs and Canvas are the new hotness in Drupal theming, so this module gives you some additional ways to incorporate theme into your own Drupal site
25 May 2026 6:00pm GMT
Dropsolid Experience Cloud: After the unbundling, the rebundling
AI is unbundling both agencies and software. The rebundling is coming - will it be open or closed? Open platforms offer freedom, sovereignty, and portability.
25 May 2026 8:07am GMT
24 May 2026
Drupal.org aggregator
#! code: Drupal 11: Building A Link Directory: Part 1
A problem I've been struggling with for a while now is managing my bookmarks. Every time I come across an interesting article I want to read, a good resource I want to keep, or a neat tool I want to try I create a bookmark.
Over time I have collected a large collection of bookmarks so when I add a new one to the list it gets lots in the pile. I've tried to create directories to keep "new" bookmarks or organise them into sections, but I always end up scrabbling to find them.
The problem is that web browsers don't allow you to categorise or search bookmarks so I can never find them again. Also when I swap browsers (which I have done twice this year) I end up having to migrate them over and set up synchronising between computers. This always removes the favicons of the sites so I have even more trouble finding the right link.
After losing yet another bookmark again recently I decided to do something about it. I realised that #! code was the best place for it as I'm always logged into the site, so I set about creating a link directory on the site. I didn't just want a big list of links though. In my mind a good link directory takes a screenshot of the site when the link is created so that it is easy to see what links are there from the screenshot of the original site.
In this article I will go through how I set up the link directory, how links are added, and how the site is able to take screenshots of the links as they are added to the directory.
Creating The Link Content Type
To store the links I created a content type called "Link" and added a few fields to it.
24 May 2026 6:07pm GMT