Sinopsis
Take Up Code is a podcast that explains computer programming topics through fun and engaging examples that you can relate to. The guided format allows you to gain valuable understanding of topics that will reinforce your studies, allow you to train new skills that you can apply on your job, and change your thinking about what it takes to become a professional programmer. The episodes are as short as possible so you can squeeze them into your daily routine.
Episodios
-
159: TCP: Transmission Control Protocol.
28/11/2016 Duración: 08minKnowing where to send information through IP is not enough. You have to know how to reliably send information too.
-
158: IP: Internet Protocol Addresses.
21/11/2016 Duración: 09minAny computer or device that wants to communicate with the Internet Protocol needs an IP address to uniquely identify the device.
-
157: DNS: Domain Name System.
14/11/2016 Duración: 09minWhy do we need a system for managing domain names?
-
156: URLs, URNs, URCs, Data URIs, and URIs.
07/11/2016 Duración: 12minIt is almost a tongue twister to say them all. Do you know what they all mean?
-
155: HTML vs. HTTP: How Do They Compare?
31/10/2016 Duración: 07minThere is more than just two letters difference. In fact, you can not really compare them at all. But you can use them together.
-
154: Data: JSON JavaScript Object Notation.
24/10/2016 Duración: 05minLike XML, JSON is also a way to represent data that is readable by both humans and computers.
-
153: Data: XML Extensible Markup Language.
17/10/2016 Duración: 08minXML was designed to solve two main purposes. To allow information to be stored and transported and to allow both humans and computers to read and modify the information.
-
152: Distributed Computing: APIs Have Changed.
10/10/2016 Duración: 09minYou might be more familiar with APIs than SOA but they had another meaning not very long ago.
-
151: The More You Learn.
03/10/2016 Duración: 07minAs you learn more about something, a strange thing happens. It becomes obvious how much more there is to still be learned.
-
150: Distributed Computing: SOA
26/09/2016 Duración: 06minService Oriented Architecture or SOA for short can mean different things. At the core, is the ability to send a message over a network to an isolated destination for a specific business purpose.
-
149: Step By Step Perfection.
19/09/2016 Duración: 10minKnowing where to spend your time and focus will help you finish projects without getting stuck in details.
-
148: CAP Theorem: Choose Two, Or Is It One?
12/09/2016 Duración: 08minConsistency, Availability, and Partition Tolerance are three aspects of distributed computing. And a fourth not included in the theorem is Latency.
-
147: Distributed Computing: Ready? Yes. Done.
05/09/2016 Duración: 08minTwo-phase and three-phase commits will help you design solutions that need to work across multiple computers.
-
146: Distributed Computing: It Happened When?
29/08/2016 Duración: 10minComputers rely on clocks. They coordinate everything. But the clocks on different computers can be slightly off from each other.
-
-
145: Distributed Computing: Four Reasons.
22/08/2016 Duración: 11minDividing work between multiple computers is sometimes the best way to solve a problem.
-
-
144: Data Types: C++ nullptr Is Not Zero.
15/08/2016 Duración: 08minnullptr represents a null pointer and while it has a value of zero, the type is not the same.
-
-
143: Where And How To Use Whitespace.
08/08/2016 Duración: 09minMaking code more readable sometimes means knowing where to put nothing.