Join the latest VPN WhatsApp groups of 2025. These are the best VPN WhatsApp group links you can use to join the latest groups to catch up with others Are you looking for the latest VPN WhatsApp group links so that you can catch up with other VPN users online? Well, I’m going to share […]
I'm curious what the current best practices are for handling links—esp internal links w/in a website. Should they open in new tabs, or not? At my last job, our rule was "open in same tab for internal links; open in new tab if linking outside client website." My new job doesn't really have any kind […]
It’s always a gas when a good person doing good work gets a good deal. In this case, Jason’s viral WPGraphQL plugin has not only become a canonical WordPress plugin, but creator Jason Bahl is joining Automattic as well. I’m linking this up because it’s notable for a few reasons: Congrats, Jason! I didn’t know […]
I sat down with Heydon Pickering in the most recent episode of the Smashing Hour. Full transparency: I was nervous as heck. I’ve admired Heydon’s work for years, and even though we run in similar circles, this was our first time meeting. You know how you build some things up in your mind and sorta […]
Kate Kaplan hits on something over at Nielsen Norman Group’s blog that’s been bugging me: The challenge with this icon is sparkle ambiguity: Participants in our recent research study generally agreed that it represented something a little special. But, what was that something? And why was it special? That was less obvious. We encountered widely and wildly […]
Miriam Suzanne’s in the middle of a redesign of her personal website. It began in August 2022. She’s made an entire series out of the work that’s worth your time, but I wanted to call out the fifth and latest installment because she presents a problem that I think we can all relate to: But […]
A new tool from Eric Meyer, Brian Kardell, and Stephanie Stimac backed with Igalia’s support. Brian announced it on his blog, as did Eric, describing it like this: What BCD Watch does is, it grabs releases of the Browser Compatibility Data (BCD) repository that underpins the support tables on MDN and services like caniuse.com. It then analyzes what’s changed since […]
WordPress Automatic plugin can automatically post from AliExpress to WordPress and generate the affiliate links automatically. To generate the affiliate links, you will need to join an affiliate program as shown on the video 1- Visit this page and register if you are not already registered and make sure to register your site 2- Click […]
The post below was written by me, originally featured on the Plinky blog. To celebrate the launch of Plinky you can get 50% off of a yearly subscription by redeeming this offer: plinky.app/offer/REDPANDA There are few words I’ve ever said more excitedly than these: I want to tell you about my latest app, Plinky. Plinky […]
There are two ways of “linkifying” URLs in a TextView. First, as an XML attribute: <TextView … android:autoLink=”phone|web” /> and second, programmatically: TextView textView = (TextView) findViewById(R.id.text1); Linkify.addLinks(textView, Linkify.PHONE_NUMBERS | LINKIFY.WEB_URLS); In both the cases, the framework internally registers a LinkMovementMethod on the TextView that handles dispatching a ACTION_VIEW Intent when any link is clicked. This is why phone-numbers open in a dialer when clicked, […]