Base.cs Podcast

Base.cs Podcast

Podcast door CodeNewbie

Probeer 14 dagen gratis

€ 9,99 / maand na proefperiode.Elk moment opzegbaar.

Probeer gratis
Phone screen with podimo app open surrounded by emojis

Meer dan 1 miljoen luisteraars

Je zult van Podimo houden en je bent niet de enige

Rated 4.7 in the App Store

Over Base.cs Podcast

Beginner-friendly computer science lessons based on Vaidehi Joshi's base.cs blog series, produced by CodeNewbie.

Alle afleveringen

73 afleveringen
episode S9:E8 - "In the end, the code you take is equal to the code you make" artwork
S9:E8 - "In the end, the code you take is equal to the code you make"

For our final episode, we answer your burning questions including the Base.cs origin story, Saron and Vaidehi's favorite niche data structure, and what are some good resources to check out next. We also take a look back at some of our favorite moments from the show's history, and find a couple of fun themes. Based on Vaidehi Joshi's blog post, "Base.cs" [https://medium.com/basecs]. WE'RE ON PATREON! If you like the show and want to support our work, become a patron here [http://bit.ly/2F74wqR]. You'll get stickers, postcards, and even socks. Let's make computer science more accessible and fun! VAIDEHI JOSHI (CO-HOST) Vaidehi is a writer and an engineer at Tilde, where she works on Skylight. She's the creator of basecs [https://medium.com/basecs], a weekly writing series that explores the fundamentals of computer science. SARON YITBAREK (CO-HOST) Saron is a developer, podcaster, founder of CodeNewbie, and host of the CodeNewbie Podcast [https://www.codenewbie.org/podcast]. CODENEWBIE CodeNewbie is the most supportive community of programmers and people learning to code. They produce the CodeNewbie Podcast and the annual Codeland conference. Follow them on twitter @CodeNewbies [https://twitter.com/codenewbies]. For more info, checkout www.codenewbie.org

25 mrt 2020 - 26 min
episode S9:E7 - "This way to translate is le-JIT" artwork
S9:E7 - "This way to translate is le-JIT"

We've been talking a lot about the differences between compilers and interpreters, and how both of them work, and the ways that allowed one — the compiler — to lead to the creation of the other — the interpreter. Now we get into the Just In Time compiler, or a JIT, which is fusion or combination of the interpreter and the compiler, which are each two types of translators in their own right. A just-in-time compiler has many of the benefits of both of these two translation techniques, all rolled up into one. Based on Vaidehi Joshi's blog post, "A Most Perfect Union: Just-In-Time Compilers" [https://medium.com/basecs/a-most-perfect-union-just-in-time-compilers-2938712a9f6a]. WE'RE ON PATREON! If you like the show and want to support our work, become a patron here [http://bit.ly/2F74wqR]. You'll get stickers, postcards, and even socks. Let's make computer science more accessible and fun! VAIDEHI JOSHI (CO-HOST) Vaidehi is a writer and an engineer at Tilde, where she works on Skylight. She's the creator of basecs [https://medium.com/basecs], a weekly writing series that explores the fundamentals of computer science. SARON YITBAREK (CO-HOST) Saron is a developer, podcaster, founder of CodeNewbie, and host of the CodeNewbie Podcast [https://www.codenewbie.org/podcast]. CODENEWBIE CodeNewbie is the most supportive community of programmers and people learning to code. They produce the CodeNewbie Podcast and the annual Codeland conference. Follow them on twitter @CodeNewbies [https://twitter.com/codenewbies]. For more info, checkout www.codenewbie.org

18 mrt 2020 - 21 min
episode S9:E6 - "Two translators, both alike in dignity" artwork
S9:E6 - "Two translators, both alike in dignity"

We have been talking a lot about compilers, and in this episode we discuss the differences between compilation versus interpretation. An interpreter is also a translator, just like a compiler, in that it takes a high level language (our source text) and converts it into machine code. However, it does something slightly different: it actually runs and executes the code that it translates immediately (inline) as it translates. Based on Vaidehi Joshi's blog post, "A Deeper Inspection Into Compilation And Interpretation" [https://medium.com/basecs/a-deeper-inspection-into-compilation-and-interpretation-d98952ebc842]. WE'RE ON PATREON! If you like the show and want to support our work, become a patron here [http://bit.ly/2F74wqR]. You'll get stickers, postcards, and even socks. Let's make computer science more accessible and fun! VAIDEHI JOSHI (CO-HOST) Vaidehi is a writer and an engineer at Tilde, where she works on Skylight. She's the creator of basecs [https://medium.com/basecs], a weekly writing series that explores the fundamentals of computer science. SARON YITBAREK (CO-HOST) Saron is a developer, podcaster, founder of CodeNewbie, and host of the CodeNewbie Podcast [https://www.codenewbie.org/podcast]. CODENEWBIE CodeNewbie is the most supportive community of programmers and people learning to code. They produce the CodeNewbie Podcast and the annual Codeland conference. Follow them on twitter @CodeNewbies [https://twitter.com/codenewbies]. For more info, checkout www.codenewbie.org

11 mrt 2020 - 19 min
episode S9:E5 - "Paring down our parse trees with AST" artwork
S9:E5 - "Paring down our parse trees with AST"

In this episode, we take our parse tree, an illustrated, pictorial version of the grammatical structure of a sentence, and we take a metaphorical broom to sweep away repetitive bits, sliming it down, and leveling it up by creating an abstract syntax tree (AST). Based on Vaidehi Joshi's blog post, "Leveling Up One’s Parsing Game With ASTs" [https://medium.com/basecs/leveling-up-ones-parsing-game-with-asts-d7a6fc2400ff]. WE'RE ON PATREON! If you like the show and want to support our work, become a patron here [http://bit.ly/2F74wqR]. You'll get stickers, postcards, and even socks. Let's make computer science more accessible and fun! VAIDEHI JOSHI (CO-HOST) Vaidehi is a writer and an engineer at Tilde, where she works on Skylight. She's the creator of basecs [https://medium.com/basecs], a weekly writing series that explores the fundamentals of computer science. SARON YITBAREK (CO-HOST) Saron is a developer, podcaster, founder of CodeNewbie, and host of the CodeNewbie Podcast [https://www.codenewbie.org/podcast]. CODENEWBIE CodeNewbie is the most supportive community of programmers and people learning to code. They produce the CodeNewbie Podcast and the annual Codeland conference. Follow them on twitter @CodeNewbies [https://twitter.com/codenewbies]. For more info, checkout www.codenewbie.org

04 mrt 2020 - 18 min
episode S9:E4 - "Confused about compilers?" artwork
S9:E4 - "Confused about compilers?"

In this episode, we get into what a compiler is and does. In short, a compiler is a program that reads our code (or any code, in any programming language), and translates it into another language. You'll want to listen in to find out just how it does this! Based on Vaidehi Joshi's blog post, "Reading Code Right, With Some Help From The Lexer" [https://medium.com/basecs/reading-code-right-with-some-help-from-the-lexer-63d0be3d21d]. WE'RE ON PATREON! If you like the show and want to support our work, become a patron here [http://bit.ly/2F74wqR]. You'll get stickers, postcards, and even socks. Let's make computer science more accessible and fun! VAIDEHI JOSHI (CO-HOST) Vaidehi is a writer and an engineer at Tilde, where she works on Skylight. She's the creator of basecs [https://medium.com/basecs], a weekly writing series that explores the fundamentals of computer science. SARON YITBAREK (CO-HOST) Saron is a developer, podcaster, founder of CodeNewbie, and host of the CodeNewbie Podcast [https://www.codenewbie.org/podcast]. CODENEWBIE CodeNewbie is the most supportive community of programmers and people learning to code. They produce the CodeNewbie Podcast and the annual Codeland conference. Follow them on twitter @CodeNewbies [https://twitter.com/codenewbies]. For more info, checkout www.codenewbie.org

26 feb 2020 - 22 min
Super app. Onthoud waar je bent gebleven en wat je interesses zijn. Heel veel keuze!
Super app. Onthoud waar je bent gebleven en wat je interesses zijn. Heel veel keuze!
Makkelijk in gebruik!
App ziet er mooi uit, navigatie is even wennen maar overzichtelijk.
Phone screen with podimo app open surrounded by emojis

Rated 4.7 in the App Store

Probeer 14 dagen gratis

€ 9,99 / maand na proefperiode.Elk moment opzegbaar.

Exclusieve podcasts

Advertentievrij

Gratis podcasts

Luisterboeken

20 uur / maand

Probeer gratis

Alleen bij Podimo

Populaire luisterboeken