Podcasts about busy developers

  • 8PODCASTS
  • 10EPISODES
  • 1h 4mAVG DURATION
  • ?INFREQUENT EPISODES
  • Oct 5, 2023LATEST

POPULARITY

20172018201920202021202220232024


Best podcasts about busy developers

Latest podcast episodes about busy developers

Software Engineering Radio - The Podcast for Professional Software Developers
SE Radio 584: Charles Weir on Ruthless Security for Busy Developers

Software Engineering Radio - The Podcast for Professional Software Developers

Play Episode Listen Later Oct 5, 2023 60:49


Charles Weir—developer, security researcher, and Research Fellow at Security Lancaster—joins host Giovanni Asproni to discuss an approach that development teams can use to create secure systems without wasting effort on unnecessary security work. The episode starts with a broad description of the approach, which is based on Weir's research and on a free Developer Security Essentials workshop he created. Charles presents some examples from real-world projects, his view on AI's impact on security, and information about the workshop and where to find the materials. During the conversation, they consider several related topics including the concept of "good enough" security; security as a product decision; risk assessment, classification, and prioritization; and how to approach security in startups, greenfield, and legacy systems.

Devchat.tv Master Feed
VoV 099: Testing in Vue with The Jared Wilcurt

Devchat.tv Master Feed

Play Episode Listen Later Feb 25, 2020 60:33


The Jared Wilcurt, a prolific Vue developer leads the panelists of Views on Vue into an educational episode on writing tests in Vue. He also speaks about a library that he has been working on that solves a bunch of problems around snapshot testing in Vue. Panel: Steve Edwards Devlin Duldulao Austin Gil Deane Venske Guest: The Jared Wilcurt Sponsors: Springboard | Click here NOW for $500 off the course Cloudways | Use promo code "DEVCHAT" for 30% off for 3 months on all plans ____________________________________________________________   "The MaxCoders Guide to Finding Your Dream Developer Job" by Charles Max Wood is now available on Amazon. Get Your Copy Today! ____________________________________________________________ Links: Snapshot Testing · Jest jest-serializer Vue Test Utils Clean Coders: Training videos. With personality. For software professionals. The Jared Wilcurt - DEV Community Picks: The Jared Wilcurt: Follow The Jared on Twitter @TheJaredWilcurt, Github, Website A Beautiful Day in the Neighborhood Devlin Duldulao: Calvin and Hobbes Deane Venske: The Witcher Series Daily - Source for Busy Developers Austin Gil: @types/jest - npm eslint-plugin-vue mostly-adequate-guide Steve Edwards: Safely Home by Randy Alcorn

Views on Vue
VoV 099: Testing in Vue with The Jared Wilcurt

Views on Vue

Play Episode Listen Later Feb 25, 2020 60:33


The Jared Wilcurt, a prolific Vue developer leads the panelists of Views on Vue into an educational episode on writing tests in Vue. He also speaks about a library that he has been working on that solves a bunch of problems around snapshot testing in Vue. Panel: Steve Edwards Devlin Duldulao Austin Gil Deane Venske Guest: The Jared Wilcurt Sponsors: Springboard | Click here NOW for $500 off the course Cloudways | Use promo code "DEVCHAT" for 30% off for 3 months on all plans ____________________________________________________________   "The MaxCoders Guide to Finding Your Dream Developer Job" by Charles Max Wood is now available on Amazon. Get Your Copy Today! ____________________________________________________________ Links: Snapshot Testing · Jest jest-serializer Vue Test Utils Clean Coders: Training videos. With personality. For software professionals. The Jared Wilcurt - DEV Community Picks: The Jared Wilcurt: Follow The Jared on Twitter @TheJaredWilcurt, Github, Website A Beautiful Day in the Neighborhood Devlin Duldulao: Calvin and Hobbes Deane Venske: The Witcher Series Daily - Source for Busy Developers Austin Gil: @types/jest - npm eslint-plugin-vue mostly-adequate-guide Steve Edwards: Safely Home by Randy Alcorn

No BS Engineering
Networking for Busy Developers

No BS Engineering

Play Episode Listen Later Sep 26, 2019 37:59


Networking is not just for sales people, it’s for everyone. If you are ever going to need another job, another client, another community member, you are going to have to […] The post Networking for Busy Developers appeared first on No BS Engineering.

networking busy developers
Devchat.tv Master Feed
EMx 021: “Dialyzer Pretty Printing” with Andrew Summers

Devchat.tv Master Feed

Play Episode Listen Later Oct 2, 2018 53:34


Panel: Charles Max Wood Mark Eriksen Eric Berry Special Guest: Andrew Summers In this episode of Elixir Mix, the panel talks to Andrew Summers who lives in Chicago, currently. Working on Elixir development, and here to talk about how he wrote the dialyzer pretty printer. He is a software engineer for Albert.io, makes cool stuff every day, loves punk music, and Philadelphia sports. The panel talks about the Dialyzer pretty printing, Elixir, code writing, and more! Show Topics: 1:07 – Why are you famous? 1:11 – Andrew: Answers the question. 1:34 – Chuck: Nice. Is the dialyzer printer complete pretty printing or is it more than that? 1:45 – Andrew talks. He mentions the background information on this specific printer, which was written a decade ago. 4:13 – Panel: One thing that is helpful is that it is a static code analysis. In the Elixir we are writing these spec statements. For nothing else than this type is coming out. Then this looks at the code, and your spec says you are returning this, but I can tell that you are also returning X, Y, or Z. So it is helping us see what we are declaring a code to do, and that’s really what the code is doing. 5:28 – Guest: Yes, exactly. To continue that topic here is what else it’s saying... 6:08 – Panel: Our panelist is not here, but he has had to fix code before with that problem. With Dialect Dialyzer – how do we say this library is out-of-date? The code is out-of-date. How do I get my stuff to pass – to clean up my site? 6:54 – Guest: Containing that warning. Guest goes into further detail how to problem-solve this issue. 8:02 – Panel: So you are saying that I can funnel. 8:20 – Panel & Guest go back-and-forth talking about this topic. 9:49 – Panel: I am still diving into the system. Haven’t really used the printer, yet. Panelist asks Guest a question. 10:04 – Guest: At the forefront there are some configurations to help with that. 11:16 – Panel: Why would someone not want to use this? What are the cons? 11:23 – Guest: It would have to do more with CI than anything (one con). 13:06 – Panel: Lots of people are coming to Elixir New. Great. What is the selling point? Why should someone invest his or her time in this project? 13:33 – Guest: I find looking for a type spec is one more piece of information that could help the reader that would tell them what the code should be doing. Any information from the original author to be passed down is great. Having the machine to check that, whenever you push code, it’s an imperfect check (as we were saying). If it can tell you that you did something wrong, then why not? It gives you that extra red flag. There are huge benefits to that. Same reason we write unit tests. 15:20 – Panel: You are learning Elixir right, Chuck? Panelist talks about tech specs, code writing, and learning projects. 16:25 – Panel: Here is a tip to learning. One thing that I did I came to an existing project and writing a sub-system ( as series of modules) Writing the tech specs. As they are interacting with each other, then writing Dial Elixir, and grab the output to the file path to where my code is. Within my own code find where I am inconsistent. Andrew – you could get pages of output, right? Any tips for users? 17:37 – Guest: Isolate portions of your code base. 19:27 – Chuck: I do like the idea of the umbrella. Phoenix app out into an umbrella. A sub apps and they are more centered, smaller sized. Then, yeah. Start with Dialyzer on just that project. Isolate it, and this app in the umbrella. The output is much smaller, and good success with that. Now, one of the new features you added was the language / the code that it reports is an ERLANG term. That is not familiar to most Elixir developers. Especially if you are new to it. If you are turning this into a friendly Elixir thing, then you had to learn other programs. How did you get into this path? 21:00 – Andrew: Whenever there was complicated “something” at work – I was the person to go to. As I started to do it more and more I saw patterns in the output. Things were kind of predictable, and how to format things. It synchronizes weird. What would I do to write this task? Researched. There are 2 tools = LEEX and YECC. If you have 2 files in your source directory... 22:56 – Advertisement – Digital Ocean 23:39 – Panel: It’s cool. 23:58 – Guest: It brought me back to some courses from school. I thought that was funny. They are pretty contained tools. 24:36 – Panel: Part of your motivation was from Jose. 24:49 – Guest: Yes, definitely. 25:39 – Did you have any questions for Jose? 26:35 – Panel: You added the feature of... CREDO is pretty well-known. 27:28 – Guest: Sure, I guess I did skip some of that. Andrew talked about different libraries, ERLANG modules, and so on. 28:38 – Panel: What else are you doing? 28:45 – Getting error messages fixed for version 1.0. Trying to close-up the residual things. 30:18 – Guest keeps talking about support and other bugs. Andrew: If you see something, say something. 31:00 - Panel: There are languages that run on the beam. Something to create something more standard so different languages can depend on. Is there anything like that? To help you with your tooling? 31:40 – Andrew: Good question! Some of the things that happen at the Dialyzer level, stuff just gets dropped. 33:47 – Guest: How this works all together... 35:15 – Chuck: How to contribute to Dialyxir? 35:30 – Guest: Around error messages – is the best place to look. If you have a good editor hand, good place for that. If you are further into the compiler land – might want to play with that. 36:29 – Guest: ERLEX 36:43 – Chuck: What did you learn about building these libraries? 36:55 – Guest: I learned a lot about the construction of Elixir. Guest dives into this more. 38:25 – Chuck: The principle that you cannot bind... 38:51 – Guest: ...this area of my code-base... it would be nice to turn off those features. When I really do need it – I need it, but not so if I don’t need it. 39:39 – Panel: I want to point someone to a resource: TypeSpecs. 39:54 – Guest: I used that so much! Wonderful resource, I learned so much stuff! I stole all the output from that. I didn’t know that language had that?! 40:20 – Panel chimes in about this resource some more. 41:02 – Guest: We really do have a simple language. There are some weird things, but not a lot of constructs under the hood. Only a few data structures. It could have been more complicated. I was worried about that – but that never happened, because... 41:41 – Panel: Thanks for adding that. Very true. 42:51 – Guest talks about other things that are very simple, too. 44:35 – Panel: Are you doing fulltime with Elixir for programming? 44:35 – Guest: Yes, we are using other Elixir and JS App. In another life I used... They all can teach you something. Sometimes the journey of going there and realizing WHY you don’t want to be there is sometimes worth the journey! 45:20 – Panel asks guest a question. 45:25 – Guest answers question. Andrew: We have enjoyed our time in Elixir. It’s nice. 46:27 – Panel: Anything else? 46:33 – Panel: Where can people find you online? 46:40 – Guest: Elixir Slack, Twitter, GitHub. 47:01 – Picks! 47:05 – Advertisement – Code Badges Links: Andrew Summers’ Twitter Credo Erlang Dialyxir LEEX YECC Credo ERLEX TypeSpecs Curated Dev News for Busy Developers EX_JSON_SCHEMA React – Jsonschema – form Announcing Distillery 2.0 Distillery’s documentation! MKDocs EX_Json_Schema Sponsors: Get a Coder Job Digital Ocean Code Badges Cache Fly Picks: Eric Chrome Extension for News Mark Announcing Distillery 2.0 MKdocs https://hexdocs.pm/distillery/home.html. Charles  Launch by Jeff Walker Downcast Andrew Ex json Schema React json schema from

chicago news writing philadelphia launch panel react github printing panelists distilleries credo elixir advertisement isolate schema researched downcast digital ocean jeff walker chrome extensions erlang eric berry cachefly chuck nice panel one charles max wood go1gb907osh060513 elixir mix chuck how coder job andrew summers mkdocs code badges panel you panel it dialyzer leex busy developers dialyxir panel there panel so panel why panel are panel anything
Elixir Mix
EMx 021: “Dialyzer Pretty Printing” with Andrew Summers

Elixir Mix

Play Episode Listen Later Oct 2, 2018 53:34


Panel: Charles Max Wood Mark Eriksen Eric Berry Special Guest: Andrew Summers In this episode of Elixir Mix, the panel talks to Andrew Summers who lives in Chicago, currently. Working on Elixir development, and here to talk about how he wrote the dialyzer pretty printer. He is a software engineer for Albert.io, makes cool stuff every day, loves punk music, and Philadelphia sports. The panel talks about the Dialyzer pretty printing, Elixir, code writing, and more! Show Topics: 1:07 – Why are you famous? 1:11 – Andrew: Answers the question. 1:34 – Chuck: Nice. Is the dialyzer printer complete pretty printing or is it more than that? 1:45 – Andrew talks. He mentions the background information on this specific printer, which was written a decade ago. 4:13 – Panel: One thing that is helpful is that it is a static code analysis. In the Elixir we are writing these spec statements. For nothing else than this type is coming out. Then this looks at the code, and your spec says you are returning this, but I can tell that you are also returning X, Y, or Z. So it is helping us see what we are declaring a code to do, and that’s really what the code is doing. 5:28 – Guest: Yes, exactly. To continue that topic here is what else it’s saying... 6:08 – Panel: Our panelist is not here, but he has had to fix code before with that problem. With Dialect Dialyzer – how do we say this library is out-of-date? The code is out-of-date. How do I get my stuff to pass – to clean up my site? 6:54 – Guest: Containing that warning. Guest goes into further detail how to problem-solve this issue. 8:02 – Panel: So you are saying that I can funnel. 8:20 – Panel & Guest go back-and-forth talking about this topic. 9:49 – Panel: I am still diving into the system. Haven’t really used the printer, yet. Panelist asks Guest a question. 10:04 – Guest: At the forefront there are some configurations to help with that. 11:16 – Panel: Why would someone not want to use this? What are the cons? 11:23 – Guest: It would have to do more with CI than anything (one con). 13:06 – Panel: Lots of people are coming to Elixir New. Great. What is the selling point? Why should someone invest his or her time in this project? 13:33 – Guest: I find looking for a type spec is one more piece of information that could help the reader that would tell them what the code should be doing. Any information from the original author to be passed down is great. Having the machine to check that, whenever you push code, it’s an imperfect check (as we were saying). If it can tell you that you did something wrong, then why not? It gives you that extra red flag. There are huge benefits to that. Same reason we write unit tests. 15:20 – Panel: You are learning Elixir right, Chuck? Panelist talks about tech specs, code writing, and learning projects. 16:25 – Panel: Here is a tip to learning. One thing that I did I came to an existing project and writing a sub-system ( as series of modules) Writing the tech specs. As they are interacting with each other, then writing Dial Elixir, and grab the output to the file path to where my code is. Within my own code find where I am inconsistent. Andrew – you could get pages of output, right? Any tips for users? 17:37 – Guest: Isolate portions of your code base. 19:27 – Chuck: I do like the idea of the umbrella. Phoenix app out into an umbrella. A sub apps and they are more centered, smaller sized. Then, yeah. Start with Dialyzer on just that project. Isolate it, and this app in the umbrella. The output is much smaller, and good success with that. Now, one of the new features you added was the language / the code that it reports is an ERLANG term. That is not familiar to most Elixir developers. Especially if you are new to it. If you are turning this into a friendly Elixir thing, then you had to learn other programs. How did you get into this path? 21:00 – Andrew: Whenever there was complicated “something” at work – I was the person to go to. As I started to do it more and more I saw patterns in the output. Things were kind of predictable, and how to format things. It synchronizes weird. What would I do to write this task? Researched. There are 2 tools = LEEX and YECC. If you have 2 files in your source directory... 22:56 – Advertisement – Digital Ocean 23:39 – Panel: It’s cool. 23:58 – Guest: It brought me back to some courses from school. I thought that was funny. They are pretty contained tools. 24:36 – Panel: Part of your motivation was from Jose. 24:49 – Guest: Yes, definitely. 25:39 – Did you have any questions for Jose? 26:35 – Panel: You added the feature of... CREDO is pretty well-known. 27:28 – Guest: Sure, I guess I did skip some of that. Andrew talked about different libraries, ERLANG modules, and so on. 28:38 – Panel: What else are you doing? 28:45 – Getting error messages fixed for version 1.0. Trying to close-up the residual things. 30:18 – Guest keeps talking about support and other bugs. Andrew: If you see something, say something. 31:00 - Panel: There are languages that run on the beam. Something to create something more standard so different languages can depend on. Is there anything like that? To help you with your tooling? 31:40 – Andrew: Good question! Some of the things that happen at the Dialyzer level, stuff just gets dropped. 33:47 – Guest: How this works all together... 35:15 – Chuck: How to contribute to Dialyxir? 35:30 – Guest: Around error messages – is the best place to look. If you have a good editor hand, good place for that. If you are further into the compiler land – might want to play with that. 36:29 – Guest: ERLEX 36:43 – Chuck: What did you learn about building these libraries? 36:55 – Guest: I learned a lot about the construction of Elixir. Guest dives into this more. 38:25 – Chuck: The principle that you cannot bind... 38:51 – Guest: ...this area of my code-base... it would be nice to turn off those features. When I really do need it – I need it, but not so if I don’t need it. 39:39 – Panel: I want to point someone to a resource: TypeSpecs. 39:54 – Guest: I used that so much! Wonderful resource, I learned so much stuff! I stole all the output from that. I didn’t know that language had that?! 40:20 – Panel chimes in about this resource some more. 41:02 – Guest: We really do have a simple language. There are some weird things, but not a lot of constructs under the hood. Only a few data structures. It could have been more complicated. I was worried about that – but that never happened, because... 41:41 – Panel: Thanks for adding that. Very true. 42:51 – Guest talks about other things that are very simple, too. 44:35 – Panel: Are you doing fulltime with Elixir for programming? 44:35 – Guest: Yes, we are using other Elixir and JS App. In another life I used... They all can teach you something. Sometimes the journey of going there and realizing WHY you don’t want to be there is sometimes worth the journey! 45:20 – Panel asks guest a question. 45:25 – Guest answers question. Andrew: We have enjoyed our time in Elixir. It’s nice. 46:27 – Panel: Anything else? 46:33 – Panel: Where can people find you online? 46:40 – Guest: Elixir Slack, Twitter, GitHub. 47:01 – Picks! 47:05 – Advertisement – Code Badges Links: Andrew Summers’ Twitter Credo Erlang Dialyxir LEEX YECC Credo ERLEX TypeSpecs Curated Dev News for Busy Developers EX_JSON_SCHEMA React – Jsonschema – form Announcing Distillery 2.0 Distillery’s documentation! MKDocs EX_Json_Schema Sponsors: Get a Coder Job Digital Ocean Code Badges Cache Fly Picks: Eric Chrome Extension for News Mark Announcing Distillery 2.0 MKdocs https://hexdocs.pm/distillery/home.html. Charles  Launch by Jeff Walker Downcast Andrew Ex json Schema React json schema from

chicago news writing philadelphia launch panel react github printing panelists distilleries credo elixir advertisement isolate schema researched downcast digital ocean jeff walker chrome extensions erlang eric berry cachefly chuck nice panel one charles max wood go1gb907osh060513 elixir mix chuck how coder job andrew summers mkdocs code badges panel you panel it dialyzer leex busy developers dialyxir panel there panel so panel why panel are panel anything
Devchat.tv Master Feed
AiA 200: Episode 200

Devchat.tv Master Feed

Play Episode Listen Later Jul 31, 2018 83:51


Panel: Charles Max Wood Shai Reznik Joe Eames Alyssa Nicoll Ward Bell In this episode, the Adventures in Angular panel celebrates creating 200 episodes of Adventures in Angular! They talk about the origin of the show, how each of them came across the show and were asked to join the panel, and if there is a future for Angular. They also touch on where they see Angular going in the future, how difficult it is to predict how things are going to pan out in the next few years, and more! In particular, we dive pretty deep on: The first episodes of Adventures in Angular The origins of the show Angular was really picking up – make a podcast Chuck originally turned down the idea for the show Now get around 8,500 downloads per episode Alyssa heard about the show from ngConf Is there a future for Angular? What does Angular’s future look like? Why I am betting my future on Angular 2 – Shai talk from 2016 Angular is here to stay Angular IV Learning the first 80% of different technologies is easy, the last 20% is the hard part Angular in Depth blog Angular is solving the right problems Hard to know if Angular is going to be around for the long haul Incumbent technology as we move forward You never know what’s going to come up next New technologies are the main “threat” The case for Angular Enterprise level products Vue, React, and Ember Having alternatives is a good thing And much, much more! Links: Adventures in Angular Angular ngConf Why I am betting my future on Angular 2 – Shai talk from 2016 Angular in Depth blog Vue React Ember Sponsors Angular Boot Camp Digital Ocean FreshBooks Picks: Charles Landscaping Home Depot Chuck@devchat.tv Shai Pact JS TestAngular.com Alyssa Angular Crash Course for Busy Developers by Mosh Hamedani Angular NgRX course by Deborah Kurata Joe Framework Summit A Quiet Place Notion WorkFlowy Ward NWLA Tournament

learning adventures panel depth ward enterprise react home depot quiet place notion landscaping shai vue angular freshbooks incumbent digital ocean workflowy charles max wood ng conf joe eames ward bell shai reznik framework summit deborah kurata alyssa nicoll angular boot camp busy developers nwla tournament testangular mosh hamedani
All Angular Podcasts by Devchat.tv
AiA 200: Episode 200

All Angular Podcasts by Devchat.tv

Play Episode Listen Later Jul 31, 2018 83:51


Panel: Charles Max Wood Shai Reznik Joe Eames Alyssa Nicoll Ward Bell In this episode, the Adventures in Angular panel celebrates creating 200 episodes of Adventures in Angular! They talk about the origin of the show, how each of them came across the show and were asked to join the panel, and if there is a future for Angular. They also touch on where they see Angular going in the future, how difficult it is to predict how things are going to pan out in the next few years, and more! In particular, we dive pretty deep on: The first episodes of Adventures in Angular The origins of the show Angular was really picking up – make a podcast Chuck originally turned down the idea for the show Now get around 8,500 downloads per episode Alyssa heard about the show from ngConf Is there a future for Angular? What does Angular’s future look like? Why I am betting my future on Angular 2 – Shai talk from 2016 Angular is here to stay Angular IV Learning the first 80% of different technologies is easy, the last 20% is the hard part Angular in Depth blog Angular is solving the right problems Hard to know if Angular is going to be around for the long haul Incumbent technology as we move forward You never know what’s going to come up next New technologies are the main “threat” The case for Angular Enterprise level products Vue, React, and Ember Having alternatives is a good thing And much, much more! Links: Adventures in Angular Angular ngConf Why I am betting my future on Angular 2 – Shai talk from 2016 Angular in Depth blog Vue React Ember Sponsors Angular Boot Camp Digital Ocean FreshBooks Picks: Charles Landscaping Home Depot Chuck@devchat.tv Shai Pact JS TestAngular.com Alyssa Angular Crash Course for Busy Developers by Mosh Hamedani Angular NgRX course by Deborah Kurata Joe Framework Summit A Quiet Place Notion WorkFlowy Ward NWLA Tournament

learning adventures panel depth ward enterprise react home depot quiet place notion landscaping shai vue angular freshbooks incumbent digital ocean workflowy charles max wood ng conf joe eames ward bell shai reznik framework summit deborah kurata alyssa nicoll angular boot camp busy developers nwla tournament testangular mosh hamedani
Adventures in Angular
AiA 200: Episode 200

Adventures in Angular

Play Episode Listen Later Jul 31, 2018 83:51


Panel: Charles Max Wood Shai Reznik Joe Eames Alyssa Nicoll Ward Bell In this episode, the Adventures in Angular panel celebrates creating 200 episodes of Adventures in Angular! They talk about the origin of the show, how each of them came across the show and were asked to join the panel, and if there is a future for Angular. They also touch on where they see Angular going in the future, how difficult it is to predict how things are going to pan out in the next few years, and more! In particular, we dive pretty deep on: The first episodes of Adventures in Angular The origins of the show Angular was really picking up – make a podcast Chuck originally turned down the idea for the show Now get around 8,500 downloads per episode Alyssa heard about the show from ngConf Is there a future for Angular? What does Angular’s future look like? Why I am betting my future on Angular 2 – Shai talk from 2016 Angular is here to stay Angular IV Learning the first 80% of different technologies is easy, the last 20% is the hard part Angular in Depth blog Angular is solving the right problems Hard to know if Angular is going to be around for the long haul Incumbent technology as we move forward You never know what’s going to come up next New technologies are the main “threat” The case for Angular Enterprise level products Vue, React, and Ember Having alternatives is a good thing And much, much more! Links: Adventures in Angular Angular ngConf Why I am betting my future on Angular 2 – Shai talk from 2016 Angular in Depth blog Vue React Ember Sponsors Angular Boot Camp Digital Ocean FreshBooks Picks: Charles Landscaping Home Depot Chuck@devchat.tv Shai Pact JS TestAngular.com Alyssa Angular Crash Course for Busy Developers by Mosh Hamedani Angular NgRX course by Deborah Kurata Joe Framework Summit A Quiet Place Notion WorkFlowy Ward NWLA Tournament

learning adventures panel depth ward enterprise react home depot quiet place notion landscaping shai vue angular freshbooks incumbent digital ocean workflowy charles max wood ng conf joe eames ward bell shai reznik framework summit deborah kurata alyssa nicoll angular boot camp busy developers nwla tournament testangular mosh hamedani
DevNexus Podcast
Devnexus 2014 - Ted Neward - Busy Developers Guide to NoSQL.mp3

DevNexus Podcast

Play Episode Listen Later Oct 2, 2014


guide nosql ted neward busy developers