Awesmoe! Please make more tutorials. This channel deserve much more attention. I learned an effective processes of building SW. I used to be confused about TDD, and your demo proved that it just so simple, easy, natrual and enjoyable.
@emil-kirilov7 жыл бұрын
21 minutes well spent! Good job, Michael!
@hieulamtri55355 жыл бұрын
This is simply awesome. I am new to elixir but I can understand and learn a lot from your videos. Thank you so much!!!
@bigmaster12927 жыл бұрын
i understand OTP very clearly. your elixir tutrials are very outstanding .
@explorer-xe7rt5 жыл бұрын
I learnt a lot from your videos. Many thanks. Hope you find time to make part 3,4 and many more :)
@holanepal7 жыл бұрын
very nice tutorials for understand genserver and elixir . waiting for part 3 .....
@bigmaster12927 жыл бұрын
waiting for part 3 & 4.plz make 3 and 4 part. thank you
@omgneering7 жыл бұрын
I know I fell a bit behind, but I intend to get back to our delivery company soon :)
@pringlized7 жыл бұрын
+1. This is a fantastic series of tutorials. Thank you soooo much for taking the time to do this. Can't wait for the next parts.
@deimuader4 жыл бұрын
@@omgneering I know you just released a new series of great videos concerning a Phoenix app, but I still hope that you'll find the time to finish this series as well. Thanks, keep up the good work! :)
@GustavoCaso7 жыл бұрын
Great tutorial, hope to see the next one regarding Application design
@abrampers7 жыл бұрын
This is very useful. Keep it up!!!
@07001101147 жыл бұрын
Thanks a lot for this tutorial. It's very useful.
@satish.b7 жыл бұрын
Would you rather use an Agent instead of another GenServer for the PostalCode.Cache? Also, would you recommend something like redis to take into account that almost any application server can have a single location for a cache in case there is more than one server? Or does OTP provide anything for that? Thanks a lot for all your tutorials. Unbelievably good.
@JagaSantagostino7 жыл бұрын
So good! Great tutorials thanks
@inventorBlack3 жыл бұрын
Super useful!
@guavavodka7 жыл бұрын
When will you do part 3!
@tamasvarga98626 жыл бұрын
There is a flaw in the validation of the area codes. Integer.to_string removes the zeros from the start of the number, so the app won't work with any area codes that begin with zeros and are given as integers (in your code none of the test cases begin with zeroes). I had to circumvent the problem like this: postal_code = cond do String.length(postal_code) == 3 -> "00" postal_code String.length(postal_code) == 4 -> "0" postal_code true -> postal_code end
@diahrongrismore10547 жыл бұрын
Nice tutorial. However, around time-mark 12:30 everything went wrong and I can't seem to figure out what happened. Didn't know where to go to get some help to get past 12:30 and finish your tutorial. Where can I post the errors I received while trying to compile the program at this point?
@omgneering7 жыл бұрын
The error is expected at this point. If it's something different, send the error or a screenshot to michael@omgneering.com and we'll figure it out