Player FM - Internet Radio Done Right
13 subscribers
Checked 7d ago
اضافه شده در three سال پیش
محتوای ارائه شده توسط Matt Lawrence and Mike Karan, Matt Lawrence, and Mike Karan. تمام محتوای پادکست شامل قسمتها، گرافیکها و توضیحات پادکست مستقیماً توسط Matt Lawrence and Mike Karan, Matt Lawrence, and Mike Karan یا شریک پلتفرم پادکست آنها آپلود و ارائه میشوند. اگر فکر میکنید شخصی بدون اجازه شما از اثر دارای حق نسخهبرداری شما استفاده میکند، میتوانید روندی که در اینجا شرح داده شده است را دنبال کنید.https://fa.player.fm/legal
Player FM - برنامه پادکست
با برنامه Player FM !
با برنامه Player FM !
Progressive Web Apps
Manage episode 323038114 series 3328123
محتوای ارائه شده توسط Matt Lawrence and Mike Karan, Matt Lawrence, and Mike Karan. تمام محتوای پادکست شامل قسمتها، گرافیکها و توضیحات پادکست مستقیماً توسط Matt Lawrence and Mike Karan, Matt Lawrence, and Mike Karan یا شریک پلتفرم پادکست آنها آپلود و ارائه میشوند. اگر فکر میکنید شخصی بدون اجازه شما از اثر دارای حق نسخهبرداری شما استفاده میکند، میتوانید روندی که در اینجا شرح داده شده است را دنبال کنید.https://fa.player.fm/legal
In this episode we'll be discussing the ins and outs of progressive web apps including what they are, some of their functionality, and what challenges/limitations they still face.
Segment 1 - What is a PWA- As mentioned on the show a few times before, PWA stands for Progressive Web App, which is the evolution of the standard web app
- If you’re new to all of this, the breakdown is rather simple:
- Website - A website is a more basic presence on the web, it delivers content to a visitor (ie blog posts, news articles) Popular examples would be news websites, tech blogs, marketing websites, and small business sites.
- Web App - Functions similarly to a website, however, acts more like an app that you’d see on your phone that performs a function. For example, there are online image editors where you can upload your photo and edit it right in the browser. This editor is a web app because the user interacts with it and computing happens (via the photo edits), content isn’t being delivered in the same way as a written article, or marketing information to the user. Unlike apps that run on your phone however, web apps are limited by the browsers limitations meaning that natively they can’t be installed, and they generally don’t have access to certain functions that natively installed apps can take advantage of, usually due to permissions/security on a given device.
- Progressive Web App - PWAs are the natural evolution of the standard web app, whose arguably biggest feature is the ability to run offline through the usage of service workers. Basically, they’re a web app that runs in the browser like any other, however, they can be installed and start leveraging more of those features that natively installed Android apps can . They’re still limited by the same restraints you can see from other webview apps and they still run the same codebase as their web app counterparts, not the native Java like other Android apps. In addition, they aren’t in a centralized location like the apps found in the Google Play store, you generally have to grab them from the web app’s website. If you visit the Twitter web app from your Chrome browser on Android you’ll see an “Add to Home Screen” button, if you do that you’re installing the Twitter PWA, but if you look up Twitter in the Google Play Store that’s a different native app
- PWAs are getting more and more powerful and a lot of the walled off features are being broken down. Just a few short years ago you couldn’t get push notifications from your browser, now they’re rather commonplace for chat and news sites.
- Accessing hardware was also an issue years ago, getting access to things like a webcam or a microphone, but now you can use a chat app like Skype right in the browser via video or voice chat - these limitations are quickly being done away with. Things like NFC access, however, is still a limitation last time I checked.
- In terms of accessing PWAs, as mentioned before, there isn’t a centralized location for them all. Unlike on Android where the Google Play Store houses the vast majority of the available native apps, PWAs are generally downloaded from the web app’s website. However, even this limitation is starting to change with new ways to list PWAs in both the Google Play Store and Microsoft Store starting to make their way into the developer toolbelt
- With these restrictions breaking down the main limitation is really with the codebase. Since a PWA isn’t written in the native language of a given platform, but rather runs more like a website/web app, Javascript does come with some limitations namely that it is a single-threaded process. However, there are workarounds for this, and Javascript itself is becoming more user friendly and more functional with every release - just like PWAs
- From my experience, iOS has “less adopted” PWAs as of right now, however, I can see that limitation being lifted at some point in the near future in my opinion. One example would be that No BS News for Reddit can be installed on Android phones in it’s demo form right now, but that’s not the case on an iPhone. However, the app does still function in the browser which shows off the versatility of a PWA
- Another thing to keep in mind is that a lot of corporations will have strict policies on what they support. For example, some places may say that if a certain browser’s usage worldwide is above 2% then that browser must be supported. This creates a problem because oftentimes it’s an older version of a browser like Internet Explorer, and since PWAs are so new, there will be severe limitations on what a developer can do if he needs features to work on such old software
- In conclusion, a PWA is the evolution of the standard web app. It runs in the browser like any other website/web app, but has additional features like offline functionality and the ability to be installed. PWAs are quickly approaching the functionality of standard native apps, which is good news for small developer teams that have a web app and no time to develop a completely different native app for smartphones. The real question is whether PWAs will take over native apps, or will they just be another option for developers?
- Here are a couple links comparing and contrasting PWA functionality vs native app functionality
- Quite a simple process if your application doesn’t make any external api calls
- Just need a manifest json file that gives browser information such as app names and icon locations
- Web app must be served with HTTPS and have a basic service worker
- What that essentially accomplishes is allowing supported browsers/operating systems to detect your app as a PWA and cache it to be served from cache instead of the network.
- The power of PWA’s really comes with the service worker implementation.
- With service workers we create cached server calls, so if you hit a external API or your own servers API the service worker can cache them and then serve the responses from the cache instead of the network API calls.
- You can also set up the service worker to detect changes and update the caches with those changes (this has caveats)
- With vuejs specifically, the vue cli can be used to create a app with PWA functionality already built in or even add PWA functionality to an existing app
- This creates all the files necessary for the browser to detect your website as a PWA
- You’ll need to edit the information in your manifest file and add any functionality to your service worker you need other than what it already has built in which is
- Caching all css, js, img and html files that are in the application
- Essentially this allows a PWA to run more like a native application in the sense that it doesn’t rely on the speed or presence of a network connection
- The PWA landscape is always changing and evolving so features are constantly being worked on and usually added from browser to browser
- Currently PWA’s are supported on every major browser to some extent. Chrome has the deepest integration and support for PWA’s
- Some really cool features that chrome gives you is the ability to add a PWA to your desktop/home screen on all operating systems but iOS. So on Android and windows for instance if the application is a PWA you can go into the 3 dot menu in the top right corner and there will be an option to Install in there. This will add it to your application and for most purposes will behave just like a native application of that operating system.
- Great use cases for this can be internal business logic apps, like if a company needs a application for their new employees to take a safety course it can be easily made as a PWA.
- The large advantage of PWA’s to development teams is how quickly they can be built, deployed and tested across multiple platforms.
- Only needing a small development team to launch a application is a huge advantage for small startups and businesses, as it allows for much quicker and agile development
- The greatest benefit to users is the speed of the applications, since the application can be mostly served from cache the user won’t see as much loading going from page to page
- There are of course some inconsistencies with PWA’s currently. iOS being the main one
- On iOS most crucial features are supported, like service workers but with quite a few caveats
- No background syncing,
- no push notifications,
- no app theming
- No prompt to install from the browser
- and the major one is that service worker events are not supported. So we can’t get information such as new update available messaging
- That was a huge challenge recently because one of the applications I’m currently being contracted to work on is a PWA that has to run on iPads. Not having a consistent update experience was a major problem for testing and deploying updates. There was a work around which involved setting a workbox (framework for creating service workers) option called skipwaiting to true, which essentially now checks for new updates on every single load and loads them right away.
- Disadvantage to this is a larger network call is made on every load unless no network is detected
- PWA’s also use a slightly different renderer on iOS then safari and therefore has some minor inconsistencies that need to be QA’d and fixed
- Thankfully most issues can be worked around and it still provides for a much better experience then the browser version
- Resources:
- The trend among smartphones for 2018/2019 are:
- Very tall, with an aspect ratio of something like 2:1
- Very high screen to body ratio - almost no bezels
- Have notches or cutouts in the screen to accommodate for front-facing cameras and sensors
- These trends create a major set of UX/UI issues that affect web developers, app developers, and device manufacturers because they need to ensure that content is not being rendered right where a piece of the screen is missing, not to mention create some sort of elegant solution to allow the UI to “avoid” the notch or cutout without annoying the user
- In addition, in recent years vertical video, photos, and portrait apps have been on the rise because phones are generally easier to hold in the portrait orientation, but since they’ve been getting taller and taller, it’s difficult for users to reach any UI elements at the top of the screen - especially with one hand
- We’ve seen manufacturers try and combat this with various iterations of one-handed modes which generally shrink the screens, or with UI redesigns that makes UI elements favour the bottom of the screen
- Gestures are starting to take off, allowing users to access the notification shade at the top of the screen by just swiping down anywhere on the home screen, among other innovative gesture functions
- From this information there are a couple of UX issue that stand out to me
- Notches and cutouts are all different on different devices, and they are handled differently by different manufacturers
- The bottom of the screen is getting very crowded with things like the android nav bar, the chrome bar (depending on if you use that UI layout), and then navbars for touch interfaces on websites
- Gestures and UX workarounds for one-handed use are adding to the learning curve of devices that were once rather easy to use
You can find us on...
395 قسمت
Manage episode 323038114 series 3328123
محتوای ارائه شده توسط Matt Lawrence and Mike Karan, Matt Lawrence, and Mike Karan. تمام محتوای پادکست شامل قسمتها، گرافیکها و توضیحات پادکست مستقیماً توسط Matt Lawrence and Mike Karan, Matt Lawrence, and Mike Karan یا شریک پلتفرم پادکست آنها آپلود و ارائه میشوند. اگر فکر میکنید شخصی بدون اجازه شما از اثر دارای حق نسخهبرداری شما استفاده میکند، میتوانید روندی که در اینجا شرح داده شده است را دنبال کنید.https://fa.player.fm/legal
In this episode we'll be discussing the ins and outs of progressive web apps including what they are, some of their functionality, and what challenges/limitations they still face.
Segment 1 - What is a PWA- As mentioned on the show a few times before, PWA stands for Progressive Web App, which is the evolution of the standard web app
- If you’re new to all of this, the breakdown is rather simple:
- Website - A website is a more basic presence on the web, it delivers content to a visitor (ie blog posts, news articles) Popular examples would be news websites, tech blogs, marketing websites, and small business sites.
- Web App - Functions similarly to a website, however, acts more like an app that you’d see on your phone that performs a function. For example, there are online image editors where you can upload your photo and edit it right in the browser. This editor is a web app because the user interacts with it and computing happens (via the photo edits), content isn’t being delivered in the same way as a written article, or marketing information to the user. Unlike apps that run on your phone however, web apps are limited by the browsers limitations meaning that natively they can’t be installed, and they generally don’t have access to certain functions that natively installed apps can take advantage of, usually due to permissions/security on a given device.
- Progressive Web App - PWAs are the natural evolution of the standard web app, whose arguably biggest feature is the ability to run offline through the usage of service workers. Basically, they’re a web app that runs in the browser like any other, however, they can be installed and start leveraging more of those features that natively installed Android apps can . They’re still limited by the same restraints you can see from other webview apps and they still run the same codebase as their web app counterparts, not the native Java like other Android apps. In addition, they aren’t in a centralized location like the apps found in the Google Play store, you generally have to grab them from the web app’s website. If you visit the Twitter web app from your Chrome browser on Android you’ll see an “Add to Home Screen” button, if you do that you’re installing the Twitter PWA, but if you look up Twitter in the Google Play Store that’s a different native app
- PWAs are getting more and more powerful and a lot of the walled off features are being broken down. Just a few short years ago you couldn’t get push notifications from your browser, now they’re rather commonplace for chat and news sites.
- Accessing hardware was also an issue years ago, getting access to things like a webcam or a microphone, but now you can use a chat app like Skype right in the browser via video or voice chat - these limitations are quickly being done away with. Things like NFC access, however, is still a limitation last time I checked.
- In terms of accessing PWAs, as mentioned before, there isn’t a centralized location for them all. Unlike on Android where the Google Play Store houses the vast majority of the available native apps, PWAs are generally downloaded from the web app’s website. However, even this limitation is starting to change with new ways to list PWAs in both the Google Play Store and Microsoft Store starting to make their way into the developer toolbelt
- With these restrictions breaking down the main limitation is really with the codebase. Since a PWA isn’t written in the native language of a given platform, but rather runs more like a website/web app, Javascript does come with some limitations namely that it is a single-threaded process. However, there are workarounds for this, and Javascript itself is becoming more user friendly and more functional with every release - just like PWAs
- From my experience, iOS has “less adopted” PWAs as of right now, however, I can see that limitation being lifted at some point in the near future in my opinion. One example would be that No BS News for Reddit can be installed on Android phones in it’s demo form right now, but that’s not the case on an iPhone. However, the app does still function in the browser which shows off the versatility of a PWA
- Another thing to keep in mind is that a lot of corporations will have strict policies on what they support. For example, some places may say that if a certain browser’s usage worldwide is above 2% then that browser must be supported. This creates a problem because oftentimes it’s an older version of a browser like Internet Explorer, and since PWAs are so new, there will be severe limitations on what a developer can do if he needs features to work on such old software
- In conclusion, a PWA is the evolution of the standard web app. It runs in the browser like any other website/web app, but has additional features like offline functionality and the ability to be installed. PWAs are quickly approaching the functionality of standard native apps, which is good news for small developer teams that have a web app and no time to develop a completely different native app for smartphones. The real question is whether PWAs will take over native apps, or will they just be another option for developers?
- Here are a couple links comparing and contrasting PWA functionality vs native app functionality
- Quite a simple process if your application doesn’t make any external api calls
- Just need a manifest json file that gives browser information such as app names and icon locations
- Web app must be served with HTTPS and have a basic service worker
- What that essentially accomplishes is allowing supported browsers/operating systems to detect your app as a PWA and cache it to be served from cache instead of the network.
- The power of PWA’s really comes with the service worker implementation.
- With service workers we create cached server calls, so if you hit a external API or your own servers API the service worker can cache them and then serve the responses from the cache instead of the network API calls.
- You can also set up the service worker to detect changes and update the caches with those changes (this has caveats)
- With vuejs specifically, the vue cli can be used to create a app with PWA functionality already built in or even add PWA functionality to an existing app
- This creates all the files necessary for the browser to detect your website as a PWA
- You’ll need to edit the information in your manifest file and add any functionality to your service worker you need other than what it already has built in which is
- Caching all css, js, img and html files that are in the application
- Essentially this allows a PWA to run more like a native application in the sense that it doesn’t rely on the speed or presence of a network connection
- The PWA landscape is always changing and evolving so features are constantly being worked on and usually added from browser to browser
- Currently PWA’s are supported on every major browser to some extent. Chrome has the deepest integration and support for PWA’s
- Some really cool features that chrome gives you is the ability to add a PWA to your desktop/home screen on all operating systems but iOS. So on Android and windows for instance if the application is a PWA you can go into the 3 dot menu in the top right corner and there will be an option to Install in there. This will add it to your application and for most purposes will behave just like a native application of that operating system.
- Great use cases for this can be internal business logic apps, like if a company needs a application for their new employees to take a safety course it can be easily made as a PWA.
- The large advantage of PWA’s to development teams is how quickly they can be built, deployed and tested across multiple platforms.
- Only needing a small development team to launch a application is a huge advantage for small startups and businesses, as it allows for much quicker and agile development
- The greatest benefit to users is the speed of the applications, since the application can be mostly served from cache the user won’t see as much loading going from page to page
- There are of course some inconsistencies with PWA’s currently. iOS being the main one
- On iOS most crucial features are supported, like service workers but with quite a few caveats
- No background syncing,
- no push notifications,
- no app theming
- No prompt to install from the browser
- and the major one is that service worker events are not supported. So we can’t get information such as new update available messaging
- That was a huge challenge recently because one of the applications I’m currently being contracted to work on is a PWA that has to run on iPads. Not having a consistent update experience was a major problem for testing and deploying updates. There was a work around which involved setting a workbox (framework for creating service workers) option called skipwaiting to true, which essentially now checks for new updates on every single load and loads them right away.
- Disadvantage to this is a larger network call is made on every load unless no network is detected
- PWA’s also use a slightly different renderer on iOS then safari and therefore has some minor inconsistencies that need to be QA’d and fixed
- Thankfully most issues can be worked around and it still provides for a much better experience then the browser version
- Resources:
- The trend among smartphones for 2018/2019 are:
- Very tall, with an aspect ratio of something like 2:1
- Very high screen to body ratio - almost no bezels
- Have notches or cutouts in the screen to accommodate for front-facing cameras and sensors
- These trends create a major set of UX/UI issues that affect web developers, app developers, and device manufacturers because they need to ensure that content is not being rendered right where a piece of the screen is missing, not to mention create some sort of elegant solution to allow the UI to “avoid” the notch or cutout without annoying the user
- In addition, in recent years vertical video, photos, and portrait apps have been on the rise because phones are generally easier to hold in the portrait orientation, but since they’ve been getting taller and taller, it’s difficult for users to reach any UI elements at the top of the screen - especially with one hand
- We’ve seen manufacturers try and combat this with various iterations of one-handed modes which generally shrink the screens, or with UI redesigns that makes UI elements favour the bottom of the screen
- Gestures are starting to take off, allowing users to access the notification shade at the top of the screen by just swiping down anywhere on the home screen, among other innovative gesture functions
- From this information there are a couple of UX issue that stand out to me
- Notches and cutouts are all different on different devices, and they are handled differently by different manufacturers
- The bottom of the screen is getting very crowded with things like the android nav bar, the chrome bar (depending on if you use that UI layout), and then navbars for touch interfaces on websites
- Gestures and UX workarounds for one-handed use are adding to the learning curve of devices that were once rather easy to use
You can find us on...
395 قسمت
همه قسمت ها
×H
HTML All The Things - Web Development, Web Design, Small Business

What happens when a real developer uses AI to build something in a language and toolset they’ve never touched before? In this episode, Matt shares the story of how he created a free, custom-coded Google News sitemap generator using Node.js, GitHub Actions, and the Webflow API—with help from AI. The catch? He had no prior experience with any of those tools. Show Notes: https://www.htmlallthethings.com/podcasts/what-happens-when-a-real-developer-starts-vibe-coding Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

Ever wonder what a developer really does at a tech startup? In this episode, we break down a full week—from scattered meetings and deep work to deployments, sprint planning, and handling the chaos of outages and DDoS attacks. Get a behind-the-scenes look at balancing coding, team support, and product planning in a fast-moving environment. Show Notes: https://www.htmlallthethings.com/podcasts/week-in-the-life-of-a-developer-at-a-tech-startup Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

In this episode, Mike sits down with Anthony Shew from Turborepo to talk all things monorepos. They explore the pros and cons of monorepos versus traditional multi-repo setups, and how Turborepo compares to other tools like pnpm workspaces and Nx. Anthony shares tips on getting the most out of your monorepo, common pitfalls to avoid, and where monorepos might not be the right fit. They also dive into how AI tools like Cursor and Windsurf benefit from having full codebase context—and whether that context can become a downside. To wrap things up, Anthony gives a look at what’s next for Turborepo. Show Notes: https://www.htmlallthethings.com/podcasts/turborepo-changed-how-i-use-monorepos-w-anthony-shew Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

In this edition of Web News, we dive into our personal coding companions — from chill playlists and brain-boosting podcasts to TV shows that keep us motivated (or distracted 😅). Whether you're team lo-fi, true crime, or total silence, we've got takes. Plus, we explore how background content affects productivity and creativity. Show Notes: https://www.htmlallthethings.com/podcasts/do-you-listen-to-music-while-you-code Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

In this episode, Matt and Mike explore what it takes to transition from being a developer employee to becoming a tech founder or business owner. They break down how your personal situation—time, money, dependents, and hobbies—can impact your readiness to make the leap. This isn't just about technical skill. You’ll need to think strategically, handle business admin, understand local laws, and price your services or products properly. Plus, they ask a critical question: do you actually want to own a business, or would a different job be a better fit? Show Notes: https://www.htmlallthethings.com/podcasts/should-you-go-solo-transitioning-from-developer-to-entrepreneur Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

Are you constantly bombarded by notifications? In this episode of Web News, Matt and Mike dive into the growing problem of digital overwhelm — from buzzing phones to nonstop pings — and how minimal phones might be the answer. We explore distraction-free devices like the Minimal Phone and Light Phone 3, how they work, and whether switching to one could help you focus, reduce anxiety, and reclaim your time. 📱 Is it time to ditch your smartphone? Show Notes: https://www.htmlallthethings.com/podcasts/drowning-in-notifications-minimal-phones-might-save-you Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

In this episode, Matt and Mike explore the 80/20 rule and how developers can use it to boost productivity, reduce burnout, and prioritize what matters—plus how AI is reshaping the rule itself. Show Notes: https://www.htmlallthethings.com/podcasts/what-the-80-20-rule-really-means-for-web-developers Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

Endless ideas, abandoned projects, and a pile of unused domain names—sound familiar? In this episode, Matt and Mike explore how developers can avoid false starts and take meaningful first steps when launching new projects. They dig into why buying a domain name might feel productive (but often isn’t), when it's actually the right move, and how jumping into real problem-solving helps build momentum and deeper focus. Show Notes: https://www.htmlallthethings.com/podcasts/the-first-step-trap-why-buying-domain-names-isnt-starting-your-project Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

In this edition of Web News, Matt and Mike discuss the rapidly evolving world of AI, and AI tooling. As web developers, the guys are no stranger to online tools that promise to do everything under the sun - but lately it feels like an infinite amount of new ones are coming out all the time due, powered by AI. Is it possible to keep up with everything that's coming out? Should you even bother trying? Show Notes: https://www.htmlallthethings.com/podcasts/overwhelmed-by-ai-youre-not-alone Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

1 How To Get A Web Development Job in 2025 1:17:04
1:17:04
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:17:04
In this episode, Matt and Mike talk about the current state of the dev world—layoffs, AI tools, and the unstable job market—while highlighting the real opportunities that still exist. They share actionable ways to stand out, build useful projects, network, and niche down to land work in a tough economy. Show Notes: https://www.htmlallthethings.com/podcasts/how-to-get-a-web-development-job-in-2025 Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

In this episode of HTML All The Things , Mike chats with William Madden, Developer Advocate at Prisma, to uncover what makes modern ORMs essential in today's development workflows. They break down what an ORM is, why developers should care, and how Prisma sets itself apart in the crowded ORM space. William also dives into the technical challenges of building an ORM, the reasoning behind Prisma’s shift from Rust binaries to TypeScript, and what’s on the horizon for the platform. Whether you’re deep in backend development or just getting started with databases, this episode offers insights you won’t want to miss. Show Notes: https://www.htmlallthethings.com/podcasts/why-prisma-is-still-the-best-orm-w-william-madden Try out Prisma: https://www.prisma.io/docs/getting-started Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

As developers and business owners, it’s easy to get stuck in the daily grind — coding, responding to emails, handling support — and forget to actually build the business. In this episode, Matt and Mike dive into what it really means to work on your business instead of just in it. The guys explore strategies to avoid becoming your own overworked employee, how to delegate or automate low-leverage tasks, and the mindset shifts that help you move from operator to true owner. Inspiration for this episode came from the guys' own experience regarding their business for the past few years, where the workload from clients has overwhelmed their day-to-day, leaving strategy and business development completely stagnant. Show Notes: https://www.htmlallthethings.com/podcasts/work-on-your-business-not-just-in-it Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Why Flip Phones Still Matter in 2025 | w/ Tom Barrasso 1:16:40
1:16:40
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:16:40
In this episode, Matt sits down with Tom Barrasso from Cloud Phone to explore why flip phones are still relevant in 2025. They discuss the rise of digital detox, who’s using feature phones today, and how developers can still build apps for low-spec devices. From KaiOS and Cloud Phone to nostalgia and screen-time reduction—this is a deep dive into the flip phone revival and the tech powering it. Show Notes: https://www.htmlallthethings.com/podcasts/why-flip-phones-still-matter-in-2025-w-tom-barrasso Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

Even if you’re not "doing DevOps," understanding it can seriously level up your development career. In this episode, Matt and Mike dive into why every web developer should care about DevOps practices, even at a basic level. They explore how deployment pipelines work, how Git supports safe code changes, and how you can prevent and fix production issues faster. You'll hear real-world examples showing how small habits—like writing good commit messages, checking build logs, and knowing when to rollback—can make you a better teammate and a more reliable developer. Whether you're working with GitHub Actions, Vercel, Jenkins, or another CI/CD system, this episode will help you work smarter, troubleshoot faster, and stay calm under pressure. Show Notes: https://www.htmlallthethings.com/podcasts/what-junior-web-developers-need-to-know-about-devops Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

1 The Hype Trap: Why Cutting Edge Isn’t Always the Best Choice 1:14:19
1:14:19
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:14:19
In this episode, Matt and Mike explore the temptation to always chase the latest and greatest in tech—whether it's new frameworks, tools, or workflows that dominate developer discourse. While the buzz can be exciting, blindly adopting bleeding-edge technology can lead to serious downsides like poor documentation, tiny communities, and unstable tools. The guys discuss how these risks affect both personal and client projects, when it's actually worth going cutting-edge, and why it's perfectly okay (and often smarter) to use tried-and-true tech. If you've ever felt FOMO seeing everyone jump to the next hot thing, this one's for you. Show Notes: https://www.htmlallthethings.com/podcasts/the-hype-trap-why-cutting-edge-isnt-always-the-best-choice 20% off Scrimba with our affiliate link. Full details in the show notes.…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Startups vs Big Tech for Web Developers 1:22:33
1:22:33
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:22:33
In this episode, Mike shares his theory that AI will make it easier to prototype and launch startups, potentially opening more opportunities for developers outside of big tech. Matt and Mike compare working in startups versus big tech across several categories like career growth, pace, culture, job security, and more. Drawing on personal experiences and industry research, they explore how each environment can shape a developer’s career—and how AI might change the game. Show Notes: https://www.htmlallthethings.com/podcasts/startups-vs-big-tech-for-web-developers…
H
HTML All The Things - Web Development, Web Design, Small Business

1 The Full Stack of a Website: What Clients Often Overlook 1:05:41
1:05:41
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:05:41
In this episode, Matt and Mike explore the full stack of a website, highlighting what clients often overlook when requesting a new site. While it's easy to focus on what’s visible—like product pages, landing pages, and design elements—the real complexity lies beneath the surface. A professional website requires thoughtful planning around content management systems (CMS), performance optimization, SEO, hosting infrastructure, and security. They dive into how CMS setups vary across industries, how performance issues can impact user experience and search rankings, and why hosting choices matter for scalability and deployment workflows. The conversation also touches on spam protection, third-party integrations, and the ongoing nature of SEO and content strategy. Whether you're a developer trying to educate your clients, or a business owner looking to understand what really goes into a website build, this episode breaks down why a website is so much more than what you see on the screen. Show Notes: https://www.htmlallthethings.com/podcasts/the-full-stack-of-a-website-what-clients-often-overlook…
H
HTML All The Things - Web Development, Web Design, Small Business

On this episode of HTML All The Things, Jonathan Schor joins us to discuss why coding may be the next essential skill for kids in our tech-driven world. We explore the gamification of coding education, how it engages young learners, and why it could transform traditional teaching methods. Jonathan shares insights on whether coding should be part of elementary school curriculums and addresses concerns about AI’s impact on the future of coding careers. Plus, we look into CodeMonkey’s exciting plans and how it’s shaping the future of coding education. Show Notes: https://www.htmlallthethings.com/podcasts/should-kids-learn-to-code-with-jonathan-schor…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Top 5 Code Editors for Web Developers 1:05:27
1:05:27
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:05:27
Choosing the right code editor can make or break a web developer's workflow. In this episode, we dive into the Top 5 Code Editors for Web Developers—exploring their strengths, quirks, and everything in between. From the widely-loved Visual Studio Code to the blazing-fast newcomer Zed, we discuss which editors could suit your coding style. Whether you're a fan of Vim's keyboard mastery, WebStorm's all-in-one features, or experimenting with modern tools like Cursor, there's something here for everyone. Tune in to find the perfect fit for your development journey! Show Notes: https://www.htmlallthethings.com/podcasts/top-5-code-editors-for-web-developers…
H
HTML All The Things - Web Development, Web Design, Small Business

1 My Real-World SEO Checklist for New Websites 1:16:55
1:16:55
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:16:55
In this episode, Matt walks through his real-world SEO checklist for launching new websites—based on the process he followed while preparing a recent client site for launch. He covers everything from SEO titles, meta descriptions, and OG images to page performance, link structure, and content considerations. Along the way, Mike shares some of his own experiences, tools, and hard-earned lessons—like why automatic OG image generation can be a pain and how redirects can impact link equity. Whether you're prepping a site for launch or just want to tighten up your SEO workflow, this episode is packed with practical, real-world advice. Show Notes: https://www.htmlallthethings.com/podcasts/my-real-world-seo-checklist-for-new-websites…
H
HTML All The Things - Web Development, Web Design, Small Business

1 AI in Developer Education: Scrimba's Instant Feedback & Backend Courses w/ Per Borgen 1:04:54
1:04:54
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:04:54
Today we had the pleasure of sitting down with Per Borgen to get his insights and opinions on landing a developer job despite current market challenges. We also got his opinions on how AI is shaping both developer productivity and developer education. As the CEO of Scrimba, an online coding school with over 1 million users, Per has unique insights into not only web development, but also the challenges that aspiring and junior developers face as they learn and enter the job market. If you’re looking at getting a job in web development this episode is packed with tips and tricks to help you succeed as you learn and start to earn. Show Notes: https://www.htmlallthethings.com/podcasts/ai-in-developer-education-scrimbas-instant-feedback-new-backend-courses-w-per-borgen…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Corporate Burnout: How the CIA Invented Your 9 to 5 1:29:54
1:29:54
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:29:54
Modern office work is a dystopian nightmare, but did you know a WWII sabotage manual describes it perfectly? In this episode, Matt and Mike explore the eerie similarities between workplace inefficiency and deliberate sabotage, diving into burnout, corporate jargon, and the illusion of productivity. From pointless meetings to overcomplicated approval processes, we break down the hidden forces making work feel meaningless. Inspired by the Burnout - When does work start feeling pointless? documentary, we also discuss the origins of corporate buzzwords, ineffective management, and the promises of career success that no longer hold true. If you've ever felt drained by work, this one's for you! Show Notes: https://www.htmlallthethings.com/podcasts/corporate-burnout-how-the-cia-invented-your-9-to-5 Thanks to Magic Mind for sponsoring today's episode! Get up to 25% off their new gummies by using our affiliate link ( https://magicmind.com/HTMLGM ), or promo code (HTML25).…
H
HTML All The Things - Web Development, Web Design, Small Business

In this episode Mike had the pleasure of sitting down with Maximilian Schwarzmüller to discuss developer education. Before the days of AI, developers would typically go to a traditional school program, do a Udemy course, or maybe take part in a bootcamp. In 2025, the AI era has shifted a lot of things, including developer education into a new space. Mike and Max explore the evolution of developer education, the role of AI in your 2025 learning journey, and what skills (if any) you should prioritize in these new exciting times. Show Notes: https://www.htmlallthethings.com/podcasts/developer-education-w-maximilian-schwarzmuller…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Vibe Coding, Cursor Vs Windsurf, Firefox Did What?! 1:10:48
1:10:48
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:10:48
Dive into the comeback of Web News as we discuss popular AI coding tools, the new "vibe coding" trend, and Firefox's new TOS changes. Coding with AI has become commonplace over the past couple years with consumer tools like ChatGPT showing off their coding competence. As professional developers adopt AI into the workplace they may start with ChatGPT, but will likely adopt coding-specific tools such as GitHub Copilot, Cursor, and Windsurf. Vibe Coding is a new trend where you fire up an AI assistant and let it do the coding work for you through human language prompts - opening up rapid prototyping for experienced developers and helping newbies have their ideas realized (to some extent). Firefox has made headlines recently regarding changes to their TOS regarding privacy - are they still the "privacy browser" that many users trusted them to be? Show Notes: https://www.htmlallthethings.com/podcasts/vibe-coding-cursor-vs-windsurf-firefox-did-what Thanks to Magic Mind for sponsoring today's episode! Get up to 25% off their new gummies by using our affiliate link ( https://magicmind.com/HTMLGM ), or promo code (HTML25).…
H
HTML All The Things - Web Development, Web Design, Small Business

In this episode we had the pleasure of sitting down with Kent C. Dodds, a celebrated educator, open-source advocate, and React expert. He’s the creator of the Epic Web conference starting on March 25th 2025 and has created some of the best React workshops and courses out there. Together, we dove deep into how AI has made it almost impossible to apply to jobs the traditional way and if junior developers should turn off their AI chatbots when learning. We also covered what framework you should be learning and the roadmap for learning it. (Spoiler alert... it’s React). Show Notes: https://www.htmlallthethings.com/podcasts/ai-has-broken-the-web-developer-job-market-w-kent-c-dodds…
H
HTML All The Things - Web Development, Web Design, Small Business

1 How to Be Successful as a Remote Developer 1:18:03
1:18:03
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:18:03
Dive into this episode of HTML All the Things as hosts Matt and Mike unlock the secrets to thriving in the world of remote work! They break down every model—from synchronous and asynchronous setups to hybrid and freelance paths—so listeners can find the perfect match for their lifestyle and personality. Matt and Mike share actionable strategies for boosting productivity, covering everything from time management and work environment hacks to mastering communication and leveraging top tools like Slack, Notion, and Zoom. The hosts also tackle the challenges unique to remote work, such as isolation, miscommunication, and the elusive work-life balance, offering practical advice on overcoming these hurdles. Plus, they provide expert tips on landing remote web development jobs, building a standout portfolio, acing remote interviews, and spotting red flags in job listings. Whether you're a seasoned remote pro or just starting out, this episode is packed with insights to help you succeed in the ever-evolving remote landscape. Show Notes: https://www.htmlallthethings.com/podcasts/how-to-be-successful-as-a-remote-developer…
H
HTML All The Things - Web Development, Web Design, Small Business

In this episode, Matt and Mike tackle real-world SEO client scenarios and how to solve them. From small business owners struggling to be found online to demanding clients who just want to be “#1 on Google,” we break down the biggest SEO challenges and what it actually takes to improve rankings. We’ll cover: Helping local businesses improve their online visibility, managing client expectations when it comes to SEO, fixing common website and Google My Business mistakes, and the right way to approach SEO for long-term success. If you've ever worked with clients on SEO—or if you're trying to improve your own business’s search rankings—this episode is packed with practical advice you can use. Show Notes: https://www.htmlallthethings.com/podcasts/i-want-to-rank-1-on-google-how-to-solve-real-seo-problems…
H
HTML All The Things - Web Development, Web Design, Small Business

1 JavaScript Tech We Loved (But Don’t Use as Much Anymore) 1:12:18
1:12:18
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:12:18
Web developers use a lot of tools to get the job done and unfortunately, those tools sometimes get dropped in favor of newer and shinier ones. In this episode Matt and Mike take a trip down memory lane to revisit and discuss some of the JavaScript tools that have since lost presence in the zeitgeist. These tools include jQuery, MomentJS, Apache Cordova, and more! Some of these tools, while not as spry as they once were, are still fully supported and have new versions in development. While they might not be exciting enough to make headlines on the daily, many are still viable tools projects depending on a project's needs, wants, and age. Show Notes: https://www.htmlallthethings.com/podcasts/javascript-tech-we-loved-but-dont-use-as-much-anymore…
H
HTML All The Things - Web Development, Web Design, Small Business

Are developers forced to choose the popular option? This week, Matt had the pleasure of sitting down with Colby Fayock, a content creator and Shopify engineer to discuss the difficulty of choosing tools, plugins, frameworks, and more. Typically when you want stability and support, a safe bet is a popular tool run by a large company or community. However, last year's WordPress drama had many wondering how a platform so massive had a future that suddenly seemed so uncertain. Can options other than the popular ones be a good choice sometimes? Show notes: https://www.htmlallthethings.com/podcasts/the-popular-option-w-colby-fayock…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Freelancing for Web Development 1:06:25
1:06:25
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:06:25
In this episode, Matt and Mike dive into the world of freelancing—a rewarding but often challenging career path for web developers, designers, and tech enthusiasts alike. As 10+ year veterans of their own web dev agency, the guys share their personal insights and experiences when freelancing. Learn how to: make the most out of freelancing platforms like GURU, build an online presence for marketing, leveraging word of mouth once established, and dig up leads in unconventional places. Whether you’re considering freelancing as a side hustle or aiming to go full-time, we’re here to share actionable tips and strategies to set you up for success. Show Notes: https://www.htmlallthethings.com/podcasts/freelancing-for-web-development…
H
HTML All The Things - Web Development, Web Design, Small Business

In this episode Matt and Mike delve into the world of asynchronous JavaScript, inspired by a listener's request. The discussion covers essential concepts such as synchronous and asynchronous operations, explaining how JavaScript's single-threaded nature can lead to blocking issues. The hosts explore various methods to handle async operations, including callbacks, promises, and the increasingly popular async/await syntax. They also address practical issues like error handling and best practices for writing maintainable and performant async code. This episode is ideal for developers looking to deepen their understanding of JavaScript's asynchronous capabilities. Show Notes: https://www.htmlallthethings.com/podcasts/what-is-async-javascript Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Stop Using Frameworks for Everything: Vanilla JavaScript in 2025 1:10:35
1:10:35
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:10:35
In this episode, Matt and Mike explore why vanilla JavaScript remains a powerful tool for developers. From small projects that don’t need the complexity of frameworks, to performance-critical and fine-control use cases, they discuss when and why going framework-free can be the better choice. They also dive into learning and debugging benefits, reducing dependencies, and ensuring compatibility with legacy browsers. Whether you’re prototyping, enhancing no-code platforms, or striving for leaner, faster projects, vanilla JS has its place in every developer’s toolkit. Show Notes: https://www.htmlallthethings.com/podcasts/stop-using-frameworks-for-everything-vanilla-javascript-in-2025 Thanks to Magic Mind for sponsoring this episode, enjoy up to 45% off the Magic Mind bundle using our link: https://magicmind.com/htmlpodbjan Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Stop Overcomplicating CSS: Master Layouts, Variables, and Modern Best Practices 1:05:03
1:05:03
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:05:03
In this episode, Matt and Mike dive into the world of CSS, breaking down essential concepts to help developers write cleaner, more effective stylesheets. Topics include how to avoid over-specificity, the effective use of modern layout tools like Grid and Flexbox, leveraging custom properties for dynamic styling, and adopting methodologies such as BEM to ensure maintainable code. They’ll also explore the newest CSS features, such as container queries and scroll-linked animations, while highlighting how CSS can improve accessibility. Whether you’re just starting with CSS or looking to refine your skills, this episode is packed with insights to level up your stylesheets. Show Notes: https://www.htmlallthethings.com/podcasts/stop-overcomplicating-css-master-layouts-variables-and-modern-best-practices Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Why Is Everyone Unhappy With JavaScript? | State of JavaScript 2024 Survey 1:30:06
1:30:06
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:30:06
Matt and Mike dive deep into the results of the State of JavaScript 2024 survey. The discussion covers various topics such as declining happiness with JavaScript frameworks, the rise of the Astro framework, and the increasing shift towards TypeScript. Additional discussions include the use of AI for code generation and some new JavaScript features that developers are excited about. The guys also discussed the complexities and evolving nature of web development, and whether the modern JavaScript learning curve is sustainable for aspiring junior developers. Show Notes: https://www.htmlallthethings.com/podcasts/why-is-everyone-unhappy-with-javascript-state-of-javascript-2024-survey Thanks to Magic Mind for sponsoring this episode, enjoy up to 45% off the Magic Mind bundle using our link: https://magicmind.com/htmlpodbjan Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Client-Side vs. Server-Side JavaScript 1:07:36
1:07:36
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:07:36
In this episode, Matt and Mike dive into the world of JavaScript environments, exploring the key differences between client-side and server-side JavaScript. Whether you're a beginner curious about how JavaScript works across the browser and the server, or an experienced developer looking for a refresher, this episode has you covered. Learn about the unique roles of client-side and server-side JavaScript, their common use cases, and when to use each. Plus, discover the latest trends like serverless environments, JAMstack, and exciting tools like Astro and Deno. Don't miss this comprehensive breakdown of JavaScript's dual nature! Show Notes: https://www.htmlallthethings.com/podcasts/client-side-vs-server-side-javascript Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

In this episode, Matt and Mike take a look back at 2024, reflecting on the milestones and challenges of the past year. From tackling tough web development topics to experimenting with new strategies, it’s been a year of growth and learning for the podcast and its community. Show Notes: https://www.htmlallthethings.com/podcasts/2024-year-in-review-looking-towards-2025 Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

Holidays are a time to recharge, but for web developers, they can sometimes feel like an extension of the workweek. In this episode, Matt and Mike share strategies to set boundaries, avoid burnout, and truly disconnect during the holiday season. They also cover pre-holiday planning tips, ways to make the most of your time off, and how to start the new year with realistic expectations. Whether you're a freelancer or part of a team, these tips will help you balance work and rest this holiday season. Show Notes: https://www.htmlallthethings.com/podcasts/how-to-actually-enjoy-the-holidays-as-a-web-developer Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

In this episode of the HTML All The Things Podcast, Matt and Mike dive into why good HTML practices are essential for building better, more accessible, and maintainable websites. They kick things off by explaining the importance of semantic HTML for readability, SEO, and accessibility—covering useful tags like , , and . Matt and Mike also discuss how developers can properly create and use custom attributes—like data-* attributes—to store extra information cleanly without relying on fragile class naming conventions. Finally, they emphasize HTML's critical role in accessibility, highlighting best practices such as using ARIA attributes appropriately and providing meaningful alt text for images. To cap off the episode, the hosts share some lighthearted updates about their holiday plans and give a shout-out to this episode’s sponsor, Magic Mind. Show Notes: https://www.htmlallthethings.com/podcasts/stop-using-divs-for-everything-master-semantic-html-custom-attributes-and-accessibility Thanks to Magic Mind for sponsoring this episode, enjoy 20% off one-time purchases and subscription using our link and code (Link: https://magicmind.com/HTMLPOD20 Code: HTMLPOD20) Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Educating Devs That Get Hired w/ Thomas Chant 1:33:23
1:33:23
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:33:23
In this episode, Matt interviews Thomas Chant, an educator at Scrimba and creator of their Advanced JavaScript Course. Thomas shares insights from his journey as a TEFL teacher and web developer, highlighting his passion for teaching and technology. The discussion covers the role of educators in web development, leveraging social media for learning, and the evolving impact of AI on the industry. Thomas also provides tips for aspiring developers entering the job market and details Scrimba’s exciting annual event, JavaScriptmas. With the holiday season in full swing, JavaScriptmas has come once again to ring in some holiday cheer with coding challenges and cool prizes. Get involved and start learning some code by dominating challenges through December 24, 2024. Show Notes: https://www.htmlallthethings.com/podcasts/educating-devs-that-get-hired-w-thomas-chant JavaScriptmas 2024: https://scrimba.com/javascriptmas 10% off Scrimba discount (new accounts only, valid through 2024): https://scrimba.com/?via=htmlallthethings…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Monorepos Unpacked: The Good, the Bad, and the Turbocharged 1:03:10
1:03:10
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:03:10
In this episode of the HTML All Things Podcast, Matt and Mike explore the concept of monorepos - what they are, why they have gained popularity in recent years, and how they compare to polyrepos. The discussion delves into the advantages of monorepos, such as simplified dependency management, improved code sharing and reusability, consistency across teams, and streamlined CI/CD processes. Mike shares personal experiences and insights on the challenges and solutions related to monorepos, particularly through their team's use of TurboRepo. The episode also covers the potential drawbacks, including scaling issues, overhead of tooling, access control challenges, and the risk of entanglement. Whether you're new to monorepos or considering implementing one, this episode provides valuable insights and practical tips. Show Notes: https://www.htmlallthethings.com/podcasts/monorepos-unpacked-the-good-the-bad-and-the-turbocharged Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

CSS is typically reserved to just laying out pages, with any sort of interactivity or layout changes being left to JavaScript. As CSS matured, more features came out that gave it the ability to detect dynamic conditions on the page, create advanced animations, and apply advanced styling based on custom attributes. These advanced features give web designers the power of interactive design without the need for less-performant JavaScript. With JavaScript remaining one of the top choices for building web pages, should web developers be concerned with advanced CSS features both present and future? Or is offloading these tasks onto CSS concerning to the JavaScript community? In this episode, Matt and Mike discussed, debated, and analyzed interactive CSS, covering some features that Matt has been using and reading up on lately. Show Notes: https://www.htmlallthethings.com/podcasts/can-css-replace-javascript-the-rise-of-interactive-styling Sponsors: Magic Mind Black Friday Deal!!! - 50% off until December 6, 2024 at our link: https://magicmind.com/htmlpodbf Thanks to Magic Mind for sponsoring this episode, enjoy 20% off one-time purchases and subscription using our link and code (Link: https://magicmind.com/HTMLPOD20 Code: HTMLPOD20) Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Does AI Have Tech Bias? | AI All The Things 1:01:41
1:01:41
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:01:41
In this episode, Matt and Mike introduce a new episode type dedicated to exploring the rapidly evolving world of AI. As AI tools advance at lightning speed, staying informed is critical for developers navigating this transformative era. This week, they dive into the evolution of AI-powered development tools, from simple autocompletes like Copilot and TabNine to full-scale IDE solutions like Cursor and Supermaven. They discuss the pros and cons of using these advanced tools for multifile code generation and manipulation, highlighting both the efficiencies and risks they bring. The conversation then shifts to the rise of AI-driven full-stack application generators, such as Bolt.new, V0, and GitHub Spark. These tools can build entire applications from simple prompts but come with a notable downside: tech bias. Matt shares his experience building a podcast website and highlights how AI's reliance on popular frameworks can limit the adoption of emerging technologies. Finally, the duo debates the future of AI in the development industry. Will AI replace developers in 1, 3, or even 10 years? Tune in to find out! Show Notes: https://www.htmlallthethings.com/podcasts/does-ai-have-tech-bias-ai-all-the-things Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Are Developers Making Page Builders Too Powerful for Content Editors? 1:12:17
1:12:17
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:12:17
How much power should you give your clients and non-tech colleagues? In this episode, Matt and Mike explore the evolving landscape of web development tools and workflows, inspired by Webflow's new page and component slots. They discuss how these innovations, along with popular page builders and CMSs, are empowering non-tech staff to take on more responsibilities, reducing developer involvement in day-to-day content updates. However, this shift comes with risks like design inconsistency, security vulnerabilities, and technical debt. The duo also examines the future of page editing, from AI-driven templates to voice-activated tools and automated quality checks, highlighting the balance between empowering editors and maintaining developer oversight. Show Notes: https://www.htmlallthethings.com/podcasts/are-developers-making-page-builders-too-powerful-for-content-editors Thanks to Magic Mind for sponsoring this episode, enjoy 20% off one-time purchases and subscription using our link and code (Link: https://magicmind.com/HTMLPOD20 Code: HTMLPOD20) Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Web APIs That Every JavaScript Developer Should Know 1:03:38
1:03:38
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:03:38
Level up your vanilla JavaScript with these powerful Web APIs that every developer should know. In this episode, Matt and Mike dive into essential Web APIs that can take your web development skills to the next level. Discover how Web APIs differ from external APIs and explore their powerful capabilities—from manipulating the DOM and fetching data to enabling offline functionality for native app-like uses (ie PWAs). They’ll cover must-know APIs like Fetch, Storage, and Service Worker, along with user experience (and native app-like) boosters like Geolocation and Notifications. Tune in to learn practical applications, security tips, and best practices that will help you create fast, interactive, and native-like web apps. Show Notes: https://www.htmlallthethings.com/podcasts/web-apis-that-every-javascript-developer-should-know Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

Rushed timelines and last-minute jobs are something that most developers are all too familiar with. While frequent rush jobs can signal deeper management issues, the fast-paced nature of the world means unexpected challenges often arise. In this episode, Matt and Mike explore strategies for developers to take charge when work needs to be completed quickly. They discuss how project leadership and effective decision-making can help prevent a rush job from turning into endless overtime. By taking ownership of the work order, setting realistic expectations, and cutting through bureaucratic red tape, developers can streamline communication with their teams to prioritize coding time and deliver results efficiently. Show Notes: https://www.htmlallthethings.com/podcasts/taking-control-in-a-rush Thanks to Magic Mind for sponsoring this episode, enjoy 20% off one-time purchases and subscription using our link and code (Link: https://magicmind.com/HTMLPOD20 Code: HTMLPOD20) Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio, the web platform tailored to designers, developers, and marketers via this link: https://www.wix.com/studio…
به Player FM خوش آمدید!
Player FM در سراسر وب را برای یافتن پادکست های با کیفیت اسکن می کند تا همین الان لذت ببرید. این بهترین برنامه ی پادکست است که در اندروید، آیفون و وب کار می کند. ثبت نام کنید تا اشتراک های شما در بین دستگاه های مختلف همگام سازی شود.