Weekly Dev Tips

Steve Smith (@ardalis)

Weekly Dev Tips offers a variety of technical and career tips for software developers. Each tip is quick and to the point, describing a problem and one or more ways to solve that problem. I don't expect every tip to be useful to every developer, but I hope you'll find enough of them valuable to make listening worth your time. Hosted by experienced software architect, trainer, and entrepreneur Steve Smith, also known online as @ardalis. If you find these useful, you may also want to get a free software development tip delivered to your inbox every Wednesday from ardalis.com/tips.

  • 8 minutes 34 seconds
    Blogging with guest Andrew Lock

    Show Resources and Links

    That's it for this week. If you want to hear more from me, go to ardalis.com/tips to sign up for a free tip in your inbox every Wednesday. I'm also streaming programming topics on twitch.tv/ardalis most Fridays at noon Eastern Time. Thank you for subscribing to Weekly Dev Tips, and I'll see you next week with another great developer tip.

    22 March 2021, 11:58 pm
  • 16 minutes 38 seconds
    .Net Foundation with guest Claire Novotny

    Hi and welcome back to Weekly Dev Tips. I'm your host Steve Smith, aka Ardalis.

    This is episode 74 with guest Claire Novotny.

    On the Dot Net Foundation

    This week's tip is brought to you by devBetter.com.

    Sponsor - devBetter Group Career Coaching for Developers

    What is devBetter? It's a private group coaching community geared toward accelerating developer careers. We meet weekly for live Q&A sessions and have an active Discord-based discussion the rest of the week. Topics range from coding skills to interviewing and personal branding. Check out devBetter.com and read the testimonials at the bottom of the page.

    This week my guest is Claire Novotny, Executive Director of the .NET Foundation. We're going to spend a few minutes talking about the foundation.

    Show Resources and Links

    That's it for this week. If you want to hear more from me, go to ardalis.com/tips to sign up for a free tip in your inbox every Wednesday. I'm also streaming programming topics on twitch.tv/ardalis. Thank you for subscribing to Weekly Dev Tips, and I'll see you next week with another great developer tip.

    8 June 2020, 4:13 pm
  • 23 minutes 59 seconds
    Code Comments with Guest Claudio Lassala

    On Code Comments

    This week's tip is brought to you by devBetter.com.

    Sponsor - devBetter Group Career Coaching for Developers

    What is devBetter? It's a private group coaching community geared toward accelerating developer careers. We meet weekly for live Q&A sessions and have an active Discord-based discussion the rest of the week. Topics range from coding skills to interviewing and personal branding. Check out devBetter.com and read the testimonials at the bottom of the page.

    On Code Comments

    Claudio and I discuss code comments and how Claudio's thoughts on them have evolved over the last 15 years or so.

    Show Resources and Links

    That's it for this week. If you want to hear more from me, go to ardalis.com/tips to sign up for a free tip in your inbox every Wednesday. I'm also streaming programming topics on twitch.tv/ardalis. Thank you for subscribing to Weekly Dev Tips, and I'll see you next week with another great developer tip.

    11 May 2020, 6:30 am
  • 16 minutes 50 seconds
    Using the New GitHub CLI with guest John Papa

    Hi and welcome back to Weekly Dev Tips. I'm your host Steve Smith, aka Ardalis.

    This is episode 72 with guest John Papa.

    GitHub's New Command Line Interface

    This week's tip is brought to you by devBetter.com.

    Sponsor - devBetter Group Career Coaching for Developers

    What is devBetter? It's a private group coaching community geared toward accelerating developer careers. We meet weekly for live Q&A sessions and have an active Discord-based discussion the rest of the week. Topics range from coding skills to interviewing and personal branding. Check out devBetter.com and read the testimonials at the bottom of the page.

    GitHub's New Command Line Interface

    John and I discuss GitHub's new CLI.

    Show Resources and Links

    That's it for this week. If you want to hear more from me, go to ardalis.com/tips to sign up for a free tip in your inbox every Wednesday. I'm also streaming programming topics on twitch.tv/ardalis. Thank you for subscribing to Weekly Dev Tips, and I'll see you next week with another great developer tip.

    20 April 2020, 6:30 am
  • 3 minutes 52 seconds
    Adapter Design Pattern

    Hi and welcome back to Weekly Dev Tips. I'm your host Steve Smith, aka Ardalis.

    This is episode 71. This is the first tip I'm recording since going into quarantine lockdown due to the Coronavirus - the last few months were all recorded well ahead of their publication. I hope you're all staying safe and that you're finding these tips helpful. And perhaps you're listening to this from some time in the future, in which case hopefully everything turned out great!

    Adapter Design Pattern

    This week's tip is brought to you by devBetter.com.

    Sponsor - devBetter Group Career Coaching for Developers

    What is devBetter? It's a private group coaching community geared toward accelerating developer careers. We meet weekly for live Q&A sessions and have an active Discord-based discussion the rest of the week. Topics range from coding skills to interviewing and personal branding. Check out devBetter.com and read the testimonials at the bottom of the page.

    Adapter Design Pattern

    This week we're going to talk briefly about the adapter design pattern. This is one of the most common and useful design patterns, so it's a good idea for most developers to be familiar with it. It's described in the Gang of Four's Design Patterns book, linked in the show notes. You can also learn more about it in the great book Head First Design Patterns or my Pluralsight course, also both linked in the show notes.

    This pattern is designed to solve the problem of incompatible interfaces. Typically this is an issue when you can't or don't want to change a client's expectations to match a service provider's interface. Or vice versa. For instance, let's say you have a large application and throughout it you've made calls to log diagnostic output using a particular named method with certain arguments. Now, you discover that you need to use a different logging solution, but unfortunately its method has a different name and its arguments are in a different order. Do you need to touch everywhere in your application to make the change?

    Not necessarily. Instead, you can introduce an adapter. The adapter has the same interface as your existing approach, but translates from that interface to the new one behind the scenes. Your code keeps using the method signature it's used to, but you're able to point it at a different end result. Because they usually wrap the incompatible class, adapters are also often referred to as wrappers. With a w - not like rap artists.

    It's against the rules to talk about the adapter design pattern without comparing it to electrical plug adapters, so here goes. If you've ever traveled and needed to use an adapter to convert your US plug appliance to fit another country's outlet, or vice versa, you've used an adapter. They're also common with electronics, for instance to convert a newer iPhone lightning port to a 3.5mm audio port on devices that lack a headphone jack. Adapters let you evolve the behavior of both the client and the service provider while still allowing incompatible combinations to work together. In this way, they decouple clients from service providers.

    Although adapters are structurally very similar to decorators and proxies, their intent differs. You can learn more about all of these patterns and see code examples on Pluralsight, or in the books I mentioned earlier.

    Show Resources and Links

    That's it for this week. If you want to hear more from me, go to ardalis.com/tips to sign up for a free tip in your inbox every Wednesday. I'm also streaming programming topics on twitch.tv/ardalis most Fridays at noon Eastern Time. Thank you for subscribing to Weekly Dev Tips, and I'll see you next week with another great developer tip.

    15 April 2020, 5:21 pm
  • 11 minutes 17 seconds
    Defense in Depth with guest Matt Eland

    Hi and welcome back to Weekly Dev Tips. I’m your host Steve Smith, aka Ardalis.

    This is episode 70 on Defense in Depth with guest Matt Eland.

    Defense in Depth with guest Matt Eland

    This week's tip is brought to you by devBetter.com.

    Sponsor - devBetter Group Career Coaching for Developers

    What is devBetter? It's a private group coaching community geared toward accelerating developer careers. We meet weekly for live Q&A sessions and have an active Discord-based discussion the rest of the week. Topics range from coding skills to interviewing and personal branding. Check out devBetter.com and read the testimonials at the bottom of the page.

    Defense in Depth with guest Matt Eland

    This week's tip is brought to you by guest Matt Eland. Matt is a teacher, writer, and .NET foundation member who focuses on software quality and improving code. Welcome, Matt!

    Show Resources and Links

    That’s it for this week. If you want to hear more from me, go to ardalis.com/tips to sign up for a free tip in your inbox every Wednesday. I'm also streaming programming topics on twitch.tv/ardalis most Fridays at noon Eastern Time. Thank you for subscribing to Weekly Dev Tips, and I'll see you next week with another great developer tip.

    6 April 2020, 6:30 am
  • 8 minutes 39 seconds
    Setting Up New Projects with guest Heather Downing
    30 March 2020, 6:30 am
  • 4 minutes 32 seconds
    Respawn with guest Jimmy Bogard

    Hi and welcome back to Weekly Dev Tips. I'm your host Steve Smith, aka Ardalis.

     

    This is episode 68 with guest Jimmy Bogard.

     

    This week's tip is brought to you by devBetter.com.

     

    ## Sponsor - devBetter Group Career Coaching for Developers

     

    What is devBetter? It's a private group coaching community geared toward accelerating developer careers. We meet weekly for live Q&A sessions and have an active Discord-based discussion the rest of the week. Topics range from coding skills to interviewing and personal branding. Check out [devBetter.com](https://devbetter.com/) and read the testimonials at the bottom of the page.

     

    # Respawn with guest Jimmy Bogard

     

    This week's guest is Jimmy Bogard, author of popular OSS projects AutoMapper and MediatR. And less popular project Respawn.

     

    ## Show Resources and Links

     

    - [Jimmy on Twitter](https://twitter.com/jbogard)

    - [devBetter](https://devbetter.com)

    - [Ardalis Blog](https://ardalis.com/blog)

    - [Pluralsight Courses](https://www.pluralsight.com/authors/steve-smith)

     

    That's it for this week. If you want to hear more from me, go to [ardalis.com/tips](https://ardalis.com/tips) to sign up for a free tip in your inbox every Wednesday. I'm also streaming programming topics on [twitch.tv/ardalis](https://twitch.tv/ardalis) most Fridays at noon Eastern Time. Thank you for subscribing to Weekly Dev Tips, and I'll see you next week with another great developer tip.

     

    23 March 2020, 6:30 am
  • 13 minutes 56 seconds
    Abstractions with guest Chris Klug

    Hi and welcome back to Weekly Dev Tips. I'm your host Steve Smith, aka Ardalis.

    This is episode 67 with guest Chris Klug.

    This week's tip is brought to you by devBetter.com.

    Sponsor - devBetter Group Career Coaching for Developers

    What is devBetter? It's a private group coaching community geared toward accelerating developer careers. We meet weekly for live Q&A sessions and have an active Discord-based discussion the rest of the week. Topics range from coding skills to interviewing and personal branding. Check out devBetter.com and read the testimonials at the bottom of the page.

    Abstractions with guest Chris Klug

    This week's guest is Chris Klug. Chris is a Swedish .NET developer and Microsoft MVP whom we met up with at NDC London to record this episode on using, and not overusing, abstractions.

    Show Resources and Links

    That's it for this week. If you want to hear more from me, go to ardalis.com/tips to sign up for a free tip in your inbox every Wednesday. I'm also streaming programming topics on twitch.tv/ardalis most Fridays at noon Eastern Time. Thank you for subscribing to Weekly Dev Tips, and I'll see you next week with another great developer tip.

    16 March 2020, 6:30 am
  • 11 minutes 20 seconds
    Blazor with guest Carl Franklin

    Hi and welcome back to Weekly Dev Tips. I’m your host Steve Smith, aka Ardalis.

    This is episode 66 with a Blazor tip from Carl Franklin of .NET Rocks fame.

    This week's tip is brought to you by devBetter.com.

    Sponsor - devBetter Group Career Coaching for Developers

    What is devBetter? It's a private group coaching community geared toward accelerating developer careers. We meet weekly for live Q&A sessions and have an active Discord-based discussion the rest of the week. Topics range from coding skills to interviewing and personal branding. Check out devBetter.com and read the testimonials at the bottom of the page.

    Building a Blazor Object Picker with guest Carl Franklin

    This week's guest is Carl Franklin, host of .NET Rocks and Blazor trainer. Carl and I discuss Blazor in general and look at how to create a generic object picker control for Blazor.

    Show Resources and Links

    That’s it for this week. If you want to hear more from me, go to ardalis.com/tips to sign up for a free tip in your inbox every Wednesday. I'm also streaming programming topics on twitch.tv/ardalis most Fridays at noon Eastern Time. Thank you for subscribing to Weekly Dev Tips, and I'll see you next week with another great developer tip.

    9 March 2020, 6:30 am
  • 7 minutes 46 seconds
    A/B Testing with Azure with guest Lars Klint

    Hi and welcome back to Weekly Dev Tips. I’m your host Steve Smith, aka Ardalis.

    This is episode 65 on simple and inexpensive A/B testing with Azure, with guest Lars Klint.

    This week's tip is brought to you by devBetter.com.

    Sponsor - devBetter Group Career Coaching for Developers

    What is devBetter? It's a private group coaching community geared toward accelerating developer careers. We meet weekly for live Q&A sessions and have an active Discord-based discussion the rest of the week. Topics range from coding skills to interviewing and personal branding. Check out devBetter.com and read the testimonials at the bottom of the page.

    A/B Testing with Azure with guest Lars Klint

    This week's guest is Lars Klint, a well-known cloud expert, speaker, and trainer who works for training company A Cloud Guru.

    Show Resources and Links

    That’s it for this week. If you want to hear more from me, go to ardalis.com/tips to sign up for a free tip in your inbox every Wednesday. I'm also streaming programming topics on twitch.tv/ardalis most Fridays at noon Eastern Time. Thank you for subscribing to Weekly Dev Tips, and I'll see you next week with another great developer tip.

    2 March 2020, 7:00 am
  • More Episodes? Get the App
© MoonFM 2024. All rights reserved.