Player FM - Internet Radio Done Right
13 subscribers
Checked 6h 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 !
پادکست هایی که ارزش شنیدن دارند
حمایت شده
You have a favorite Matthew Lillard film or TV performance. It might be SLC Punk , the Scream franchise, Scooby Doo , Hackers , She's All That , Twin Peaks: The Return , or the new Stephen King and Mike Flanagan movie The Life of Chuck . He's been working in Hollywood for over 30 years, and has a reputation for being kind to fans. But connecting with people is exactly why he got into acting as a kid — the community that comes from putting on a play together and hashing it all out at the diner afterward. It's what drew him to Dungeons & Dragons, and then a spirits company celebrating fantasy and horror fandoms. Lillard joined Tinfoil Swans to talk about growing up not fitting in, the thrill of finding your people, the punk rock high school movie he directed, his wedding cheese wheel, and so much more. For more info visit: foodandwine.com/tinfoilswans Learn more about your ad choices. Visit podcastchoices.com/adchoices…
Tips and Tricks
Manage episode 323038124 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 share some of our tips and tricks that we've picked up along our many web development and design adventures. Segment 1 - Matt’s Tips & Tricks
…
continue reading
- Server/Hosting Management
- Common things like this include: WordPress updates (plugin updates), migrating to a different server/host, testing a new major feature, adding something a client has requested - but you think won’t work out which will result in a rollback
- Always backup files and databases that you won’t be able to get back in their existing state
- Be wary of new commands if you have command line access, especially if they’re aimed at deleting files, or folders
- Have a recovery plan before you begin so that you can quickly and easily rollback your changes if something goes terribly wrong - planning this out properly may require you to take full backups, prepare a re-upload solution, research re-installation information on some of the software you’re using
- Have a testing environment setup that mimics your production environment preferably
- CSS
- Don’t be afraid of simply setting up a skeleton before moving onto a different part of the site - having a skeleton of the top bar while branding is being figured out is a good way to get started on the site, and frees you up to spend more time on other elements that are more definitive (ie slider, contact form, etc.)
- Make your class names easily identifiable, whether you use a naming convention or not, at the very least use something that you’ll be able to identify later and that other developers would be able to pickup on if they interact with your project in the future (example classnames: navbar, nav-item, footer, topbar)
- Comments (and this goes for other languages to) should be done to clarify things for yourself in the future, or for other developers down the road, however, sometimes you understand something using references in your own head - do not hesitate to make comments specific to you if you’re actively working on the project, using references that only you understand - making the comments more generic for others when production hits
- Test responsivity with true window widths, not just responsive tools, sometimes these tools don’t reflect exactly how different browser window widths will actually react which can result in some overflow left-to-right or some broken elements altogether
Segment 2 - Mikes Tips and Tricks (JS Tips)
- Use a scope variable
- If you’re using just straight javascript for a single page or multipage website create a scope global variable. Make sure that this is your only global variable for the whole project but if you need to pass state or variables between files or pages then use only scope to keep some form of structure and minimize conflicts
- Use libraries when necessary
- Make sure it has been updated in the past year at least
- Make sure the documentation is fairly easy to understand
- Check the Open issues tab in github and make sure that there are plenty of closed issues and check those closed issues to make sure you are fine with the answers given as if you have an issue you will have a similar experience
- When working on a large project there will be times when you’ve gotta complete features under a time limit. This is where libraries can really save you a huge amount of time and headache. I recently had to create a searchable list for an application with the ability to auto filter the visible list as you type. Even though this is definitely something I could have created from scratch I didn’t want to waste my clients time if that is unnecessary. Doing a quick google search yielded plenty of well maintained, small and feature rich libraries. One called list.js really exceeded my expectations. Here are some tips for checking if a library is worth using:
- Do your best to write self documenting code with comments being used only when necessary
- I am very deliberate in my function and variable names to make it easy to go back to my code and understand what is going on
- If a function is calculating the taxes on the order then call that function calculateTax()
- Try to avoid using ternary operators (condition ? true expression : false expression) in code that will need to be maintained by multiple people over long periods of time. As ‘professional’ as they make you look they are not easier to understand then a simple if statement. Nor do they impact performance in any way
- Refactor and clean up code often
- With larger projects code can get out of hand really fast. If you’re programming at speed and do a lot of testing where you comment out sections and write new ones to see differences those commented out sections can add up and can contribute to confusion and maintainability in the future
- Sometimes you can preemptively create variables and functions and then never use them going forward. These are just taking up space in memory and adding even more complexity to your code for no reason. These are prime candidates for removal in a refactor
- Chrome Dev tools are your friend
- These are a huge help to me on a daily basis. Being able to put a breakpoint in my code and view what all my variables read at that time makes testing and writing code so much easier
- With most software companies move to a monthly or yearly subscription model has the standalone application now become a unicorn in our industry?
- paying only 5-20 dollars a month for a premium application seems like a easier sell to people then asking them for 100+ upfront. But these 5-20 dollars a month add up and could very well be a much bigger hit on your wallet in the future
- Knowing you never own the actual product is also a weird feeling
- For the company having consistent recurring income is a huge bonus and allows them to plan much further ahead with features and support. Also very few yearly version upgrades happen, instead choosing to maintain and add features to the same version. This makes for less need to upgrade or migrate to different versions
- In my experience a company that gets a monthly subscription is less likely to abandon their product
- I.e android app Weather Timeline was a paid application but with it being only a one time fee it wasn’t able to maintain it’s costs and had to take the application down from the store and later on sell it to a different publisher
- What do you prefer, a one time bulk fee (approx $100) or a $5-$20 subscription?
You can find us on...
396 قسمت
Manage episode 323038124 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 share some of our tips and tricks that we've picked up along our many web development and design adventures. Segment 1 - Matt’s Tips & Tricks
…
continue reading
- Server/Hosting Management
- Common things like this include: WordPress updates (plugin updates), migrating to a different server/host, testing a new major feature, adding something a client has requested - but you think won’t work out which will result in a rollback
- Always backup files and databases that you won’t be able to get back in their existing state
- Be wary of new commands if you have command line access, especially if they’re aimed at deleting files, or folders
- Have a recovery plan before you begin so that you can quickly and easily rollback your changes if something goes terribly wrong - planning this out properly may require you to take full backups, prepare a re-upload solution, research re-installation information on some of the software you’re using
- Have a testing environment setup that mimics your production environment preferably
- CSS
- Don’t be afraid of simply setting up a skeleton before moving onto a different part of the site - having a skeleton of the top bar while branding is being figured out is a good way to get started on the site, and frees you up to spend more time on other elements that are more definitive (ie slider, contact form, etc.)
- Make your class names easily identifiable, whether you use a naming convention or not, at the very least use something that you’ll be able to identify later and that other developers would be able to pickup on if they interact with your project in the future (example classnames: navbar, nav-item, footer, topbar)
- Comments (and this goes for other languages to) should be done to clarify things for yourself in the future, or for other developers down the road, however, sometimes you understand something using references in your own head - do not hesitate to make comments specific to you if you’re actively working on the project, using references that only you understand - making the comments more generic for others when production hits
- Test responsivity with true window widths, not just responsive tools, sometimes these tools don’t reflect exactly how different browser window widths will actually react which can result in some overflow left-to-right or some broken elements altogether
Segment 2 - Mikes Tips and Tricks (JS Tips)
- Use a scope variable
- If you’re using just straight javascript for a single page or multipage website create a scope global variable. Make sure that this is your only global variable for the whole project but if you need to pass state or variables between files or pages then use only scope to keep some form of structure and minimize conflicts
- Use libraries when necessary
- Make sure it has been updated in the past year at least
- Make sure the documentation is fairly easy to understand
- Check the Open issues tab in github and make sure that there are plenty of closed issues and check those closed issues to make sure you are fine with the answers given as if you have an issue you will have a similar experience
- When working on a large project there will be times when you’ve gotta complete features under a time limit. This is where libraries can really save you a huge amount of time and headache. I recently had to create a searchable list for an application with the ability to auto filter the visible list as you type. Even though this is definitely something I could have created from scratch I didn’t want to waste my clients time if that is unnecessary. Doing a quick google search yielded plenty of well maintained, small and feature rich libraries. One called list.js really exceeded my expectations. Here are some tips for checking if a library is worth using:
- Do your best to write self documenting code with comments being used only when necessary
- I am very deliberate in my function and variable names to make it easy to go back to my code and understand what is going on
- If a function is calculating the taxes on the order then call that function calculateTax()
- Try to avoid using ternary operators (condition ? true expression : false expression) in code that will need to be maintained by multiple people over long periods of time. As ‘professional’ as they make you look they are not easier to understand then a simple if statement. Nor do they impact performance in any way
- Refactor and clean up code often
- With larger projects code can get out of hand really fast. If you’re programming at speed and do a lot of testing where you comment out sections and write new ones to see differences those commented out sections can add up and can contribute to confusion and maintainability in the future
- Sometimes you can preemptively create variables and functions and then never use them going forward. These are just taking up space in memory and adding even more complexity to your code for no reason. These are prime candidates for removal in a refactor
- Chrome Dev tools are your friend
- These are a huge help to me on a daily basis. Being able to put a breakpoint in my code and view what all my variables read at that time makes testing and writing code so much easier
- With most software companies move to a monthly or yearly subscription model has the standalone application now become a unicorn in our industry?
- paying only 5-20 dollars a month for a premium application seems like a easier sell to people then asking them for 100+ upfront. But these 5-20 dollars a month add up and could very well be a much bigger hit on your wallet in the future
- Knowing you never own the actual product is also a weird feeling
- For the company having consistent recurring income is a huge bonus and allows them to plan much further ahead with features and support. Also very few yearly version upgrades happen, instead choosing to maintain and add features to the same version. This makes for less need to upgrade or migrate to different versions
- In my experience a company that gets a monthly subscription is less likely to abandon their product
- I.e android app Weather Timeline was a paid application but with it being only a one time fee it wasn’t able to maintain it’s costs and had to take the application down from the store and later on sell it to a different publisher
- What do you prefer, a one time bulk fee (approx $100) or a $5-$20 subscription?
You can find us on...
396 قسمت
همه قسمت ها
×Most coding guides are built for beginners—but what if you're already a working developer? In this episode, Matt shares his personal struggle with upgrading his coding skills after years of using no-code and low-code tools to deliver client sites. From outdated certifications to modern dev stacks, we explore how "situational developers" can navigate learning gaps, avoid repetitive beginner content, and figure out what skills actually matter next. Show Notes: https://www.htmlallthethings.com/podcasts/leveling-up-your-dev-skills-when-youre-not-a-beginner-but-feel-like-one Use our affiliate link ( https://scrimba.com/?via=htmlallthethings ) for a 20% discount!! Full details in show notes.…
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.…
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.…
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.…
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.…
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.…
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.…
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.…
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.…
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.…

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.…
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.…
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.…

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.…
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…
H
HTML All The Things - Web Development, Web Design, Small Business

The WordPress drama between WPEngine and Matt Mullenweg has been quite the stir up for primarily WordPress, but also the open source community in general. Not to mention, all the WPEngine customers that are effectively collateral damage having their websites adversely affected, sometimes without even realizing what's happening. In this episode, Matt and Mike discussed the WordPress drama and touched on how it could affect open source projects moving forward. Is WordPress in the right? Is WPEngine? You decide... Disclaimer/Correction: A section of this episode states a misinterpretation of the GPL license. We've published a correction in the show notes under the "Disclaimer & Correction" section. Show Notes: https://www.htmlallthethings.com/podcasts/open-source-is-dead 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 Side Projects: The Eternal Loop of Never-Ending Features 1:03:54
1:03:54
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:03:54
Side projects are often done as a for-fun and potentially for-profit outlet for web developers looking to break free from client projects where they have little control. Unfortunately, just like client projects, side projects can easily spiral out of scope to the point of developer exhaustion. In this episode, Matt and Mike explore how scope creep can derail personal projects, offering practical strategies to prevent it. They discuss defining a solid MVP, niching down to maintain focus, and prioritizing features using methods like the MoSCoW framework. By setting clear boundaries and establishing achievable milestones, developers can avoid common pitfalls and keep their side projects on track. Show Notes: https://www.htmlallthethings.com/podcasts/side-projects-the-eternal-loop-of-never-ending-features 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 The Toughest Concepts in Web Development (Part 2) 1:07:06
1:07:06
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:07:06
In this episode Matt and MIke, continue their deep dive into the toughest concepts in web development. The guys tackle topics like mastering responsive design, ensuring web accessibility (a11y) for all users, and the complexities of server-side rendering (SSR), static site generation (SSG), and client-side rendering (CSR). They also explore the challenges of event-driven architectures, managing project dependencies efficiently, and setting up smooth CI/CD pipelines. Whether you're building scalable web applications or just want to level up your dev game, this episode has actionable insights to help you through some of web development's most intricate concepts. Show Notes: https://www.htmlallthethings.com/podcasts/the-toughest-concepts-in-web-development-part-2 Thanks to Magic Mind for sponsoring this episode, enjoy 40% off your subscription using our link and code (Link: https://magicmind.com/HTMLPOD40 Code: HTMLPOD40) This offer is only available for the first 10 people that use the link and code!! 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 The Toughest Concepts in Web Development (Part 1) 1:06:56
1:06:56
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:06:56
Web development is not easy! Websites need to work on multiple devices, respect SEO best practices, and must deliver everything from blogs through complex design programs. These demanding sees web developers navigating not only demanding topics, but ones that are also difficult to engineer, implement, and maintain. In this episode, Matt and Mike start a discussion the toughest concepts in web development. In this first of two parts series, the duo discussed: Asynchronous programming & promises, state management, security concerns (ie XSS CSRF, SQL Injection), performance optimization, scalability & architecture, and cross-browser compatibility. Show Notes: https://www.htmlallthethings.com/podcasts/the-toughest-concepts-in-web-development-part-1 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 Mentoring Developers with Shashi Lo 1:03:56
1:03:56
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:03:56
Matt and Mike had a great conversation with Shashi Lo this week! Shashi is a senior software engineer at Microsoft and founder of Gridiron Survivor - an open source NFL Survivor pool SaaS application that’s designed to help the junior developers working on it further their skills and knowledge through real-world experience. Unlike self-taught personal projects, Shashi walks us through how his mentees on the Gridiron Survivor project are guided through corporate standards such as writing clean code and covering all the bases with proper testing - concepts that may seem superfluous on small portfolio project, but are a must-have in a corporate setting. Show Notes: https://www.htmlallthethings.com/podcasts/mentoring-developers-with-shashi-lo Companion Article: https://www.htmlallthethings.com/blog-posts/bridging-the-skills-gap-empowering-junior-developers-through-apprenticeship-programs…
H
HTML All The Things - Web Development, Web Design, Small Business

While trying to solve a coding problem this week, Matt found himself buried in a collection of solutions offered by ChatGPT and Google search results. Some of the solutions were completely new to him and so he got to thinking about how "safe" it would be to implement them. Not from a security perspective, as there wasn't any private data involved in this particular case, but his concern was more for the page UX itself. How efficient were the solutions he was about to implement, would it slow the web page down? Were these new topics even being used in the correct context and being implemented appropriately? In this episode, Matt and Mike discussed how to think through problems like this in terms of project architecture, website performance, and troubleshooting/research time spent. Show Notes: https://www.htmlallthethings.com/podcasts/is-your-code-too-complex-troubleshooting-fixing-and-implementing-solutions 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 Tech We Love as Web Developers: SvelteKit, Vercel, Supermaven, and More 1:04:07
1:04:07
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:04:07
There is a lot of tech out there! It seems every day someone is coming out with a new way to edit images, use AI, build websites, assist developers, and the list goes on and on. This week, Matt and Mike decided to zoom in and discuss some of the tech that they enjoy using at the moment including Svelte/SvelteKit, TailwindCSS, Supermaven, and much more! The technologies that web developers change all the time - and not always obvious things like frameworks and plugins, but also more logistical elements of the job like where to host, compress images, etc. What are you using in your projects? Show Notes: https://www.htmlallthethings.com/podcasts/tech-we-love-as-web-developers-sveltekit-vercel-supermaven-and-more 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 Saying No to Scope Creep: How Web Devs Can Push Back 1:05:46
1:05:46
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:05:46
Scope creep is a very dangerous thing that can endanger a team's productivity and mental health. It involves taking the original scope of a project, and slowly but surely, adding more and more tasks to it. Often times scope creep is not done nefariously, as those that request tasks from developers are ignorant of the technical complexities of their requests. Unfortunately, there are those that will add to a project's scope willingly to take advantage of their employees, or there may be some mismanagement within the company that leads to additional work in a short period of time. In this episode, Matt and Mike discussed the who, what, where, when, and why of pushing back against customer requests in order to keep projects in-scope. They discussed the importance of pushing back sometimes, when to push back, and whether it's appropriate to push back when acting as a freelance contractor. Show Notes: https://www.htmlallthethings.com/podcasts/saying-no-to-scope-creep-how-web-devs-can-push-back 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 Why Code Quality Matters: Testing, Linting, Refactoring 1:16:43
1:16:43
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:16:43
Code quality matters! When developers write better, cleaner, and safer code - their deliverables improve significantly. When code is safer, there are less problems with crashes and unintended errors. When code is cleaner, team members find it easier to read, peer review, and add on to down the line. Improving the quality of your code is easier said than done, however, as it takes more than just "getting good" at coding. In this episode, Matt and Mike discussed the importance of and how to improve your code quality by keeping coding styles consistent with your team, refactoring, writing good tests, using prettier formatting, and linting. Show Notes: https://www.htmlallthethings.com/podcasts/why-code-quality-matters-testing-linting-refactoring 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 Should Our AI Data Be in the Cloud? On-Device AI vs Cloud-Based AI 1:17:11
1:17:11
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:17:11
Should AI run in the cloud or on-device? Some people think that on-device is the only way forward as it ensures a certain level of privacy, while others worry that our local hardware (PC, smartphone, smartwatch) is not powerful enough to deliver cutting-edge features. In this episode, Matt and Mike explore how on-device AI and cloud-based AI work. The guys discussed the benefits of each approach while analyzing and debating their differences on both a hardware/software and user-experience level. Are you worried about your AI information being out in the cloud? Show Notes: https://www.htmlallthethings.com/podcasts/should-our-ai-data-be-in-the-cloud---on-device-ai-vs-cloud-based-ai 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 Our Biggest Projects: How We Became Developers 1:30:37
1:30:37
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:30:37
This week Matt and Mike took a trip down memory lane to discuss, debate, and reflect on some of their biggest projects that shaped their careers as web developers. As with many tech careers, the road to becoming a web developer is anything but straightforward. In the case of Matt and Mike, their planned IT startup took a hard right turn based on the opportunities they were afforded over the years such as working for a large medical clinic under the scrutiny of strict government regulations, being caught up in Chrome OS fever as Chrome Apps landed on Windows, helping a large fast food franchise deliver important info to their franchisees, and many more! The pathway to becoming a web developer is anything but linear and the guys hope that this episode's conversations prove that there is no one single pathway to success in the web dev game. Show Notes: https://www.htmlallthethings.com/podcasts/our-biggest-projects-how-we-became-developers 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 Is Vanilla Tech Just for Juniors? Exploring the Role of HTML, CSS, and JS in 2024 1:19:30
1:19:30
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:19:30
It's often said that in order to become a junior developer, you should learn the three foundational pillars of web development before moving onto a framework, plugin, or other specialty. These pillars are of course: HTML (for site structure), CSS (for page styling), and JS (for advanced UI interactivity) - we refer to them as vanilla tech. Way back in the day, these pillars were pretty much the only thing most developers used to create websites (minus backend tech), but these days most jobs require that you have experience with a popular toolset like React + Next.js, or Svelte + SvelteKit. In this episode, Matt and Mike check in on HTML, CSS, and JS in 2024. The duo discussed these technologies through the frontend lens exclusively, pushing aside things such as JavaScript usage in the backend, or being typed by TypeScript - in order to capture what these technologies were initially used for. Through this discussion the guys question how relevant vanilla tech is 2024, and whether or not it is primarily used as a learning tool by today's standards. Show Notes: https://www.htmlallthethings.com/podcasts/is-vanilla-tech-just-for-juniors-exploring-the-role-of-html-css-and-js-in-2024 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

In this episode, Matt and Mike dive deep into the results of the Stack Overflow Developer Survey 2024, uncovering the latest trends, technologies, and tools shaping the programming world. From the most popular programming languages and frameworks to the evolving work environments and career satisfaction of developers, the guys break down the data to give you a comprehensive look at the state of software development today. Whether you're a seasoned developer or just starting out, this episode offers valuable insights into where the industry is headed and how you can stay ahead of the curve. Show Notes: https://www.htmlallthethings.com/podcasts/developers-hate-technical-debt-stack-overflow-survey-2024 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 The Right Way to Code: Navigating Ethics in Web Development 1:33:51
1:33:51
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:33:51
Today, we're diving deep into the vital topic of navigating ethics in web development. As developers, we face numerous decisions that fall under the umbrella of ethical practice, from ensuring digital privacy and user consent to integrating accessibility features and prioritizing data security. We'll explore how ethical considerations influence our choices, such as selecting sustainable hosting options, responsibly implementing cutting-edge technologies like AI, and making mindful UI/UX design decisions. Additionally, we'll discuss the complexities of client intentions and our responsibility as developers to uphold ethical standards. Join Matt and Mike as they unpack these essential aspects to create a more ethical web. Show Notes: https://www.htmlallthethings.com/podcasts/the-right-way-to-code-navigating-ethics-in-web-development Magic Mind Trial using our link ( https://magicmind.com/HTMLPODTRIAL) and our code (HTMLPODTRIAL) - Full details can be found in the show notes! 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 Web Development A Cluster F*ck? 1:09:06
1:09:06
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:09:06
Web development is regarded by many as an absolute cluster f*ck. You can't just grab the "right" language and start making a website, there is a seemingly endless supply of no-code tools, libraries, JavaScript frameworks, and more. Even if you and a developer friend are trying to make the exact same project, your finished product will likely be largely the same...but the technology that powers it can be wildly different. What makes matters worse is that problems in the industry are addressed relatively quickly by community projects that of course spawn competing alternatives, and then rather quickly (at times) become old and outdated by even more modern solutions that push them out of the way. While it's great to have such an active community, if you're looking from the outside in, the web development industry looks like a total disaster. In this episode, Matt and Mike explore why web development seems so messy. Show Notes: https://www.htmlallthethings.com/podcasts/why-is-web-development-a-cluster-f-ck 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 Async Work for Web Developers: Revolution or Redundancy? 1:11:34
1:11:34
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:11:34
Explore the dynamics of synchronous vs asynchronous work as Matt and Mike discuss, analyze, and debate these two popular team workflows. Learn the pros and cons of both work styles, including security, flexibility, and team collaboration. Discover how these methods impact web developers with practical examples of onboarding, mentoring, and deep work. Tune in to understand how to effectively balance sync and async environments for optimal productivity and employee satisfaction. Whether you're a team leader or a solo developer, this episode has valuable takeaways for everyone in the tech industry. Show Notes: https://www.htmlallthethings.com/podcasts/async-work-for-web-developers-revolution-or-redundancy Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio , the web platform tailored to designers, developers, and marketers.…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Navigating Difficult Situations as a Web Agency 1:19:10
1:19:10
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:19:10
In this episode we dive into the toughest situations web agencies face. From budget cuts and impossible deadlines to social media crises and viral success, Matt and Mike discuss practical strategies for managing stress, negotiating with clients, and maintaining quality. Learn from the guys' experience as they explore real-life scenarios like “The Budget Slash,” “The Perfect Storm,” and “The Design Diva,” offering insights and solutions to keep your agency thriving. Show Notes: https://www.htmlallthethings.com/podcasts/navigating-difficult-situations-as-a-web-agency Thank you to this episode's sponsors! Check them out below. Limited Time Magic Mind Discount: Up to 48% off your first subscription or 20% off one time purchases. Use our link and code (at checkout) to claim the discount! Link (affiliate): https://magicmind.com/HTMLPOD20 Discount Code: HTMLPOD20 Wix Studio: The Web Platform for Agencies and Enterprises Give Wix Studio a try today: https://www.wix.com/studio…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Build Fast and Break Things 1:16:15
1:16:15
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:16:15
In this episode, we dive into the challenges companies face when balancing rapid feature development with maintaining stability and processes. We explore what it means to build fast, including establishing a tech stack that allows for quick iteration, easy rollback, and efficient database management. We discuss the importance of getting ideas from concept to production swiftly, while ensuring quality through early QA involvement. The episode also covers why it’s sometimes okay to break things, especially when dealing with a small user base, and the critical areas where building fast is not advisable, such as user data security. Join us as we unpack strategies for maintaining velocity without compromising on quality. Show Notes: https://www.htmlallthethings.com/podcasts/build-fast-and-break-things Thanks to Wix Studio for sponsoring this episode! Check out Wix Studio , the web platform tailored to designers, developers, and marketers.…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Do You Respect Your Time as a Web Developer? 1:26:44
1:26:44
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:26:44
In this episode, Matt and Mike discussed time management and time respect as a web developer, specifically diving into their thoughts on different types of billing, invoicing, and availability requirements. Some freelancers feel as though they should charge for every minute that they're on the clock since they're trading their time for money - while others believe more in the project angle, they're dedicated to getting the job done and therefore will often work "unpaid overtime" or will essentially be on-call for no additional pay. For small business owners, the duo also discussed their thoughts on invoicing, comparing and contrasting invoices will very little detail, versus ones that describe every thing that was done and how much those items cost. Then towards the end of the episode, the guys zoomed in on package deals - and how loose or strict you should be when enforcing the confines of a package deal (ie website maintenance package). Show Notes: https://www.htmlallthethings.com/podcasts/do-you-respect-your-time-as-a-web-developer Limited Time Magic Mind Discount: Up to 48% off your first subscription or 20% off one time purchases. Use our link and code (at checkout) to claim the discount! Link (affiliate): https://magicmind.com/HTMLPOD20 Discount Code: HTMLPOD20…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Where the F*ck Do I Start Learning Web Development? 1:03:32
1:03:32
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:03:32
Learning web development is not a clear linear path. At the highest level there's frontend development and backend development...but these categories break down into a tonne of different technologies including (but not limited to) React, Vue, Svelte, SvelteKit, HTML, CSS, JavaScript....and the list just keeps going on. For a beginner, this spider-web of technologies seems like an insurmountable learning path. In this episode, Matt and Mike discussed where they think you should start learning web development, touching on different pathways, and eventually laying out their preferred path in detail. Show Notes: https://www.htmlallthethings.com/podcasts/where-the-f-ck-do-i-start-learning-web-development Scrimba 20% discount - time limited, details in show notes: https://scrimba.com/?via=htmlallthethings…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Do Small Businesses Need Web Dev Agencies in 2024? 1:03:03
1:03:03
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:03:03
The classic 5-page website is often called a "small business website" or a "basic website" among web development agency owners. It's a staple of the industry because it symbolizes a basic site that many businesses will start their online presence with, and it can easily be sold as a package deal alongside hosting to onboard new clients. As the web has matured, other tools such as Squarespace, Wix, and Webflow have come up with DIY solutions that bring the power of web design, ecommerce, and hosting to users with often a single affordable monthly fee. In this episode, Matt and Mike discussed the small business website landscape to-date in 2024. Through their discussions they debate whether it's worth it for a web dev agency to offer 5-page small business websites anymore, if there's any value in a 5-page website in today's SEO, and whether a business' budget makes a difference which direction they should go. Show Notes: https://www.htmlallthethings.com/podcasts/do-small-businesses-need-web-dev-agencies-in-2024 Learn with Scrimba: https://scrimba.com/links/htmlallthethings…
H
HTML All The Things - Web Development, Web Design, Small Business

This week we had the pleasure of sitting down with Clark Sell, the creator of THAT Conference to discuss the importance of community among developers, and different relationships that you can have with your community. We also discussed at length the who, what, where, when, and why of THAT Conference - diving into Clark's inspiration when creating THAT, what the event is all about, and what the speaking landscape is like there. We even talked a little bit about Clark himself and what he used to do before THAT. Get 10% off Wisconsin 2024 tickets with promo code: HTMLALLTHETHINGS Show Notes: https://www.htmlallthethings.com/podcasts/what-is-that-conference-w-clark-sell Learn with Scrimba: https://scrimba.com/links/htmlallthethings…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Is JavaScript Really That Bad? 57:44
JavaScript has seen its fair share of insults and critiques over the years, with some developers outright refusing to touch it and other skirting around the edges by relying heavily on the server-side of things (ie PHP). Love it or hate it, JavaScript is what the web runs on and it's been that way since 1995. Vanilla JavaScript runs in the client's browser, bringing interactivity to user interfaces, while keeping the server out of calculations and computations. With the introduction of Node.js, JavaScript escapes the client-side, and moves it's way into the backend scene. With such a versatile language, why does JavaScript get so much hate? Is JavaScript really that bad? Show Notes: https://www.htmlallthethings.com/podcasts/is-javascript-really-that-bad Learn with Scrimba: https://scrimba.com/links/htmlallthethings…
H
HTML All The Things - Web Development, Web Design, Small Business

Creating a website is not a one-size-fits-all scenario, as projects can vary wildly in complexity and amount of work needed. Over the years we have come up with a process that defines a clear structure while providing enough flexibility to accomodate most web development projects for small to medium businesses. The process helps keep development on-track, payments flowing, mitigates working with clients that aren't serious about their project. Show Notes: https://www.htmlallthethings.com/podcasts/our-website-creation-process-2024 Learn with Scrimba: https://scrimba.com/?ref=htmlallthethings…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Time Saving Tips for Front-End Developers 1:01:54
1:01:54
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:01:54
Sometimes web development deadlines can come up faster than expected, or even worse, your workload may overwhelm the amount of time you have left until a deliverable is due. When this happens, it's easy to panic, procrastinate, or even quit altogether. Thankfully, development has a lot of wiggle room in how tasks are performed and can typically be worked on anywhere (in office, at home, on-the-go). This week, Matt and Mike discussed how to save time when you're working on your website's UI, more specifically, Matt reflected on a recent busy week where he pulled out all the stops on time saving while doing front-end development. Show Notes: https://www.htmlallthethings.com/podcasts/time-saving-tips-for-front-end-developers Learn with Scrimba: https://scrimba.com/?ref=htmlallthethings…
H
HTML All The Things - Web Development, Web Design, Small Business

This week we had the pleasure of sitting down with Jacob Jackson, the creator of TabNine and Supermaven to discuss AI as a whole. It's no surprise that LLMs are taking over most of the current chatter in the tech world, but their rapid rise in popularity has also led to a rapid rise in concern. Many people believe that AI is coming for our jobs, working to replace human developers and other workers. On the other side of the fence, people are using AI to boost their productivity both at work and at home. Developers seem to be getting a great deal of this productivity boost with the creation of tools like Supermaven that can help speed up coding. If you've ever had any questions or doubt surrounding AI, or LLMs in general, then you're not going to want to miss this episode. Show Notes: https://www.htmlallthethings.com/podcasts/will-ai-replace-us-w-the-creator-of-tabnine-and-supermaven-jacob-jackson Learn with Scrimba: https://scrimba.com/?ref=htmlallthethings…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Things I Wish I Knew Before Becoming a Web Developer 1:08:23
1:08:23
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:08:23
Web development is a multifaceted field that demands the integration of numerous technical skills for success. Given its complexity, it's common to encounter various pitfalls while navigating the terrain. In this episode, Mike divulges a list of insights he wishes he had known before embarking on a career in web development—advice that could have spared him time and frustration. This includes mastering your tools to fully leverage them (such as AI), recognizing the importance of completing projects, the advantages of engaging with a community, and many other valuable tips. Show Notes: https://www.htmlallthethings.com/podcasts/things-i-wish-i-knew-before-becoming-a-web-developer Learn with Scrimba: https://scrimba.com/?ref=htmlallthethings…
H
HTML All The Things - Web Development, Web Design, Small Business

1 How to Build a Website Quickly 53:44
What should you do when you need to build a website quickly? While Matt and Mike often say that you should take the time to create a website that you're happy with and will last a long time, sometimes your situation demands that the job be done quickly. In this episode the guys discussed how to build a website quickly using not just ready-made solutions like no-code tools and templates, but also productivity drivers such as hiring out developers while you and your team work on content at the same time. Show Notes: https://www.htmlallthethings.com/podcasts/how-to-build-a-website-quickly Learn with Scrimba: https://scrimba.com/?ref=htmlallthethings…
H
HTML All The Things - Web Development, Web Design, Small Business

1 Lessons I've Learned from Managing A Team of Developers 1:14:26
1:14:26
پخش در آینده
پخش در آینده
لیست ها
پسندیدن
دوست داشته شد1:14:26
Transitioning from coding to management can be a career goal for some, and a dreaded pathway for others. In his recent work experience, Mike has been managing a team of developers while continuing to code a bit himself. In this episode, Mike shares his recent experiences and enlightens us with some of the lessons he's learned along the way. While managing a team of developers may seem easy for those at a senior development level, it's easy to forget that the code is not the only thing you have to worry about, the human element becomes a factor that can make or break a team's productivity and effectiveness. Show Notes: https://www.htmlallthethings.com/podcasts/lessons-ive-learned-from-managing-a-team-of-developers Learn with Scrimba: https://scrimba.com/?ref=htmlallthethings…
به Player FM خوش آمدید!
Player FM در سراسر وب را برای یافتن پادکست های با کیفیت اسکن می کند تا همین الان لذت ببرید. این بهترین برنامه ی پادکست است که در اندروید، آیفون و وب کار می کند. ثبت نام کنید تا اشتراک های شما در بین دستگاه های مختلف همگام سازی شود.