├── .deployment ├── .gitattributes ├── .gitignore ├── README.md ├── azure-deploy.cmd ├── config.toml ├── content ├── about │ └── about.md ├── episode │ ├── 2015 │ │ ├── 10 │ │ │ ├── andrei-alexandrescu.md │ │ │ ├── joel-falcou.md │ │ │ ├── julian-storer.md │ │ │ └── kate-gregory-stop-teaching-c.md │ │ ├── 11 │ │ │ ├── dmitri-nesteruk-high-performance-computing.md │ │ │ ├── jon-kalb-cppcon-wrapup.md │ │ │ └── tobias-hunger.md │ │ ├── 12 │ │ │ ├── eric-niebler.md │ │ │ ├── juanpe-bolivar.md │ │ │ ├── jussi-pakkanen.md │ │ │ └── robert-ocallahan.md │ │ ├── 01 │ │ │ └── jon-kalb-loves-the-cpp-community.md │ │ ├── 03 │ │ │ ├── anastasia-kazakova-exploring-clion.md │ │ │ ├── ankit-asthana-cross-plat-mobile-vs.md │ │ │ ├── david-sankel-cmake-git-functional.md │ │ │ └── jason-turner.md │ │ ├── 04 │ │ │ ├── hartmut-kaiser.md │ │ │ ├── manuel-sanchez.md │ │ │ ├── paul-fultz-ii.md │ │ │ └── vittorio-romeo.md │ │ ├── 05 │ │ │ ├── kenny-kerr-modern-cpp-winrt.md │ │ │ ├── phil-nash-testdriven-cpp-using-catch.md │ │ │ ├── robert-ramey-boost2.md │ │ │ └── roland-bock.md │ │ ├── 06 │ │ │ ├── news-roundup-06-2015.md │ │ │ ├── niall-douglas-library-best-practices.md │ │ │ ├── richard-thomson.md │ │ │ └── sean-parent.md │ │ ├── 07 │ │ │ ├── aleksandar-fabijanic.md │ │ │ ├── jf-bastien-webassembly.md │ │ │ └── steve-klabnik.md │ │ ├── 08 │ │ │ ├── david-stone.md │ │ │ ├── edouard-alligand.md │ │ │ ├── james-mcnellis.md │ │ │ └── nicolas-guillemot.md │ │ └── 09 │ │ │ ├── anthony-williams.md │ │ │ ├── brett-hall.md │ │ │ ├── nicolas-lazaraff.md │ │ │ └── scott-meyers.md │ ├── 2016 │ │ ├── 10 │ │ │ ├── dan-saks.md │ │ │ ├── guy-davidson-sg14-update.md │ │ │ ├── jackie-kay.md │ │ │ └── kenny-kerr-cpp-winrt.md │ │ ├── 11 │ │ │ ├── abel-mathew.md │ │ │ ├── daniel-marjamaki.md │ │ │ ├── klaus-iglberger.md │ │ │ └── odin-holmes-kvasir.md │ │ ├── 12 │ │ │ ├── matt-calabrese.md │ │ │ ├── nicolas-fleury.md │ │ │ └── phil-nash-catch2-cpp-community.md │ │ ├── 01 │ │ │ ├── greg-law-undodb-live-recorder.md │ │ │ ├── marc-valle.md │ │ │ ├── mark-logan.md │ │ │ └── matt-godbolt-compiler-explorer.md │ │ ├── 02 │ │ │ ├── bryce-lelbach-hpc.md │ │ │ ├── paul-miller.md │ │ │ └── sohail-somani.md │ │ ├── 03 │ │ │ ├── arne-mertz.md │ │ │ ├── dori-exterman.md │ │ │ ├── jeff-amstutz-software-defined-vis.md │ │ │ └── jonathan-beard.md │ │ ├── 04 │ │ │ ├── ankit-asthana-vs-linux.md │ │ │ ├── elena-sagalaeva.md │ │ │ ├── gunter-obiltschnig.md │ │ │ ├── jens-weller-meeting-cpp.md │ │ │ └── louis-dionne.md │ │ ├── 05 │ │ │ ├── diego-rodriguez-losada.md │ │ │ └── doug-binks.md │ │ ├── 06 │ │ │ ├── anastasia-kazakova-clion.md │ │ │ ├── andrew-pardoe.md │ │ │ ├── herb-sutter-oulu-trip-report.md │ │ │ └── jonathan-muller-memory-standardese.md │ │ ├── 07 │ │ │ ├── alfred-bratterud.md │ │ │ ├── elias-daler.md │ │ │ ├── gabriel-dos-reis.md │ │ │ └── matt-bentley-plf-library.md │ │ ├── 08 │ │ │ ├── michael-afanasiev.md │ │ │ └── stephen-kelly.md │ │ └── 09 │ │ │ ├── chandler-carruth.md │ │ │ ├── klemens-morgenstern.md │ │ │ ├── miodrag-milanovic.md │ │ │ ├── news-roundup-09-2016.md │ │ │ └── titus-winters-maintaining-large-codebases.md │ ├── 2017 │ │ ├── 10 │ │ │ ├── gina-stephens.md │ │ │ ├── isabella-muerte-build-systems-modules.md │ │ │ ├── matt-bentley-plf-list.md │ │ │ └── titus-winters-abseil.md │ │ ├── 11 │ │ │ ├── dave-moore.md │ │ │ ├── pacific-road-show.md │ │ │ ├── rong-lu.md │ │ │ └── victor-ciura.md │ │ ├── 12 │ │ │ ├── arvid-gerstmann.md │ │ │ ├── greg-law-reverse-debugging.md │ │ │ └── nicole-mazzuca.md │ │ ├── 01 │ │ │ ├── brittany-friedman.md │ │ │ ├── marshall-clow.md │ │ │ └── vinnie-falco.md │ │ ├── 02 │ │ │ ├── alex-allain.md │ │ │ ├── bjorn-fahller.md │ │ │ ├── news-roundup-02-2017.md │ │ │ └── stephan-lavavej.md │ │ ├── 03 │ │ │ ├── ben-deane.md │ │ │ ├── daniel-moth.md │ │ │ ├── odin-holmes-embopp.md │ │ │ ├── patrice-roy-cpp-kona-update.md │ │ │ └── robert-ramey-safe-numerics.md │ │ ├── 04 │ │ │ ├── akim-demaille.md │ │ │ ├── peter-bindels-hippomocks-cpp-dependencies.md │ │ │ ├── sara-chipps.md │ │ │ └── udit-patidar-anoop-prabha.md │ │ ├── 05 │ │ │ ├── bjarne-stroustrup.md │ │ │ ├── kenny-marian-build-2017.md │ │ │ └── niall-douglas-boost-outcome.md │ │ ├── 06 │ │ │ ├── charley-bay.md │ │ │ ├── felix-petriconi.md │ │ │ ├── howard-hinnant.md │ │ │ ├── richel-bilderbeek.md │ │ │ └── tony-van-eerd.md │ │ ├── 07 │ │ │ ├── barbara-geller-ansel-sermersheim.md │ │ │ ├── chris-dibella-teaching-concepts.md │ │ │ ├── gor-nishanov.md │ │ │ └── patrice-roy-toronto-trip-report.md │ │ ├── 08 │ │ │ ├── jens-weller-meeting-cpp-cpp-review.md │ │ │ ├── krister-walfridsson.md │ │ │ ├── samy-bahra.md │ │ │ └── simon-brand-building-debuggers-keyboards.md │ │ └── 09 │ │ │ ├── jan-wilmans.md │ │ │ ├── jonathan-boccara.md │ │ │ ├── josh-peterson.md │ │ │ ├── olivier-giroux.md │ │ │ └── patricia-aas.md │ ├── 2018 │ │ ├── 10 │ │ │ ├── cppcon-lightning.md │ │ │ ├── damien-buhl.md │ │ │ ├── hana-dusikova.md │ │ │ └── jens-weller-meeting-cpp-embedded.md │ │ ├── 11 │ │ │ ├── adi-shavit.md │ │ │ ├── ashley-hedberg.md │ │ │ ├── devon-labrie.md │ │ │ ├── jeff-amstutz-simd-wrapper-libs.md │ │ │ └── lenny-maiorani.md │ │ ├── 12 │ │ │ ├── denis-bakhvalov.md │ │ │ ├── jf-bastien-san-diego-ewgi.md │ │ │ └── pablo-santos.md │ │ ├── 01 │ │ │ ├── antony-polukhin.md │ │ │ ├── arno-schodl.md │ │ │ ├── balazs-torok.md │ │ │ └── matt-godbolt-meltdown-spectre.md │ │ ├── 02 │ │ │ ├── conor-hoekstra.md │ │ │ ├── jonathan-muller-type-safe.md │ │ │ ├── mathieu-ropert.md │ │ │ └── sarah-smith.md │ │ ├── 03 │ │ │ ├── jon-kalb-cppchat.md │ │ │ ├── news-episode-pi-day.md │ │ │ ├── olafur-waage.md │ │ │ └── patrice-roy-jacksonville-trip-report.md │ │ ├── 04 │ │ │ ├── bartlomiej-filipek.md │ │ │ ├── jason-rice.md │ │ │ ├── kevlin-henney.md │ │ │ └── news-episode-jacksonville.md │ │ ├── 05 │ │ │ ├── ben-craig.md │ │ │ ├── jeanheyd-meneide.md │ │ │ ├── kate-gregory-cpp-simplicity.md │ │ │ ├── phil-nash-cppchat.md │ │ │ └── tom-oliver-tristan.md │ │ ├── 06 │ │ │ ├── andreas-fertig.md │ │ │ ├── robert-schumacher.md │ │ │ ├── titus-winters-sg15-tooling-group.md │ │ │ └── trip-report.md │ │ ├── 07 │ │ │ ├── chris-dibella-parallel-ranges.md │ │ │ ├── dmitri-nesteruk-design-patterns.md │ │ │ ├── guy-davidson-future-2d-graphics.md │ │ │ └── michael-caisse.md │ │ ├── 08 │ │ │ ├── colin-hirsch.md │ │ │ ├── eberhard-grather.md │ │ │ ├── gordon-brown.md │ │ │ ├── matt-fernandez.md │ │ │ └── simon-brand-expectations-exceptions.md │ │ └── 09 │ │ │ ├── anders-knatten.md │ │ │ ├── bob-steagall.md │ │ │ └── bryce-lelbach-cppcon-preview.md │ ├── 2019 │ │ ├── 10 │ │ │ ├── jeanheyd-meneide-unicode.md │ │ │ ├── jeri-ellsworth-tiltfive.md │ │ │ ├── nevin-liber.md │ │ │ ├── patricia-aas-election-security.md │ │ │ └── philipp-schrader.md │ │ ├── 11 │ │ │ ├── inbal-levi.md │ │ │ ├── timur-doumler-belfast.md │ │ │ └── titus-winters-abi.md │ │ ├── 12 │ │ │ ├── bjorn-fahller-cache-friendliness.md │ │ │ ├── ken-museth-openvdb.md │ │ │ └── satabdi-das.md │ │ ├── 01 │ │ │ ├── arthur-odwyer.md │ │ │ ├── chris-dibella-sg20.md │ │ │ ├── eric-fiselier.md │ │ │ ├── isabella-muerte-iso-papers-merged-modules.md │ │ │ └── kris-jusiak.md │ │ ├── 02 │ │ │ ├── edaqa-mortoray.md │ │ │ ├── john-regehr.md │ │ │ └── peter-bindels-kona-trip-report.md │ │ ├── 03 │ │ │ ├── gal-zaban.md │ │ │ ├── kirk-shoop.md │ │ │ ├── news-episode-traveling.md │ │ │ └── vcpp-news.md │ │ ├── 04 │ │ │ ├── fred-joel.md │ │ │ ├── guy-davidson-linear-algebra-audio.md │ │ │ ├── marcus-tobias.md │ │ │ └── victor-zverovich.md │ │ ├── 05 │ │ │ ├── alex-denisov.md │ │ │ ├── daveed-vandevoorde.md │ │ │ ├── david-sankel-reflection-ts.md │ │ │ └── herb-sutter-simplifying-cpp.md │ │ ├── 06 │ │ │ ├── corentin-jabot.md │ │ │ ├── ivan-cukic.md │ │ │ ├── michael-park.md │ │ │ └── michal-kovarik.md │ │ ├── 07 │ │ │ ├── botond-ballo-tom-honermann.md │ │ │ ├── robert-maynard.md │ │ │ └── tyler-angwanek.md │ │ ├── 08 │ │ │ ├── bryce-lelbach-mdspan.md │ │ │ ├── clare-macrae.md │ │ │ ├── marco-magdy.md │ │ │ ├── matt-butler.md │ │ │ └── vittorio-romeo-epochs.md │ │ └── 09 │ │ │ ├── craig-scott-cmake.md │ │ │ ├── lisa-lippincott-cppcon.md │ │ │ ├── miro-knejp-cpp-extensions.md │ │ │ └── msvc-cppcon-2019.md │ ├── 2020 │ │ ├── 10 │ │ │ ├── bazel.md │ │ │ ├── ben-deane-jit-history.md │ │ │ ├── meeting-cpp-2020.md │ │ │ ├── performance-matters.md │ │ │ └── teresa-johnson-thinlto.md │ │ ├── 11 │ │ │ ├── concepts-algorithm-intuition.md │ │ │ ├── fuzz-testing-gpu.md │ │ │ ├── joel-lamotte.md │ │ │ └── unicode-cpp-c-studygroup.md │ │ ├── 12 │ │ │ ├── goodbye-2020.md │ │ │ ├── patrice-roy-virtual-teaching.md │ │ │ ├── robert-leahy-networking-ts.md │ │ │ ├── serenity-os.md │ │ │ └── turtle-browser-patricia-aas.md │ │ ├── 01 │ │ │ ├── circle-language.md │ │ │ ├── cpp-2020-news.md │ │ │ ├── cpp-conference-organizing.md │ │ │ ├── saar-raz-clang-hacking.md │ │ │ └── vadim-zeitlin-wxwidgets.md │ │ ├── 02 │ │ │ ├── brad-larson-cpp-watch.md │ │ │ ├── hana-dusikova-prague-trip-report.md │ │ │ ├── john-lakos-large-scale-cpp.md │ │ │ └── thiago-macieira-qtcore.md │ │ ├── 03 │ │ │ ├── barry-revzin-packs-pipelines.md │ │ │ ├── cpp-build-insights.md │ │ │ ├── jussi-pakkanen-meson-manual.md │ │ │ └── yuri-minaev-static-analysis.md │ │ ├── 04 │ │ │ ├── daniela-engert-intro-modules.md │ │ │ ├── matt-klein-envoy.md │ │ │ ├── nu-programming-languages-jonathan-turner.md │ │ │ ├── postmodern-cpp-revisted.md │ │ │ └── rosetta-andrew-jack.md │ │ ├── 05 │ │ │ ├── catch2-random-martin-horenovsky.md │ │ │ ├── msvc-stl-vcpkg-billy-oneal.md │ │ │ ├── physical-units-mateusz-pusz.md │ │ │ └── rider-unreal-anastasia-kazakova.md │ │ ├── 06 │ │ │ ├── azure-iot-tara-walker.md │ │ │ ├── modules-gaby-dos-reis.md │ │ │ ├── move-semantics-nico-josuttis.md │ │ │ └── web-assembly-ben-smith.md │ │ ├── 07 │ │ │ ├── andrew-selle-tensorflow.md │ │ │ ├── bruno-cardoso.md │ │ │ ├── hyperion-renderer-karl-li-david-adler.md │ │ │ ├── josh-filstrup-vfx.md │ │ │ └── sycl-michael-wong.md │ │ ├── 08 │ │ │ ├── ian-taylor-go.md │ │ │ ├── modern-cpp-absolute-beginners.md │ │ │ ├── stx-basit-ayantunde.md │ │ │ └── telephony-dave-hagedorn.md │ │ └── 09 │ │ │ ├── cppcon-2020-wrapup.md │ │ │ ├── msvc-cppcon-2020.md │ │ │ ├── stdpar-david-olsen.md │ │ │ └── testing-oleg-rabaev.md │ ├── 2021 │ │ ├── 10 │ │ │ ├── autonomous-uas.md │ │ │ ├── cpp23-iso-progress.md │ │ │ ├── eve.md │ │ │ └── jit-doe-labs.md │ │ ├── 11 │ │ │ ├── deducing-this.md │ │ │ ├── too-cute-mdspan.md │ │ │ └── vs2022.md │ │ ├── 12 │ │ │ ├── beautiful-cpp-book.md │ │ │ ├── cpp-software-architecture.md │ │ │ ├── distributing-cpp-modules.md │ │ │ └── new-years-2022.md │ │ ├── 01 │ │ │ ├── cheerp-alessandro-pignotti.md │ │ │ ├── open-frameworks-creative-coding.md │ │ │ ├── priorities-for-23-corentin-jabot.md │ │ │ └── solid-klaus-iglberger.md │ │ ├── 02 │ │ │ ├── clang-power-tools-myths.md │ │ │ ├── going-cross-platform.md │ │ │ ├── trading-systems-carl-cook.md │ │ │ └── vpkg-registries.md │ │ ├── 03 │ │ │ ├── event-streaming.md │ │ │ ├── freestanding-update.md │ │ │ ├── old-new-thing.md │ │ │ └── reducing-memory-allocations.md │ │ ├── 04 │ │ │ ├── cpp-builder.md │ │ │ ├── jeanheyd-defer.md │ │ │ ├── one-lone-coder.md │ │ │ ├── rigel-engine.md │ │ │ └── scummvm.md │ │ ├── 05 │ │ │ ├── abi-stability.md │ │ │ ├── djinni.md │ │ │ ├── sonarsource-analysis.md │ │ │ └── spack.md │ │ ├── 06 │ │ │ ├── daw-json-link.md │ │ │ ├── dosbox.md │ │ │ ├── incredibuild-cloud.md │ │ │ └── touca.md │ │ ├── 07 │ │ │ ├── adobe-software-tech-lab.md │ │ │ ├── hpx-dla-future.md │ │ │ ├── improving-performance.md │ │ │ ├── lfortran.md │ │ │ └── tipi-build.md │ │ ├── 08 │ │ │ ├── august-2021-news.md │ │ │ ├── efficient-programming-components.md │ │ │ ├── insight-toolkit.md │ │ │ └── performance-tuning.md │ │ └── 09 │ │ │ ├── corecpp-amir-avi.md │ │ │ ├── dart-crafting-interpreters.md │ │ │ ├── joedb.md │ │ │ ├── learning-cpp-serenity.md │ │ │ └── sonar-source-dev-advocate.md │ ├── 2022 │ │ ├── 12 │ │ │ └── holiday-special.md │ │ ├── 01 │ │ │ ├── binary-exploits.md │ │ │ ├── compile-time-parser-generator.md │ │ │ ├── docker-dev-modernizing-ood.md │ │ │ └── modern-c-beginners.md │ │ ├── 02 │ │ │ ├── 5G-networks.md │ │ │ ├── gdal-pdal.md │ │ │ ├── teaching-embedded-dev.md │ │ │ └── unix-history.md │ │ ├── 03 │ │ │ ├── julia.md │ │ │ ├── secure-coding-integers.md │ │ │ ├── standard-tooling-debugging.md │ │ │ ├── swift-cpp-interop.md │ │ │ └── zig.md │ │ ├── 04 │ │ │ ├── cppnorth.md │ │ │ ├── linear-algebra-iso.md │ │ │ ├── mentorship-program.md │ │ │ └── rcpp.md │ │ └── 05 │ │ │ ├── elements-gui.md │ │ │ └── podcast-news.md │ └── update-content.rb ├── guest │ ├── _index.md │ ├── aalexandrescu.md │ ├── aallain.md │ ├── aasthana.md │ ├── aballman.md │ ├── abratterud.md │ ├── ademaille.md │ ├── adenisov.md │ ├── adesitter.md │ ├── adinaburg.md │ ├── afabijanic.md │ ├── afertig.md │ ├── agakh.md │ ├── agallego.md │ ├── agerstmann.md │ ├── ahedberg.md │ ├── akazakova.md │ ├── akelley.md │ ├── akirsh.md │ ├── akling.md │ ├── aknatten.md │ ├── alachmish.md │ ├── aleaverfay.md │ ├── amathew.md │ ├── amertz.md │ ├── aodwyer.md │ ├── aostrowski.md │ ├── apardoe.md │ ├── apignotti.md │ ├── apolukhin.md │ ├── apopa.md │ ├── aprabha.md │ ├── aschodl.md │ ├── aselle.md │ ├── asermersheim.md │ ├── ashavit.md │ ├── awilliams.md │ ├── bayantunde.md │ ├── bballo.md │ ├── bbrown.md │ ├── bbrown2.md │ ├── bcardoso.md │ ├── bcraig.md │ ├── bdeane.md │ ├── bduick.md │ ├── bfahller.md │ ├── bfilipek.md │ ├── bfriedman.md │ ├── bgeller.md │ ├── bhall.md │ ├── bkernighan.md │ ├── blarson.md │ ├── blelbach.md │ ├── boneal.md │ ├── brevzin.md │ ├── bsisson.md │ ├── bsmith.md │ ├── bstanimirov.md │ ├── bsteagall.md │ ├── bstroustrup.md │ ├── btorok.md │ ├── cbay.md │ ├── ccarruth.md │ ├── ccook.md │ ├── cdibella.md │ ├── chirsch.md │ ├── choekstra.md │ ├── cjabot.md │ ├── cmacrae.md │ ├── cressell.md │ ├── cscott.md │ ├── dabrahams.md │ ├── dadler.md │ ├── dbakhvalov.md │ ├── dbarr.md │ ├── dbinks.md │ ├── dbuhl.md │ ├── deddelbuettel.md │ ├── dengert.md │ ├── dexterman.md │ ├── dhagedorn.md │ ├── dhollman.md │ ├── dlabrie.md │ ├── dmarjamaki.md │ ├── dmillington.md │ ├── dmoore.md │ ├── dmoth.md │ ├── dnesteruk.md │ ├── dojeda.md │ ├── dolsen.md │ ├── drochman.md │ ├── drodriguezlosada.md │ ├── druoso.md │ ├── dsaks.md │ ├── dsankel.md │ ├── dstone.md │ ├── dvandevoorde.md │ ├── dwright.md │ ├── dyaroshevskiy.md │ ├── ealligand.md │ ├── eberger.md │ ├── echung.md │ ├── edaler.md │ ├── efiselier.md │ ├── egraether.md │ ├── emortoray.md │ ├── eniebler.md │ ├── esagalaeva.md │ ├── esandulenko.md │ ├── fpetriconi.md │ ├── ftingaud.md │ ├── gazman.md │ ├── gbecker.md │ ├── gbrown.md │ ├── gdavidson.md │ ├── gdosreis.md │ ├── glaw.md │ ├── gnishanov.md │ ├── gobiltschnig.md │ ├── gstephens.md │ ├── gzaban.md │ ├── hachitz.md │ ├── hbutler.md │ ├── hdusikova.md │ ├── hfinkel.md │ ├── hhinnant.md │ ├── hkaiser.md │ ├── hsutter.md │ ├── ibogosavljevic.md │ ├── icukic.md │ ├── ilevi.md │ ├── imuerte.md │ ├── itaylor.md │ ├── jamstutz.md │ ├── jbeard.md │ ├── jboccara.md │ ├── jbolivar.md │ ├── jdeguzman.md │ ├── jellsworth.md │ ├── jfalcou.md │ ├── jfbastien.md │ ├── jfilstrup.md │ ├── jkalb.md │ ├── jkay.md │ ├── jlakos.md │ ├── jlamotte.md │ ├── jleroy.md │ ├── jmaguire.md │ ├── jmcnellis.md │ ├── jmeiners.md │ ├── jmeneide.md │ ├── jmerino.md │ ├── jmuller.md │ ├── jonturner.md │ ├── jpakkanen.md │ ├── jpeterson.md │ ├── jregehr.md │ ├── jreid.md │ ├── jrice.md │ ├── jstorer.md │ ├── jturner.md │ ├── jweller.md │ ├── jwilmans.md │ ├── kcadieux.md │ ├── kestell.md │ ├── kgregory.md │ ├── khenney.md │ ├── kiglberger.md │ ├── kjusiak.md │ ├── kkerr.md │ ├── kli.md │ ├── kmorgenstern.md │ ├── kmuseth.md │ ├── kshoop.md │ ├── kwalfridsson.md │ ├── lberki.md │ ├── ldionne.md │ ├── lgroh.md │ ├── ljoly.md │ ├── lkilpatrick.md │ ├── llippincott.md │ ├── lmaiorani.md │ ├── mafanasiev.md │ ├── mbentley.md │ ├── mbutler.md │ ├── mcaisse.md │ ├── mcalabrese.md │ ├── mclow.md │ ├── mfernandez.md │ ├── mgodbolt.md │ ├── mhoemmen.md │ ├── mhorenovsky.md │ ├── mklein.md │ ├── mknejp.md │ ├── mkovarik.md │ ├── mlogan.md │ ├── mluparu.md │ ├── mmagdy.md │ ├── mmcormick.md │ ├── mmilanovic.md │ ├── mpark.md │ ├── mpusz.md │ ├── mropert.md │ ├── msanchez.md │ ├── msimberg.md │ ├── mtillmanns.md │ ├── mtokle.md │ ├── mvalle.md │ ├── mvonarx.md │ ├── mwong.md │ ├── ndouglas.md │ ├── nfleury.md │ ├── nguillemot.md │ ├── njosuttis.md │ ├── nlazareff.md │ ├── nliber.md │ ├── nmazzuca.md │ ├── nwuttke.md │ ├── ocertik.md │ ├── oddin.md │ ├── ogiroux.md │ ├── oholmes.md │ ├── orabaev.md │ ├── owaage.md │ ├── paas.md │ ├── pbindels.md │ ├── pbrett.md │ ├── pfultz.md │ ├── pgaczowski.md │ ├── pghorbanzade.md │ ├── pmiller.md │ ├── pnash.md │ ├── pobara.md │ ├── proy.md │ ├── psantos.md │ ├── pschrader.md │ ├── pwinter.md │ ├── rbilderbeek.md │ ├── rbock.md │ ├── rchen.md │ ├── rcoulom.md │ ├── reberhardt.md │ ├── rgrimm.md │ ├── rleahy.md │ ├── rlu.md │ ├── rmaynard.md │ ├── rnystrom.md │ ├── rocallahan.md │ ├── rramey.md │ ├── rrivera.md │ ├── rschumacher.md │ ├── rseacord.md │ ├── rthomson.md │ ├── sbahra.md │ ├── sbaxter.md │ ├── sbrand.md │ ├── sbrenham.md │ ├── schipps.md │ ├── sdas.md │ ├── sdmitrovic.md │ ├── skelly.md │ ├── sklabnik.md │ ├── slavavej.md │ ├── smeyers.md │ ├── sparent.md │ ├── sraz.md │ ├── ssmith.md │ ├── ssomani.md │ ├── stheophil.md │ ├── stjernstrom.md │ ├── tangwanek.md │ ├── tbreza.md │ ├── tbrindle.md │ ├── tdoumler.md │ ├── tgamblin.md │ ├── thonermann.md │ ├── thunger.md │ ├── tjohnson.md │ ├── tlensing.md │ ├── tmacieira.md │ ├── traj.md │ ├── tvaneerd.md │ ├── twalker.md │ ├── twasserka.md │ ├── twinters.md │ ├── upatidar.md │ ├── vciura.md │ ├── vfalco.md │ ├── vromeo.md │ ├── vzeitlin.md │ ├── vzverovich.md │ ├── ycohenarazi.md │ ├── yminaev.md │ ├── ystaudt.md │ └── zlieberman.md └── host │ ├── _index.md │ ├── godboltm.md │ ├── hoekstrac.md │ ├── irvingr.md │ ├── meneidej.md │ └── turnerj.md ├── data └── sponsors │ ├── backtrace.yml │ ├── clang-power-tools.yml │ ├── cpp-builder.yml │ ├── cppcon.yml │ ├── incredibuild.yml │ ├── jetbrains.yml │ ├── pvs-studio.yml │ ├── sonar.yml │ └── visual-assist.yml ├── robots.txt ├── static ├── .well-known │ └── webfinger ├── custom.css ├── favicon.ico └── img │ ├── episode │ ├── 2015 │ │ ├── 10 │ │ │ ├── andrei-alexandrescu.png │ │ │ ├── joel-falcou.jpg │ │ │ ├── julian-storer.jpg │ │ │ └── kate-gregory.jpg │ │ ├── 11 │ │ │ ├── dmitri-nesteruk.jpg │ │ │ ├── jon-kalb.jpg │ │ │ └── tobias-hunger.jpg │ │ ├── 12 │ │ │ ├── eric-niebler.jpg │ │ │ ├── juanpe-bolivar.jpg │ │ │ ├── jussi-pakkanen.jpg │ │ │ └── robert-ocallahan.png │ │ ├── 01 │ │ │ └── jon-kalb.jpg │ │ ├── 03 │ │ │ ├── anastasia-kazakova.png │ │ │ ├── ankit-asthana.jpg │ │ │ ├── david-sankel.jpg │ │ │ └── jason-turner.jpg │ │ ├── 04 │ │ │ ├── hartmut-kaiser.jpg │ │ │ ├── manuel-sanchez.jpg │ │ │ ├── paul-fultz-ii.jpg │ │ │ └── vittorio-romeo.jpg │ │ ├── 05 │ │ │ ├── kenny-kerr.jpg │ │ │ ├── phil-nash.jpg │ │ │ ├── robert-ramey.jpg │ │ │ └── roland-bock.png │ │ ├── 06 │ │ │ ├── niall-douglas.jpg │ │ │ ├── richard-thomson.jpg │ │ │ ├── rob-jason.jpg │ │ │ └── sean-parent.jpg │ │ ├── 07 │ │ │ ├── aleksandar-fabijanic.jpg │ │ │ ├── jf-bastien.jpg │ │ │ └── steve-klabnik.jpg │ │ ├── 08 │ │ │ ├── david-stone.jpg │ │ │ ├── edouard-alligand.jpg │ │ │ ├── james-mcnellis.jpg │ │ │ └── nicolas-guillemot.png │ │ └── 09 │ │ │ ├── anthony-williams.jpg │ │ │ ├── brett-hall.png │ │ │ ├── nicolas-lazareff.jpg │ │ │ └── scott-meyers.jpg │ ├── 2016 │ │ ├── 10 │ │ │ ├── dan-saks.jpg │ │ │ ├── guy-davidson.jpg │ │ │ ├── jackie-kay.jpg │ │ │ └── kenny-kerr.png │ │ ├── 11 │ │ │ ├── abel-mathew.jpg │ │ │ ├── daniel-marjamaki.png │ │ │ ├── klaus-iglberger.jpg │ │ │ └── odin-holmes.jpg │ │ ├── 12 │ │ │ ├── matt-calabrese.jpg │ │ │ ├── nicolas-fleury.jpg │ │ │ └── phil-nash.jpg │ │ ├── 01 │ │ │ ├── greg-law.jpg │ │ │ ├── marc-valle.jpg │ │ │ ├── mark-logan.jpg │ │ │ └── matt-godbolt.jpg │ │ ├── 02 │ │ │ ├── bryce-lelbach.jpg │ │ │ ├── paul-miller.jpg │ │ │ └── sohail-somani.png │ │ ├── 03 │ │ │ ├── arne-mertz.jpg │ │ │ ├── dori-exterman.jpg │ │ │ ├── jeff-amstutz.jpg │ │ │ └── jonathan-beard.jpg │ │ ├── 04 │ │ │ ├── ankit-asthana.jpg │ │ │ ├── elena-sagalaeva.jpg │ │ │ ├── gunter-obiltschnig.jpg │ │ │ ├── jens-weller.jpg │ │ │ └── louis-dionne.jpg │ │ ├── 05 │ │ │ ├── diego-rodriguez-losada.jpg │ │ │ └── doug-binks.jpg │ │ ├── 06 │ │ │ ├── anastasia-kazakova.png │ │ │ ├── andrew-pardoe.png │ │ │ ├── foonathan.jpg │ │ │ ├── herb-sutter.png │ │ │ └── jonathan-muller.jpg │ │ ├── 07 │ │ │ ├── alfred-bratterud.jpg │ │ │ ├── elias-daler.jpg │ │ │ ├── gabriel-dos-reis.jpg │ │ │ └── matt-bentley.jpg │ │ ├── 08 │ │ │ ├── michael-afanasiev.jpg │ │ │ └── stephen-kelly.jpg │ │ └── 09 │ │ │ ├── chandler-carruth.jpg │ │ │ ├── klemens-morgenstern.png │ │ │ ├── miodrag-milanovic.jpg │ │ │ ├── rob-jason.jpg │ │ │ └── titus-winters.jpg │ ├── 2017 │ │ ├── 10 │ │ │ ├── gina-stephens.jpg │ │ │ ├── isabella-muerte.jpg │ │ │ ├── matt-bentley.jpg │ │ │ └── titus-winters.jpg │ │ ├── 11 │ │ │ ├── dave-moore.jpg │ │ │ ├── rob-jason.jpg │ │ │ ├── rong-lu.jpg │ │ │ └── victor-ciura.jpg │ │ ├── 12 │ │ │ ├── arvid-gerstmann.jpg │ │ │ ├── greg-law.jpg │ │ │ └── nicole-mazzuca.jpg │ │ ├── 01 │ │ │ ├── brittany-friedman.jpg │ │ │ ├── marshall-clow.jpg │ │ │ └── vinnie-falco.png │ │ ├── 02 │ │ │ ├── alex-allain.jpg │ │ │ ├── bjorn-fahller.jpg │ │ │ ├── rob-jason.jpg │ │ │ └── stl.png │ │ ├── 03 │ │ │ ├── ben-deane.jpg │ │ │ ├── daniel-moth.jpg │ │ │ ├── odin-holmes.jpg │ │ │ ├── patrice-roy.jpg │ │ │ └── robert-ramey.jpg │ │ ├── 04 │ │ │ ├── akim-demaille.jpg │ │ │ ├── peter-bindels.jpg │ │ │ ├── sara-chipps.png │ │ │ └── udit-anoop.jpg │ │ ├── 05 │ │ │ ├── bjarne-stroustrup.jpg │ │ │ ├── kenny-kerr-marian-luparu.png │ │ │ └── niall-douglas.jpg │ │ ├── 06 │ │ │ ├── charley-bay.jpg │ │ │ ├── felix-petriconi.jpg │ │ │ ├── howard-hinnant.jpg │ │ │ ├── richel-bilderbeek.jpg │ │ │ └── tony-van-eerd.jpg │ │ ├── 07 │ │ │ ├── barbara-geller-ansel-sermersheim.jpg │ │ │ ├── chris-dibella.jpg │ │ │ ├── gor-nishanov.jpg │ │ │ └── patrice-roy.jpg │ │ ├── 08 │ │ │ ├── jens-weller.jpg │ │ │ ├── krister-walfridsson.jpg │ │ │ ├── samy-bahra.png │ │ │ ├── simon-brand.jpg │ │ │ └── sy-brand.jpg │ │ └── 09 │ │ │ ├── jan-wilmans.jpg │ │ │ ├── jonathan-boccara.png │ │ │ ├── josh-peterson.jpeg │ │ │ ├── olivier-giroux.jpg │ │ │ └── patricia-aas.jpg │ ├── 2018 │ │ ├── 10 │ │ │ ├── cppcon-lightning.jpg │ │ │ ├── damien-buhl.jpg │ │ │ ├── hana-dusikova.jpg │ │ │ └── jens-weller.jpg │ │ ├── 11 │ │ │ ├── adi-shavit.jpg │ │ │ ├── ashley-hedberg.jpg │ │ │ ├── devon-labrie.jpg │ │ │ ├── jeff-amstutz.jpg │ │ │ └── lenny-maiorani.jpg │ │ ├── 12 │ │ │ ├── denis-bakhvalov.jpg │ │ │ ├── jf-bastien.jpg │ │ │ └── pablo-santos.jpg │ │ ├── 01 │ │ │ ├── antony-polukhin.jpg │ │ │ ├── arno-schodl.jpg │ │ │ ├── balazs-torok.png │ │ │ └── matt-godbolt.jpg │ │ ├── 02 │ │ │ ├── conor-hoekstra.png │ │ │ ├── jonathan-muller.jpg │ │ │ ├── mathieu-ropert.jpg │ │ │ └── sarah-smith.png │ │ ├── 03 │ │ │ ├── jon-kalb.jpg │ │ │ ├── olafur-waage.jpg │ │ │ ├── patrice-roy.jpg │ │ │ └── rob-jason.jpg │ │ ├── 04 │ │ │ ├── bartlomiej-filipek.jpg │ │ │ ├── jason-rice.jpg │ │ │ ├── kevlin-henney.jpg │ │ │ └── rob-jason.jpg │ │ ├── 05 │ │ │ ├── ben-craig.jpg │ │ │ ├── cpp-london-uni.jpg │ │ │ ├── jeanheyd-meneide.png │ │ │ ├── kate-gregory.jpg │ │ │ └── phil-nash.jpg │ │ ├── 06 │ │ │ ├── andreas-fertig.png │ │ │ ├── rob-jason.jpg │ │ │ ├── robert-schumacher.png │ │ │ └── titus-winters.jpg │ │ ├── 07 │ │ │ ├── chris-dibella.jpg │ │ │ ├── dmitri-nesteruk.jpg │ │ │ ├── guy-davidson.jpg │ │ │ └── michael-caisse.png │ │ ├── 08 │ │ │ ├── colin-hirsch.jpg │ │ │ ├── eberhard-grather.jpg │ │ │ ├── gordon-brown.jpg │ │ │ ├── matt-fernandez.jpg │ │ │ ├── simon-brand.jpg │ │ │ └── sy-brand.jpg │ │ └── 09 │ │ │ ├── anders-knatten.jpg │ │ │ ├── bob-steagall.png │ │ │ └── bryce-adelstein-lelbach.jpg │ ├── 2019 │ │ ├── 10 │ │ │ ├── jeanheyd-meneide.png │ │ │ ├── jeri-ellsworth.png │ │ │ ├── nevin-liber.jpg │ │ │ ├── patricia-aas.jpg │ │ │ └── philipp-schrader.jpg │ │ ├── 11 │ │ │ ├── inbal-levi.jpg │ │ │ ├── timur-doumler.jpg │ │ │ └── titus-winters.jpg │ │ ├── 12 │ │ │ ├── bjorn-fahller.jpg │ │ │ ├── ken-museth.jpg │ │ │ └── satabdi-das.jpg │ │ ├── 01 │ │ │ ├── arthur-odwyer.jpg │ │ │ ├── chris-dibella.jpg │ │ │ ├── eric-fiselier.jpg │ │ │ ├── isabella-muerte.jpg │ │ │ └── kris-jusiak.jpg │ │ ├── 02 │ │ │ ├── edaqa-mortoray.jpg │ │ │ ├── john-regehr.jpg │ │ │ └── peter-bindels.jpg │ │ ├── 03 │ │ │ ├── gal-zaban.png │ │ │ ├── kirk-shoop.jpg │ │ │ ├── rob-jason.jpg │ │ │ └── vcppteam.png │ │ ├── 04 │ │ │ ├── fred-joel.jpg │ │ │ ├── guy-davidson.jpg │ │ │ ├── marcus-tobias.jpeg │ │ │ └── victor-zverovich.jpg │ │ ├── 05 │ │ │ ├── alex-denisov.png │ │ │ ├── daveed-vandevoorde.jpg │ │ │ ├── david-sankel.jpg │ │ │ └── herb-sutter.jpg │ │ ├── 06 │ │ │ ├── corentin-jabot.png │ │ │ ├── ivan-cukic.jpg │ │ │ ├── michael-park.jpg │ │ │ └── michal-kovarik.png │ │ ├── 07 │ │ │ ├── botond-tom.jpg │ │ │ ├── robert-maynard.jpg │ │ │ └── tyler-angwanek.jpg │ │ ├── 08 │ │ │ ├── bryce-lelbach.jpg │ │ │ ├── clare-macrae.png │ │ │ ├── marco-magdy.jpg │ │ │ ├── matt-butler.jpg │ │ │ └── vittorio-romeo.jpg │ │ └── 09 │ │ │ ├── craig-scott.png │ │ │ ├── lisa-lippincott.jpg │ │ │ ├── miro-knejp.jpg │ │ │ └── msvc-cppcon.jpg │ ├── 2020 │ │ ├── 10 │ │ │ ├── bazel.jpg │ │ │ ├── ben-deane.jpg │ │ │ ├── emery-berger.jpg │ │ │ ├── jens-weller.jpg │ │ │ ├── lukacs-berki.jpg │ │ │ └── teresa-johnson.jpg │ │ ├── 11 │ │ │ ├── conor-hoekstra.png │ │ │ ├── joel-lamotte.jpg │ │ │ ├── trail-of-bits.png │ │ │ └── unicode-cpp-c-studygroup.png │ │ ├── 12 │ │ │ ├── andreas-kling.png │ │ │ ├── goodbye-2020.png │ │ │ ├── patrice-roy.jpg │ │ │ ├── patricia-aas.jpg │ │ │ └── robert-leahy.jpg │ │ ├── 01 │ │ │ ├── conference-organizing.jpg │ │ │ ├── saar-raz.jpg │ │ │ ├── sean-baxter.jpg │ │ │ └── vadim-zeitlin.jpg │ │ ├── 02 │ │ │ ├── brad-larson.jpg │ │ │ ├── hana-dusikova.jpg │ │ │ ├── john-lakos.jpg │ │ │ └── thiago-macieira.jpg │ │ ├── 03 │ │ │ ├── barry-revzin.jpg │ │ │ ├── cpp-build-insights.jpg │ │ │ ├── jussi-pakkanen.jpg │ │ │ └── yuri-minaev.png │ │ ├── 04 │ │ │ ├── andrew-jack-rosetta.png │ │ │ ├── daniela-engert.jpg │ │ │ ├── jon-turner.jpg │ │ │ ├── matt-klein.jpg │ │ │ └── tony-van-eerd.png │ │ ├── 05 │ │ │ ├── anastasia-kazakova.png │ │ │ ├── billy-oneal.jpg │ │ │ ├── martin-horenovsky.jpg │ │ │ └── mateusz-pusz.jpg │ │ ├── 06 │ │ │ ├── ben-smith.jpg │ │ │ ├── gabriel-dos-reis.jpg │ │ │ ├── nico-josuttis.jpg │ │ │ └── tara-walker.jpg │ │ ├── 07 │ │ │ ├── andrew-selle.jpg │ │ │ ├── bruno-cardoso.png │ │ │ ├── david-adler.jpg │ │ │ ├── hyperion-renderer.jpg │ │ │ ├── josh-filstrup.jpg │ │ │ ├── karl-li.jpg │ │ │ └── michael-wong.jpg │ │ ├── 08 │ │ │ ├── basit-ayantunde.jpg │ │ │ ├── dave-hagedorn.png │ │ │ ├── ian-taylor.jpg │ │ │ └── slobodan-dmitrovic.jpg │ │ └── 09 │ │ │ ├── david-olsen.jpg │ │ │ ├── jon-kalb.jpg │ │ │ ├── msvc-cppcon-2020.png │ │ │ └── oleg-rabaev.jpg │ ├── 2021 │ │ ├── 10 │ │ │ ├── autonomous-uas.png │ │ │ ├── bryce-lelbach.jpg │ │ │ ├── eve.png │ │ │ └── hal-finkel.jpg │ │ ├── 11 │ │ │ ├── daisy-hollman.jpg │ │ │ ├── gasper-azman.jpg │ │ │ └── sy-brand.jpg │ │ ├── 12 │ │ │ ├── beautiful-cpp-book.jpg │ │ │ ├── cpp-software-architecture.png │ │ │ ├── distributing-cpp-modules.png │ │ │ └── new-years-2022.png │ │ ├── 01 │ │ │ ├── alessandro-pignotti.jpg │ │ │ ├── corentin-jabot.png │ │ │ ├── klaus-iglberger.jpg │ │ │ └── zach-lieberman.png │ │ ├── 02 │ │ │ ├── carl-cook.jpg │ │ │ ├── nicole-mazzuca.jpg │ │ │ ├── sebastian-theophil.jpg │ │ │ └── victor-ciura.jpg │ │ ├── 03 │ │ │ ├── alex-gallego.jpg │ │ │ ├── arnaud-desitter.png │ │ │ ├── ben-craig.jpg │ │ │ └── raymond-chen.jpg │ │ ├── 04 │ │ │ ├── david-barr.jpg │ │ │ ├── david-millington.png │ │ │ ├── eugene-sandulenko.jpg │ │ │ ├── jeanheyd-meneide.png │ │ │ └── nikolai-wuttke.jpg │ │ ├── 05 │ │ │ ├── harald-achitz.jpg │ │ │ ├── loic-joly.jpg │ │ │ ├── marshall-clow.jpg │ │ │ └── spack.png │ │ ├── 06 │ │ │ ├── darrell-wright.jpg │ │ │ ├── incredibuild-dana-amir.jpg │ │ │ ├── patryk-obara.jpg │ │ │ └── pejman-ghorbanzade.jpg │ │ ├── 07 │ │ │ ├── adobe-stlab.png │ │ │ ├── hpx.png │ │ │ ├── ivica-bogosavljevic.jpg │ │ │ ├── ondrej-certik.jpg │ │ │ └── tipi-build.png │ │ ├── 08 │ │ │ ├── denis-bakhvalov.jpg │ │ │ ├── justin-meiners.jpg │ │ │ ├── matt-mccormick.jpg │ │ │ └── news-2021.png │ │ └── 09 │ │ │ ├── corecpp-amir-avi.png │ │ │ ├── linus-groh.png │ │ │ ├── phil-nash.jpg │ │ │ ├── remi-coulom.jpg │ │ │ └── robert-nystrom.jpg │ └── 2022 │ │ ├── 12 │ │ └── phil_and_timur.jpg │ │ ├── 01 │ │ ├── exploits-bootplug.png │ │ ├── modern-c-for-beginners.png │ │ ├── piotr-winter.jpg │ │ └── yacob-cohen-arazi.png │ │ ├── 02 │ │ ├── brian-kernighan.jpg │ │ ├── howard-gdal-pdal.jpg │ │ └── khalil-estell.png │ │ ├── 03 │ │ ├── dave-abrahams.jpg │ │ ├── julia.jpg │ │ ├── rene-rivera.jpg │ │ ├── robert-seacord.jpg │ │ └── zig.jpg │ │ ├── 04 │ │ ├── cpp-north.jpg │ │ ├── mark-hoemmen.jpg │ │ ├── rainer-grimm.jpg │ │ └── rcpp.png │ │ └── 05 │ │ ├── joel-deguzman.jpg │ │ └── rob-jason.jpg │ ├── guest │ ├── aaron-ballman.jpg │ ├── abel-mathew.jpg │ ├── adi-shavit.jpg │ ├── adrian-ostrowski.jpg │ ├── akim-demaille.jpg │ ├── aleksandar-fabijanic.jpg │ ├── alessandro-pignotti.jpg │ ├── alex-allain.jpg │ ├── alex-denisov.png │ ├── alex-gallego.jpg │ ├── alfred-bratterud.jpg │ ├── amir-kirsh.jpg │ ├── anastasia-kazakova.png │ ├── anders-knatten.jpg │ ├── andreas-fertig.png │ ├── andreas-kling.png │ ├── andrei-alexandrescu.png │ ├── andrew-kelley.jpg │ ├── andrew-leaverfay.jpg │ ├── andrew-pardoe.png │ ├── andrew-selle.jpg │ ├── ankit-asthana.jpg │ ├── anny-gakh.jpg │ ├── anoop-prabha.png │ ├── ansel-sermersheim.jpg │ ├── anthony-williams.jpg │ ├── antony-polukhin.jpg │ ├── arnaud-desitter.png │ ├── arne-mertz.jpg │ ├── arno-schodl.jpg │ ├── artem-dinaburg.jpg │ ├── arthur-odwyer.jpg │ ├── arvid-gerstmann.jpg │ ├── ashley-hedberg.jpg │ ├── augustin-popa.jpg │ ├── avi-lachmish.jpg │ ├── balazs-torok.png │ ├── barbara-geller.jpg │ ├── barry-revzin.jpg │ ├── bartlomiej-filipek.jpg │ ├── basit-ayantunde.jpg │ ├── ben-craig.jpg │ ├── ben-deane.jpg │ ├── ben-smith.jpg │ ├── billy-oneal.jpg │ ├── billy-sisson.jpg │ ├── bjarne-stroustrup.jpg │ ├── bjorn-fahller.jpg │ ├── bob-brown.png │ ├── bob-steagall.png │ ├── borislav-stanimirov.jpg │ ├── botond-ballo.jpg │ ├── brad-larson.jpg │ ├── brandon-duick.jpg │ ├── bret-brown.jpg │ ├── brett-hall.png │ ├── brian-kernighan.jpg │ ├── brittany-friedman.jpg │ ├── bruno-cardoso.png │ ├── bryce-lelbach.jpg │ ├── carl-cook.jpg │ ├── chandler-carruth.jpg │ ├── charley-bay.jpg │ ├── chris-dibella.jpg │ ├── christian-ressell.png │ ├── clare-macrae.png │ ├── colin-hirsch.jpg │ ├── conor-hoekstra.png │ ├── corentin-jabot.png │ ├── craig-scott.png │ ├── daisy-hollman.jpg │ ├── damien-buhl.jpg │ ├── dan-saks.jpg │ ├── dana-rochman.jpg │ ├── daniel-marjamaki.png │ ├── daniel-moth.jpg │ ├── daniel-ruoso.jpg │ ├── daniela-engert.jpg │ ├── darrell-wright.jpg │ ├── dave-abrahams.jpg │ ├── dave-hagedorn.png │ ├── dave-moore.jpg │ ├── daveed-vandevoorde.jpg │ ├── david-adler.jpg │ ├── david-barr.jpg │ ├── david-millington.png │ ├── david-olsen.jpg │ ├── david-sankel.jpg │ ├── david-stone.jpg │ ├── denis-bakhvalov.jpg │ ├── denis-yaroshevskiy.jpg │ ├── devon-labrie.jpg │ ├── diana-ojeda.jpg │ ├── diego-rodriguez-losada.jpg │ ├── dirk-eddelbuettel.png │ ├── dmitri-nesteruk.jpg │ ├── dori-exterman.jpg │ ├── doug-binks.jpg │ ├── eberhard-grather.jpg │ ├── edaqa-mortoray.jpg │ ├── edouard-alligand.jpg │ ├── elena-sagalaeva.jpg │ ├── elias-daler.jpg │ ├── emery-berger.jpg │ ├── eric-fiselier.jpg │ ├── eric-niebler.jpg │ ├── eugene-sandulenko.jpg │ ├── ezra-chung.jpg │ ├── felix-petriconi.jpg │ ├── fred-tingaud.jpg │ ├── gabriel-dos-reis.jpg │ ├── gal-zaban.png │ ├── gasper-azman.jpg │ ├── gina-stephens.jpg │ ├── gor-nishanov.jpg │ ├── gordon-brown.jpg │ ├── greg-becker.jpg │ ├── greg-law.jpg │ ├── gunter-obiltschnig.jpg │ ├── guy-davidson.jpg │ ├── hal-finkel.jpg │ ├── hana-dusikova.jpg │ ├── harald-achitz.jpg │ ├── hartmut-kaiser.jpg │ ├── herb-sutter.jpg │ ├── howard-butler.jpg │ ├── howard-hinnant.jpg │ ├── ian-taylor.jpg │ ├── inbal-levi.jpg │ ├── isabella-muerte.jpg │ ├── ivan-cukic.jpg │ ├── ivica-bogosavljevic.jpg │ ├── jack-maguire.jpg │ ├── jackie-kay.jpg │ ├── james-mcnellis.jpg │ ├── jan-wilmans.jpg │ ├── jason-rice.jpg │ ├── jason-turner.jpg │ ├── jeanheyd-meneide.png │ ├── jeanlouis-leroy.jpg │ ├── jeff-amstutz.jpg │ ├── jens-weller.jpg │ ├── jeri-ellsworth.png │ ├── jf-bastien.jpg │ ├── joel-deguzman.jpg │ ├── joel-falcou.jpg │ ├── joel-lamotte.jpg │ ├── john-lakos.jpg │ ├── john-regehr.jpg │ ├── jon-kalb.jpg │ ├── jon-turner.jpg │ ├── jonathan-beard.jpg │ ├── jonathan-boccara.png │ ├── jonathan-muller.jpg │ ├── josh-filstrup.jpg │ ├── josh-peterson.jpeg │ ├── juanpe-bolivar.jpg │ ├── julia-reid.jpg │ ├── julian-storer.jpg │ ├── julio-merino.jpg │ ├── jussi-pakkanen.jpg │ ├── justin-meiners.jpg │ ├── karl-li.jpg │ ├── kate-gregory.jpg │ ├── ken-museth.jpg │ ├── kenny-kerr.png │ ├── kevin-cadieux.jpg │ ├── kevlin-henney.jpg │ ├── khalil-estell.png │ ├── kirk-shoop.jpg │ ├── klaus-iglberger.jpg │ ├── klemens-morgenstern.png │ ├── kris-jusiak.jpg │ ├── krister-walfridsson.jpg │ ├── lenny-maiorani.jpg │ ├── linus-groh.png │ ├── lisa-lippincott.jpg │ ├── logan-kilpatrick.jpg │ ├── loic-joly.jpg │ ├── louis-dionne.jpg │ ├── lukacs-berki.jpg │ ├── manuel-sanchez.jpg │ ├── marc-valle.jpg │ ├── marco-magdy.jpg │ ├── marcus-tillmanns.jpeg │ ├── marian-luparu.jpg │ ├── marit-tokle.jpg │ ├── mark-hoemmen.jpg │ ├── mark-logan.jpg │ ├── marshall-clow.jpg │ ├── martin-horenovsky.jpg │ ├── mateusz-pusz.jpg │ ├── mathieu-ropert.jpg │ ├── matt-bentley.jpg │ ├── matt-butler.jpg │ ├── matt-calabrese.jpg │ ├── matt-fernandez.jpg │ ├── matt-godbolt.jpg │ ├── matt-klein.jpg │ ├── matt-mccormick.jpg │ ├── matthew-vonarx.jpg │ ├── michael-afanasiev.jpg │ ├── michael-caisse.png │ ├── michael-park.jpg │ ├── michael-wong.jpg │ ├── michal-kovarik.png │ ├── mikael-simberg.jpg │ ├── miodrag-milanovic.jpg │ ├── miro-knejp.jpg │ ├── nevin-liber.jpg │ ├── niall-douglas.jpg │ ├── nico-josuttis.jpg │ ├── nicolas-fleury.jpg │ ├── nicolas-guillemot.png │ ├── nicolas-lazareff.jpg │ ├── nicole-mazzuca.jpg │ ├── nikolai-wuttke.jpg │ ├── odin-holmes.jpg │ ├── olafur-waage.jpg │ ├── oleg-rabaev.jpg │ ├── oliver-ddin.jpg │ ├── olivier-giroux.jpg │ ├── ondrej-certik.jpg │ ├── pablo-santos.jpg │ ├── patrice-roy.jpg │ ├── patricia-aas.jpg │ ├── patryk-obara.jpg │ ├── paul-fultz-ii.jpg │ ├── paul-miller.jpg │ ├── pejman-ghorbanzade.jpg │ ├── peter-bindels.jpg │ ├── peter-brett.jpg │ ├── phil-nash.jpg │ ├── philipp-schrader.jpg │ ├── piotr-gaczowski.jpg │ ├── piotr-winter.jpg │ ├── rainer-grimm.jpg │ ├── raymond-chen.jpg │ ├── remi-coulom.jpg │ ├── rene-rivera.jpg │ ├── richard-thomson.jpg │ ├── richel-bilderbeek.jpg │ ├── robert-leahy.jpg │ ├── robert-maynard.jpg │ ├── robert-nystrom.jpg │ ├── robert-ocallahan.png │ ├── robert-ramey.jpg │ ├── robert-schumacher.png │ ├── robert-seacord.jpg │ ├── roland-bock.png │ ├── rong-lu.jpg │ ├── ryan-eberhardt.jpg │ ├── saar-raz.jpg │ ├── samy-bahra.png │ ├── sara-chipps.png │ ├── sarah-smith.png │ ├── satabdi-das.jpg │ ├── scott-meyers.jpg │ ├── sean-baxter.jpg │ ├── sean-parent.jpg │ ├── sebastian-theophil.jpg │ ├── simon-brand.jpg │ ├── slobodan-dmitrovic.jpg │ ├── sohail-somani.png │ ├── staffan-tjernstrom.jpg │ ├── stephanie-brenham.jpg │ ├── stephen-kelly.jpg │ ├── steve-klabnik.jpg │ ├── stl.png │ ├── sy-brand.jpg │ ├── tara-raj.jpg │ ├── tara-walker.jpg │ ├── teresa-johnson.jpg │ ├── thiago-macieira.jpg │ ├── timur-doumler.jpg │ ├── titus-winters.jpg │ ├── tobias-hunger.jpg │ ├── tobias-lensing.jpeg │ ├── todd-gamblin.jpg │ ├── tom-breza.jpg │ ├── tom-honermann.jpeg │ ├── tony-van-eerd.png │ ├── tony-wasserka.jpg │ ├── tristan-brindle.jpg │ ├── tyler-angwanek.jpg │ ├── udit-patidar.png │ ├── vadim-zeitlin.jpg │ ├── victor-ciura.jpg │ ├── victor-zverovich.jpg │ ├── vinnie-falco.png │ ├── vittorio-romeo.jpg │ ├── yacob-cohen-arazi.png │ ├── yannic-staudt.jpg │ ├── yuri-minaev.png │ └── zach-lieberman.png │ ├── host │ ├── jason-turner.jpg │ ├── jeanheyd-meneide.jpg │ └── rob-irving.jpg │ ├── libsyn-banner-background.jpg │ ├── logo-square.png │ ├── logo@2x.png │ └── sponsors │ ├── Backtrace_900x193.png │ ├── ClangPowerToolsBanner.png │ ├── Cpp-Builder.png │ ├── Incredibuild_300x250.gif │ ├── PVS-Studio_banner.png │ ├── WholeTomatoBanner.png │ ├── clangpowertools.png │ ├── cppcon-logo.png │ ├── jetbrains_600x500.png │ └── sonar-light-bg.png ├── themes └── castanet │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── REFERENCE.md │ ├── archetypes │ ├── about.md │ ├── default.md │ ├── episode.md │ ├── guest.md │ └── host.md │ ├── contributing.json │ ├── gulp │ └── tasks │ │ └── dev │ │ ├── copy-files.js │ │ ├── dev.js │ │ ├── javascript.js │ │ └── sass.js │ ├── gulpfile.js │ ├── images │ ├── screenshot-v01.png │ ├── screenshot.png │ └── tn.png │ ├── layouts │ ├── 404.html │ ├── _default │ │ ├── baseof.html │ │ ├── list.html │ │ └── single.html │ ├── about │ │ └── single.html │ ├── episode │ │ └── single.html │ ├── guest │ │ ├── list.html │ │ └── single.html │ ├── host │ │ ├── list.html │ │ └── single.html │ ├── index.html │ ├── partials │ │ ├── disqus.html │ │ ├── footer.html │ │ ├── footer_scripts.html │ │ ├── google-analytics.html │ │ ├── grid.html │ │ ├── head.html │ │ ├── head_includes.html │ │ ├── header.html │ │ ├── hosts.html │ │ ├── jumbotron.html │ │ ├── meta.html │ │ ├── row.html │ │ ├── seo.html │ │ └── sidebar.html │ └── section │ │ └── episode.rss.xml │ ├── netlify.toml │ ├── package-lock.json │ ├── package.json │ ├── static │ ├── audiojs │ │ ├── audio.min.js │ │ ├── audiojs.swf │ │ └── player-graphics.gif │ ├── components │ │ └── audiojs │ │ │ └── audiojs.js │ ├── css │ │ ├── all.css │ │ ├── blue.css │ │ ├── blue.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap3_player.css │ │ ├── grey.css │ │ ├── grey.css.map │ │ ├── jssocials-theme-plain.css │ │ ├── jssocials.css │ │ ├── mediaelementplayer.min.css │ │ ├── orange.css │ │ ├── orange.css.map │ │ ├── site.css │ │ ├── site.css.map │ │ ├── speed.min.css │ │ └── theme.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── FontAwesome0.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── img │ │ ├── episode │ │ │ ├── default-social.jpg │ │ │ └── default.jpg │ │ ├── guest │ │ │ └── default-guest.png │ │ ├── mejs-controls.png │ │ ├── mejs-controls.svg │ │ ├── player-graphics.gif │ │ └── player-graphics@2x.gif │ ├── js │ │ ├── castanet-min.js │ │ ├── castanet-min.js.map │ │ ├── castanet.js │ │ ├── player-graphics.gif │ │ └── player-graphics@2x.gif │ ├── player-graphics@2x.gif │ ├── scss │ │ ├── blue.scss │ │ ├── blue_variables.scss │ │ ├── bootstrap3_player.css │ │ ├── custom.scss │ │ ├── grey.scss │ │ ├── grey_variables.scss │ │ ├── orange.scss │ │ ├── orange_variables.scss │ │ └── site.scss │ ├── swf │ │ └── audiojs.swf │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── theme.toml │ └── utils │ └── README.md └── web.config /.deployment: -------------------------------------------------------------------------------- 1 | [config] 2 | command = azure-deploy.cmd -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | public/ 3 | .hugo_build.lock 4 | -------------------------------------------------------------------------------- /content/guest/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | Date = "2015-01-01" 3 | description = "guests of the show" 4 | title = "Guests of CppCast" 5 | aliases = "/guests" 6 | +++ 7 | 8 | Want to be a guest on CppCast? Email us at [feedback@cppcast.com](mailto:feedback@cppcast.com). -------------------------------------------------------------------------------- /content/guest/bbrown.md: -------------------------------------------------------------------------------- 1 | +++ 2 | Title = "Bob Brown" 3 | LinkedIn = "bob-brown-434b934a" 4 | Thumbnail = "img/guest/bob-brown.png" 5 | +++ 6 | Bob Brown is the engineering manager for C++ experiences in Visual Studio and Visual Studio Code. -------------------------------------------------------------------------------- /content/guest/jleroy.md: -------------------------------------------------------------------------------- 1 | +++ 2 | Title = "Jean-Louis Leroy" 3 | LinkedIn = "jlleroy" 4 | GitHub = "jll63" 5 | Thumbnail = "img/guest/jeanlouis-leroy.jpg" 6 | +++ 7 | Jean-Louis Leroy is the author of yomm2, a library that implements open multi-methods. See https://github.com/jll63/yomm2 -------------------------------------------------------------------------------- /content/guest/jreid.md: -------------------------------------------------------------------------------- 1 | +++ 2 | Title = "Julia Reid" 3 | Twitter = "@jureid22" 4 | Thumbnail = "img/guest/julia-reid.jpg" 5 | +++ 6 | Julia Reid is a Program Manager on the C++ team at Microsoft, focusing specifically on Visual Studio Code experiences. -------------------------------------------------------------------------------- /content/guest/mluparu.md: -------------------------------------------------------------------------------- 1 | +++ 2 | Title = "Marian Luparu" 3 | Twitter = "@mluparu" 4 | Thumbnail = "img/guest/marian-luparu.jpg" 5 | +++ 6 | Marian Luparu is the Lead Program Manager of the C++ team responsible for the C++ experience in Visual Studio, VS Code as well as Vcpkg. -------------------------------------------------------------------------------- /content/guest/traj.md: -------------------------------------------------------------------------------- 1 | +++ 2 | Title = "Tara Raj" 3 | Twitter = "@tara_msft" 4 | Thumbnail = "img/guest/tara-raj.jpg" 5 | +++ 6 | Tara Raj is the Program Manager for the C++ experience in Visual Studio Code and Vcpkg. She is interested in developer tools and Linux. -------------------------------------------------------------------------------- /content/host/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | Date = "2015-01-01" 3 | description = "hosts of the podcast" 4 | title = "Hosts of CppCast" 5 | aliases = "/host" 6 | +++ -------------------------------------------------------------------------------- /data/sponsors/backtrace.yml: -------------------------------------------------------------------------------- 1 | name: Backtrace 2 | url: "https://backtrace.io/?utm_source=CppCast&utm_medium=CppCast" 3 | ad: "img/sponsors/Backtrace_900x193.png" -------------------------------------------------------------------------------- /data/sponsors/clang-power-tools.yml: -------------------------------------------------------------------------------- 1 | name: Clang Power Tools 2 | url: "https://clangpowertools.com/?utm_source=cppcast&utm_medium=podcast&utm_campaign=promo_cppcast" 3 | ad: "img/sponsors/clangpowertools.png" -------------------------------------------------------------------------------- /data/sponsors/cpp-builder.yml: -------------------------------------------------------------------------------- 1 | name: C++ Builder 2 | url: "https://www.embarcadero.com/products/cbuilder/start-for-free?utm_source=CppCast&utm_medium=AffiliateOutreach&utm_content=BannerCppCast" 3 | ad: "img/sponsors/Cpp-Builder.png" -------------------------------------------------------------------------------- /data/sponsors/cppcon.yml: -------------------------------------------------------------------------------- 1 | name: CppCon 2 | url: "https://cppcon.org/" 3 | ad: "img/sponsors/cppcon-logo.png" -------------------------------------------------------------------------------- /data/sponsors/incredibuild.yml: -------------------------------------------------------------------------------- 1 | name: Incredibuild 2 | url: "https://www.incredibuild.com/cppcast" 3 | ad: "img/sponsors/Incredibuild_300x250.gif" -------------------------------------------------------------------------------- /data/sponsors/jetbrains.yml: -------------------------------------------------------------------------------- 1 | name: JetBrains 2 | url: "https://jb.gg/cppcast" 3 | ad: "img/sponsors/jetbrains_600x500.png" -------------------------------------------------------------------------------- /data/sponsors/pvs-studio.yml: -------------------------------------------------------------------------------- 1 | name: PVS-Studio 2 | url: "https://www.viva64.com/pvs-download-cppcast-b" 3 | ad: "img/sponsors/PVS-Studio_banner.png" -------------------------------------------------------------------------------- /data/sponsors/sonar.yml: -------------------------------------------------------------------------------- 1 | name: Sonar 2 | url: "https://www.sonarsource.com/?utm_source=cppcast&utm_medium=event&utm_campaign=cpp&utm_content=cppcast_ss" 3 | ad: "img/sponsors/sonar-light-bg.png" -------------------------------------------------------------------------------- /data/sponsors/visual-assist.yml: -------------------------------------------------------------------------------- 1 | name: Visual Assist 2 | url: "https://www.wholetomato.com/downloads?utm_source=CppCast&utm_medium=Affiliate&utm_content=PodcastSponsorship" 3 | ad: "img/sponsors/WholeTomatoBanner.png" -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /*.xml$ 3 | Sitemap: http://cppcast.libsyn.com/rss -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/favicon.ico -------------------------------------------------------------------------------- /static/img/episode/2015/01/jon-kalb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/01/jon-kalb.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/03/anastasia-kazakova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/03/anastasia-kazakova.png -------------------------------------------------------------------------------- /static/img/episode/2015/03/ankit-asthana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/03/ankit-asthana.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/03/david-sankel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/03/david-sankel.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/03/jason-turner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/03/jason-turner.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/04/hartmut-kaiser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/04/hartmut-kaiser.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/04/manuel-sanchez.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/04/manuel-sanchez.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/04/paul-fultz-ii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/04/paul-fultz-ii.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/04/vittorio-romeo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/04/vittorio-romeo.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/05/kenny-kerr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/05/kenny-kerr.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/05/phil-nash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/05/phil-nash.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/05/robert-ramey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/05/robert-ramey.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/05/roland-bock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/05/roland-bock.png -------------------------------------------------------------------------------- /static/img/episode/2015/06/niall-douglas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/06/niall-douglas.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/06/richard-thomson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/06/richard-thomson.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/06/rob-jason.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/06/rob-jason.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/06/sean-parent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/06/sean-parent.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/07/aleksandar-fabijanic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/07/aleksandar-fabijanic.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/07/jf-bastien.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/07/jf-bastien.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/07/steve-klabnik.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/07/steve-klabnik.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/08/david-stone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/08/david-stone.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/08/edouard-alligand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/08/edouard-alligand.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/08/james-mcnellis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/08/james-mcnellis.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/08/nicolas-guillemot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/08/nicolas-guillemot.png -------------------------------------------------------------------------------- /static/img/episode/2015/09/anthony-williams.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/09/anthony-williams.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/09/brett-hall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/09/brett-hall.png -------------------------------------------------------------------------------- /static/img/episode/2015/09/nicolas-lazareff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/09/nicolas-lazareff.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/09/scott-meyers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/09/scott-meyers.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/10/andrei-alexandrescu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/10/andrei-alexandrescu.png -------------------------------------------------------------------------------- /static/img/episode/2015/10/joel-falcou.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/10/joel-falcou.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/10/julian-storer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/10/julian-storer.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/10/kate-gregory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/10/kate-gregory.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/11/dmitri-nesteruk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/11/dmitri-nesteruk.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/11/jon-kalb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/11/jon-kalb.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/11/tobias-hunger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/11/tobias-hunger.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/12/eric-niebler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/12/eric-niebler.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/12/juanpe-bolivar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/12/juanpe-bolivar.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/12/jussi-pakkanen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/12/jussi-pakkanen.jpg -------------------------------------------------------------------------------- /static/img/episode/2015/12/robert-ocallahan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2015/12/robert-ocallahan.png -------------------------------------------------------------------------------- /static/img/episode/2016/01/greg-law.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/01/greg-law.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/01/marc-valle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/01/marc-valle.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/01/mark-logan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/01/mark-logan.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/01/matt-godbolt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/01/matt-godbolt.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/02/bryce-lelbach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/02/bryce-lelbach.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/02/paul-miller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/02/paul-miller.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/02/sohail-somani.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/02/sohail-somani.png -------------------------------------------------------------------------------- /static/img/episode/2016/03/arne-mertz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/03/arne-mertz.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/03/dori-exterman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/03/dori-exterman.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/03/jeff-amstutz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/03/jeff-amstutz.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/03/jonathan-beard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/03/jonathan-beard.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/04/ankit-asthana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/04/ankit-asthana.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/04/elena-sagalaeva.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/04/elena-sagalaeva.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/04/gunter-obiltschnig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/04/gunter-obiltschnig.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/04/jens-weller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/04/jens-weller.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/04/louis-dionne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/04/louis-dionne.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/05/diego-rodriguez-losada.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/05/diego-rodriguez-losada.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/05/doug-binks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/05/doug-binks.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/06/anastasia-kazakova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/06/anastasia-kazakova.png -------------------------------------------------------------------------------- /static/img/episode/2016/06/andrew-pardoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/06/andrew-pardoe.png -------------------------------------------------------------------------------- /static/img/episode/2016/06/foonathan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/06/foonathan.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/06/herb-sutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/06/herb-sutter.png -------------------------------------------------------------------------------- /static/img/episode/2016/06/jonathan-muller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/06/jonathan-muller.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/07/alfred-bratterud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/07/alfred-bratterud.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/07/elias-daler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/07/elias-daler.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/07/gabriel-dos-reis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/07/gabriel-dos-reis.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/07/matt-bentley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/07/matt-bentley.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/08/michael-afanasiev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/08/michael-afanasiev.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/08/stephen-kelly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/08/stephen-kelly.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/09/chandler-carruth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/09/chandler-carruth.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/09/klemens-morgenstern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/09/klemens-morgenstern.png -------------------------------------------------------------------------------- /static/img/episode/2016/09/miodrag-milanovic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/09/miodrag-milanovic.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/09/rob-jason.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/09/rob-jason.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/09/titus-winters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/09/titus-winters.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/10/dan-saks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/10/dan-saks.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/10/guy-davidson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/10/guy-davidson.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/10/jackie-kay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/10/jackie-kay.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/10/kenny-kerr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/10/kenny-kerr.png -------------------------------------------------------------------------------- /static/img/episode/2016/11/abel-mathew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/11/abel-mathew.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/11/daniel-marjamaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/11/daniel-marjamaki.png -------------------------------------------------------------------------------- /static/img/episode/2016/11/klaus-iglberger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/11/klaus-iglberger.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/11/odin-holmes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/11/odin-holmes.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/12/matt-calabrese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/12/matt-calabrese.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/12/nicolas-fleury.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/12/nicolas-fleury.jpg -------------------------------------------------------------------------------- /static/img/episode/2016/12/phil-nash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2016/12/phil-nash.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/01/brittany-friedman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/01/brittany-friedman.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/01/marshall-clow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/01/marshall-clow.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/01/vinnie-falco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/01/vinnie-falco.png -------------------------------------------------------------------------------- /static/img/episode/2017/02/alex-allain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/02/alex-allain.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/02/bjorn-fahller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/02/bjorn-fahller.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/02/rob-jason.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/02/rob-jason.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/02/stl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/02/stl.png -------------------------------------------------------------------------------- /static/img/episode/2017/03/ben-deane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/03/ben-deane.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/03/daniel-moth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/03/daniel-moth.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/03/odin-holmes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/03/odin-holmes.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/03/patrice-roy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/03/patrice-roy.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/03/robert-ramey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/03/robert-ramey.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/04/akim-demaille.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/04/akim-demaille.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/04/peter-bindels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/04/peter-bindels.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/04/sara-chipps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/04/sara-chipps.png -------------------------------------------------------------------------------- /static/img/episode/2017/04/udit-anoop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/04/udit-anoop.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/05/bjarne-stroustrup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/05/bjarne-stroustrup.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/05/kenny-kerr-marian-luparu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/05/kenny-kerr-marian-luparu.png -------------------------------------------------------------------------------- /static/img/episode/2017/05/niall-douglas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/05/niall-douglas.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/06/charley-bay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/06/charley-bay.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/06/felix-petriconi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/06/felix-petriconi.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/06/howard-hinnant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/06/howard-hinnant.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/06/richel-bilderbeek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/06/richel-bilderbeek.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/06/tony-van-eerd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/06/tony-van-eerd.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/07/barbara-geller-ansel-sermersheim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/07/barbara-geller-ansel-sermersheim.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/07/chris-dibella.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/07/chris-dibella.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/07/gor-nishanov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/07/gor-nishanov.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/07/patrice-roy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/07/patrice-roy.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/08/jens-weller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/08/jens-weller.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/08/krister-walfridsson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/08/krister-walfridsson.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/08/samy-bahra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/08/samy-bahra.png -------------------------------------------------------------------------------- /static/img/episode/2017/08/simon-brand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/08/simon-brand.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/08/sy-brand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/08/sy-brand.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/09/jan-wilmans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/09/jan-wilmans.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/09/jonathan-boccara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/09/jonathan-boccara.png -------------------------------------------------------------------------------- /static/img/episode/2017/09/josh-peterson.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/09/josh-peterson.jpeg -------------------------------------------------------------------------------- /static/img/episode/2017/09/olivier-giroux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/09/olivier-giroux.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/09/patricia-aas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/09/patricia-aas.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/10/gina-stephens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/10/gina-stephens.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/10/isabella-muerte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/10/isabella-muerte.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/10/matt-bentley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/10/matt-bentley.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/10/titus-winters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/10/titus-winters.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/11/dave-moore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/11/dave-moore.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/11/rob-jason.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/11/rob-jason.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/11/rong-lu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/11/rong-lu.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/11/victor-ciura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/11/victor-ciura.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/12/arvid-gerstmann.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/12/arvid-gerstmann.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/12/greg-law.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/12/greg-law.jpg -------------------------------------------------------------------------------- /static/img/episode/2017/12/nicole-mazzuca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2017/12/nicole-mazzuca.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/01/antony-polukhin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/01/antony-polukhin.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/01/arno-schodl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/01/arno-schodl.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/01/balazs-torok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/01/balazs-torok.png -------------------------------------------------------------------------------- /static/img/episode/2018/01/matt-godbolt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/01/matt-godbolt.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/02/conor-hoekstra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/02/conor-hoekstra.png -------------------------------------------------------------------------------- /static/img/episode/2018/02/jonathan-muller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/02/jonathan-muller.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/02/mathieu-ropert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/02/mathieu-ropert.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/02/sarah-smith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/02/sarah-smith.png -------------------------------------------------------------------------------- /static/img/episode/2018/03/jon-kalb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/03/jon-kalb.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/03/olafur-waage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/03/olafur-waage.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/03/patrice-roy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/03/patrice-roy.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/03/rob-jason.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/03/rob-jason.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/04/bartlomiej-filipek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/04/bartlomiej-filipek.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/04/jason-rice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/04/jason-rice.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/04/kevlin-henney.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/04/kevlin-henney.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/04/rob-jason.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/04/rob-jason.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/05/ben-craig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/05/ben-craig.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/05/cpp-london-uni.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/05/cpp-london-uni.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/05/jeanheyd-meneide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/05/jeanheyd-meneide.png -------------------------------------------------------------------------------- /static/img/episode/2018/05/kate-gregory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/05/kate-gregory.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/05/phil-nash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/05/phil-nash.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/06/andreas-fertig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/06/andreas-fertig.png -------------------------------------------------------------------------------- /static/img/episode/2018/06/rob-jason.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/06/rob-jason.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/06/robert-schumacher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/06/robert-schumacher.png -------------------------------------------------------------------------------- /static/img/episode/2018/06/titus-winters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/06/titus-winters.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/07/chris-dibella.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/07/chris-dibella.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/07/dmitri-nesteruk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/07/dmitri-nesteruk.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/07/guy-davidson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/07/guy-davidson.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/07/michael-caisse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/07/michael-caisse.png -------------------------------------------------------------------------------- /static/img/episode/2018/08/colin-hirsch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/08/colin-hirsch.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/08/eberhard-grather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/08/eberhard-grather.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/08/gordon-brown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/08/gordon-brown.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/08/matt-fernandez.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/08/matt-fernandez.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/08/simon-brand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/08/simon-brand.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/08/sy-brand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/08/sy-brand.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/09/anders-knatten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/09/anders-knatten.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/09/bob-steagall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/09/bob-steagall.png -------------------------------------------------------------------------------- /static/img/episode/2018/09/bryce-adelstein-lelbach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/09/bryce-adelstein-lelbach.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/10/cppcon-lightning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/10/cppcon-lightning.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/10/damien-buhl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/10/damien-buhl.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/10/hana-dusikova.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/10/hana-dusikova.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/10/jens-weller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/10/jens-weller.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/11/adi-shavit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/11/adi-shavit.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/11/ashley-hedberg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/11/ashley-hedberg.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/11/devon-labrie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/11/devon-labrie.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/11/jeff-amstutz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/11/jeff-amstutz.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/11/lenny-maiorani.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/11/lenny-maiorani.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/12/denis-bakhvalov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/12/denis-bakhvalov.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/12/jf-bastien.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/12/jf-bastien.jpg -------------------------------------------------------------------------------- /static/img/episode/2018/12/pablo-santos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2018/12/pablo-santos.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/01/arthur-odwyer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/01/arthur-odwyer.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/01/chris-dibella.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/01/chris-dibella.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/01/eric-fiselier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/01/eric-fiselier.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/01/isabella-muerte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/01/isabella-muerte.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/01/kris-jusiak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/01/kris-jusiak.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/02/edaqa-mortoray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/02/edaqa-mortoray.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/02/john-regehr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/02/john-regehr.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/02/peter-bindels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/02/peter-bindels.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/03/gal-zaban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/03/gal-zaban.png -------------------------------------------------------------------------------- /static/img/episode/2019/03/kirk-shoop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/03/kirk-shoop.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/03/rob-jason.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/03/rob-jason.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/03/vcppteam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/03/vcppteam.png -------------------------------------------------------------------------------- /static/img/episode/2019/04/fred-joel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/04/fred-joel.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/04/guy-davidson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/04/guy-davidson.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/04/marcus-tobias.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/04/marcus-tobias.jpeg -------------------------------------------------------------------------------- /static/img/episode/2019/04/victor-zverovich.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/04/victor-zverovich.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/05/alex-denisov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/05/alex-denisov.png -------------------------------------------------------------------------------- /static/img/episode/2019/05/daveed-vandevoorde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/05/daveed-vandevoorde.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/05/david-sankel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/05/david-sankel.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/05/herb-sutter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/05/herb-sutter.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/06/corentin-jabot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/06/corentin-jabot.png -------------------------------------------------------------------------------- /static/img/episode/2019/06/ivan-cukic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/06/ivan-cukic.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/06/michael-park.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/06/michael-park.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/06/michal-kovarik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/06/michal-kovarik.png -------------------------------------------------------------------------------- /static/img/episode/2019/07/botond-tom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/07/botond-tom.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/07/robert-maynard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/07/robert-maynard.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/07/tyler-angwanek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/07/tyler-angwanek.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/08/bryce-lelbach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/08/bryce-lelbach.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/08/clare-macrae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/08/clare-macrae.png -------------------------------------------------------------------------------- /static/img/episode/2019/08/marco-magdy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/08/marco-magdy.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/08/matt-butler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/08/matt-butler.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/08/vittorio-romeo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/08/vittorio-romeo.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/09/craig-scott.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/09/craig-scott.png -------------------------------------------------------------------------------- /static/img/episode/2019/09/lisa-lippincott.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/09/lisa-lippincott.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/09/miro-knejp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/09/miro-knejp.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/09/msvc-cppcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/09/msvc-cppcon.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/10/jeanheyd-meneide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/10/jeanheyd-meneide.png -------------------------------------------------------------------------------- /static/img/episode/2019/10/jeri-ellsworth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/10/jeri-ellsworth.png -------------------------------------------------------------------------------- /static/img/episode/2019/10/nevin-liber.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/10/nevin-liber.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/10/patricia-aas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/10/patricia-aas.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/10/philipp-schrader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/10/philipp-schrader.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/11/inbal-levi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/11/inbal-levi.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/11/timur-doumler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/11/timur-doumler.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/11/titus-winters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/11/titus-winters.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/12/bjorn-fahller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/12/bjorn-fahller.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/12/ken-museth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/12/ken-museth.jpg -------------------------------------------------------------------------------- /static/img/episode/2019/12/satabdi-das.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2019/12/satabdi-das.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/01/conference-organizing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/01/conference-organizing.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/01/saar-raz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/01/saar-raz.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/01/sean-baxter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/01/sean-baxter.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/01/vadim-zeitlin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/01/vadim-zeitlin.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/02/brad-larson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/02/brad-larson.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/02/hana-dusikova.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/02/hana-dusikova.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/02/john-lakos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/02/john-lakos.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/02/thiago-macieira.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/02/thiago-macieira.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/03/barry-revzin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/03/barry-revzin.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/03/cpp-build-insights.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/03/cpp-build-insights.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/03/jussi-pakkanen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/03/jussi-pakkanen.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/03/yuri-minaev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/03/yuri-minaev.png -------------------------------------------------------------------------------- /static/img/episode/2020/04/andrew-jack-rosetta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/04/andrew-jack-rosetta.png -------------------------------------------------------------------------------- /static/img/episode/2020/04/daniela-engert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/04/daniela-engert.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/04/jon-turner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/04/jon-turner.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/04/matt-klein.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/04/matt-klein.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/04/tony-van-eerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/04/tony-van-eerd.png -------------------------------------------------------------------------------- /static/img/episode/2020/05/anastasia-kazakova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/05/anastasia-kazakova.png -------------------------------------------------------------------------------- /static/img/episode/2020/05/billy-oneal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/05/billy-oneal.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/05/martin-horenovsky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/05/martin-horenovsky.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/05/mateusz-pusz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/05/mateusz-pusz.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/06/ben-smith.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/06/ben-smith.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/06/gabriel-dos-reis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/06/gabriel-dos-reis.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/06/nico-josuttis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/06/nico-josuttis.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/06/tara-walker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/06/tara-walker.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/07/andrew-selle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/07/andrew-selle.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/07/bruno-cardoso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/07/bruno-cardoso.png -------------------------------------------------------------------------------- /static/img/episode/2020/07/david-adler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/07/david-adler.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/07/hyperion-renderer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/07/hyperion-renderer.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/07/josh-filstrup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/07/josh-filstrup.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/07/karl-li.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/07/karl-li.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/07/michael-wong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/07/michael-wong.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/08/basit-ayantunde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/08/basit-ayantunde.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/08/dave-hagedorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/08/dave-hagedorn.png -------------------------------------------------------------------------------- /static/img/episode/2020/08/ian-taylor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/08/ian-taylor.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/08/slobodan-dmitrovic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/08/slobodan-dmitrovic.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/09/david-olsen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/09/david-olsen.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/09/jon-kalb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/09/jon-kalb.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/09/msvc-cppcon-2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/09/msvc-cppcon-2020.png -------------------------------------------------------------------------------- /static/img/episode/2020/09/oleg-rabaev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/09/oleg-rabaev.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/10/bazel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/10/bazel.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/10/ben-deane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/10/ben-deane.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/10/emery-berger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/10/emery-berger.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/10/jens-weller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/10/jens-weller.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/10/lukacs-berki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/10/lukacs-berki.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/10/teresa-johnson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/10/teresa-johnson.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/11/conor-hoekstra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/11/conor-hoekstra.png -------------------------------------------------------------------------------- /static/img/episode/2020/11/joel-lamotte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/11/joel-lamotte.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/11/trail-of-bits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/11/trail-of-bits.png -------------------------------------------------------------------------------- /static/img/episode/2020/11/unicode-cpp-c-studygroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/11/unicode-cpp-c-studygroup.png -------------------------------------------------------------------------------- /static/img/episode/2020/12/andreas-kling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/12/andreas-kling.png -------------------------------------------------------------------------------- /static/img/episode/2020/12/goodbye-2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/12/goodbye-2020.png -------------------------------------------------------------------------------- /static/img/episode/2020/12/patrice-roy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/12/patrice-roy.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/12/patricia-aas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/12/patricia-aas.jpg -------------------------------------------------------------------------------- /static/img/episode/2020/12/robert-leahy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2020/12/robert-leahy.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/01/alessandro-pignotti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/01/alessandro-pignotti.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/01/corentin-jabot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/01/corentin-jabot.png -------------------------------------------------------------------------------- /static/img/episode/2021/01/klaus-iglberger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/01/klaus-iglberger.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/01/zach-lieberman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/01/zach-lieberman.png -------------------------------------------------------------------------------- /static/img/episode/2021/02/carl-cook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/02/carl-cook.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/02/nicole-mazzuca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/02/nicole-mazzuca.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/02/sebastian-theophil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/02/sebastian-theophil.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/02/victor-ciura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/02/victor-ciura.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/03/alex-gallego.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/03/alex-gallego.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/03/arnaud-desitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/03/arnaud-desitter.png -------------------------------------------------------------------------------- /static/img/episode/2021/03/ben-craig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/03/ben-craig.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/03/raymond-chen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/03/raymond-chen.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/04/david-barr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/04/david-barr.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/04/david-millington.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/04/david-millington.png -------------------------------------------------------------------------------- /static/img/episode/2021/04/eugene-sandulenko.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/04/eugene-sandulenko.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/04/jeanheyd-meneide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/04/jeanheyd-meneide.png -------------------------------------------------------------------------------- /static/img/episode/2021/04/nikolai-wuttke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/04/nikolai-wuttke.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/05/harald-achitz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/05/harald-achitz.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/05/loic-joly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/05/loic-joly.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/05/marshall-clow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/05/marshall-clow.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/05/spack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/05/spack.png -------------------------------------------------------------------------------- /static/img/episode/2021/06/darrell-wright.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/06/darrell-wright.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/06/incredibuild-dana-amir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/06/incredibuild-dana-amir.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/06/patryk-obara.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/06/patryk-obara.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/06/pejman-ghorbanzade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/06/pejman-ghorbanzade.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/07/adobe-stlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/07/adobe-stlab.png -------------------------------------------------------------------------------- /static/img/episode/2021/07/hpx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/07/hpx.png -------------------------------------------------------------------------------- /static/img/episode/2021/07/ivica-bogosavljevic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/07/ivica-bogosavljevic.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/07/ondrej-certik.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/07/ondrej-certik.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/07/tipi-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/07/tipi-build.png -------------------------------------------------------------------------------- /static/img/episode/2021/08/denis-bakhvalov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/08/denis-bakhvalov.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/08/justin-meiners.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/08/justin-meiners.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/08/matt-mccormick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/08/matt-mccormick.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/08/news-2021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/08/news-2021.png -------------------------------------------------------------------------------- /static/img/episode/2021/09/corecpp-amir-avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/09/corecpp-amir-avi.png -------------------------------------------------------------------------------- /static/img/episode/2021/09/linus-groh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/09/linus-groh.png -------------------------------------------------------------------------------- /static/img/episode/2021/09/phil-nash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/09/phil-nash.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/09/remi-coulom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/09/remi-coulom.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/09/robert-nystrom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/09/robert-nystrom.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/10/autonomous-uas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/10/autonomous-uas.png -------------------------------------------------------------------------------- /static/img/episode/2021/10/bryce-lelbach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/10/bryce-lelbach.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/10/eve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/10/eve.png -------------------------------------------------------------------------------- /static/img/episode/2021/10/hal-finkel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/10/hal-finkel.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/11/daisy-hollman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/11/daisy-hollman.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/11/gasper-azman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/11/gasper-azman.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/11/sy-brand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/11/sy-brand.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/12/beautiful-cpp-book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/12/beautiful-cpp-book.jpg -------------------------------------------------------------------------------- /static/img/episode/2021/12/cpp-software-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/12/cpp-software-architecture.png -------------------------------------------------------------------------------- /static/img/episode/2021/12/distributing-cpp-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/12/distributing-cpp-modules.png -------------------------------------------------------------------------------- /static/img/episode/2021/12/new-years-2022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2021/12/new-years-2022.png -------------------------------------------------------------------------------- /static/img/episode/2022/01/exploits-bootplug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/01/exploits-bootplug.png -------------------------------------------------------------------------------- /static/img/episode/2022/01/modern-c-for-beginners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/01/modern-c-for-beginners.png -------------------------------------------------------------------------------- /static/img/episode/2022/01/piotr-winter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/01/piotr-winter.jpg -------------------------------------------------------------------------------- /static/img/episode/2022/01/yacob-cohen-arazi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/01/yacob-cohen-arazi.png -------------------------------------------------------------------------------- /static/img/episode/2022/02/brian-kernighan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/02/brian-kernighan.jpg -------------------------------------------------------------------------------- /static/img/episode/2022/02/howard-gdal-pdal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/02/howard-gdal-pdal.jpg -------------------------------------------------------------------------------- /static/img/episode/2022/02/khalil-estell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/02/khalil-estell.png -------------------------------------------------------------------------------- /static/img/episode/2022/03/dave-abrahams.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/03/dave-abrahams.jpg -------------------------------------------------------------------------------- /static/img/episode/2022/03/julia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/03/julia.jpg -------------------------------------------------------------------------------- /static/img/episode/2022/03/rene-rivera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/03/rene-rivera.jpg -------------------------------------------------------------------------------- /static/img/episode/2022/03/robert-seacord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/03/robert-seacord.jpg -------------------------------------------------------------------------------- /static/img/episode/2022/03/zig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/03/zig.jpg -------------------------------------------------------------------------------- /static/img/episode/2022/04/cpp-north.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/04/cpp-north.jpg -------------------------------------------------------------------------------- /static/img/episode/2022/04/mark-hoemmen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/04/mark-hoemmen.jpg -------------------------------------------------------------------------------- /static/img/episode/2022/04/rainer-grimm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/04/rainer-grimm.jpg -------------------------------------------------------------------------------- /static/img/episode/2022/04/rcpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/04/rcpp.png -------------------------------------------------------------------------------- /static/img/episode/2022/05/joel-deguzman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/05/joel-deguzman.jpg -------------------------------------------------------------------------------- /static/img/episode/2022/05/rob-jason.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/05/rob-jason.jpg -------------------------------------------------------------------------------- /static/img/episode/2022/12/phil_and_timur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/episode/2022/12/phil_and_timur.jpg -------------------------------------------------------------------------------- /static/img/guest/aaron-ballman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/aaron-ballman.jpg -------------------------------------------------------------------------------- /static/img/guest/abel-mathew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/abel-mathew.jpg -------------------------------------------------------------------------------- /static/img/guest/adi-shavit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/adi-shavit.jpg -------------------------------------------------------------------------------- /static/img/guest/adrian-ostrowski.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/adrian-ostrowski.jpg -------------------------------------------------------------------------------- /static/img/guest/akim-demaille.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/akim-demaille.jpg -------------------------------------------------------------------------------- /static/img/guest/aleksandar-fabijanic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/aleksandar-fabijanic.jpg -------------------------------------------------------------------------------- /static/img/guest/alessandro-pignotti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/alessandro-pignotti.jpg -------------------------------------------------------------------------------- /static/img/guest/alex-allain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/alex-allain.jpg -------------------------------------------------------------------------------- /static/img/guest/alex-denisov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/alex-denisov.png -------------------------------------------------------------------------------- /static/img/guest/alex-gallego.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/alex-gallego.jpg -------------------------------------------------------------------------------- /static/img/guest/alfred-bratterud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/alfred-bratterud.jpg -------------------------------------------------------------------------------- /static/img/guest/amir-kirsh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/amir-kirsh.jpg -------------------------------------------------------------------------------- /static/img/guest/anastasia-kazakova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/anastasia-kazakova.png -------------------------------------------------------------------------------- /static/img/guest/anders-knatten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/anders-knatten.jpg -------------------------------------------------------------------------------- /static/img/guest/andreas-fertig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/andreas-fertig.png -------------------------------------------------------------------------------- /static/img/guest/andreas-kling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/andreas-kling.png -------------------------------------------------------------------------------- /static/img/guest/andrei-alexandrescu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/andrei-alexandrescu.png -------------------------------------------------------------------------------- /static/img/guest/andrew-kelley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/andrew-kelley.jpg -------------------------------------------------------------------------------- /static/img/guest/andrew-leaverfay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/andrew-leaverfay.jpg -------------------------------------------------------------------------------- /static/img/guest/andrew-pardoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/andrew-pardoe.png -------------------------------------------------------------------------------- /static/img/guest/andrew-selle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/andrew-selle.jpg -------------------------------------------------------------------------------- /static/img/guest/ankit-asthana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/ankit-asthana.jpg -------------------------------------------------------------------------------- /static/img/guest/anny-gakh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/anny-gakh.jpg -------------------------------------------------------------------------------- /static/img/guest/anoop-prabha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/anoop-prabha.png -------------------------------------------------------------------------------- /static/img/guest/ansel-sermersheim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/ansel-sermersheim.jpg -------------------------------------------------------------------------------- /static/img/guest/anthony-williams.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/anthony-williams.jpg -------------------------------------------------------------------------------- /static/img/guest/antony-polukhin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/antony-polukhin.jpg -------------------------------------------------------------------------------- /static/img/guest/arnaud-desitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/arnaud-desitter.png -------------------------------------------------------------------------------- /static/img/guest/arne-mertz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/arne-mertz.jpg -------------------------------------------------------------------------------- /static/img/guest/arno-schodl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/arno-schodl.jpg -------------------------------------------------------------------------------- /static/img/guest/artem-dinaburg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/artem-dinaburg.jpg -------------------------------------------------------------------------------- /static/img/guest/arthur-odwyer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/arthur-odwyer.jpg -------------------------------------------------------------------------------- /static/img/guest/arvid-gerstmann.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/arvid-gerstmann.jpg -------------------------------------------------------------------------------- /static/img/guest/ashley-hedberg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/ashley-hedberg.jpg -------------------------------------------------------------------------------- /static/img/guest/augustin-popa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/augustin-popa.jpg -------------------------------------------------------------------------------- /static/img/guest/avi-lachmish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/avi-lachmish.jpg -------------------------------------------------------------------------------- /static/img/guest/balazs-torok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/balazs-torok.png -------------------------------------------------------------------------------- /static/img/guest/barbara-geller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/barbara-geller.jpg -------------------------------------------------------------------------------- /static/img/guest/barry-revzin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/barry-revzin.jpg -------------------------------------------------------------------------------- /static/img/guest/bartlomiej-filipek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/bartlomiej-filipek.jpg -------------------------------------------------------------------------------- /static/img/guest/basit-ayantunde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/basit-ayantunde.jpg -------------------------------------------------------------------------------- /static/img/guest/ben-craig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/ben-craig.jpg -------------------------------------------------------------------------------- /static/img/guest/ben-deane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/ben-deane.jpg -------------------------------------------------------------------------------- /static/img/guest/ben-smith.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/ben-smith.jpg -------------------------------------------------------------------------------- /static/img/guest/billy-oneal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/billy-oneal.jpg -------------------------------------------------------------------------------- /static/img/guest/billy-sisson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/billy-sisson.jpg -------------------------------------------------------------------------------- /static/img/guest/bjarne-stroustrup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/bjarne-stroustrup.jpg -------------------------------------------------------------------------------- /static/img/guest/bjorn-fahller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/bjorn-fahller.jpg -------------------------------------------------------------------------------- /static/img/guest/bob-brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/bob-brown.png -------------------------------------------------------------------------------- /static/img/guest/bob-steagall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/bob-steagall.png -------------------------------------------------------------------------------- /static/img/guest/borislav-stanimirov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/borislav-stanimirov.jpg -------------------------------------------------------------------------------- /static/img/guest/botond-ballo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/botond-ballo.jpg -------------------------------------------------------------------------------- /static/img/guest/brad-larson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/brad-larson.jpg -------------------------------------------------------------------------------- /static/img/guest/brandon-duick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/brandon-duick.jpg -------------------------------------------------------------------------------- /static/img/guest/bret-brown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/bret-brown.jpg -------------------------------------------------------------------------------- /static/img/guest/brett-hall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/brett-hall.png -------------------------------------------------------------------------------- /static/img/guest/brian-kernighan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/brian-kernighan.jpg -------------------------------------------------------------------------------- /static/img/guest/brittany-friedman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/brittany-friedman.jpg -------------------------------------------------------------------------------- /static/img/guest/bruno-cardoso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/bruno-cardoso.png -------------------------------------------------------------------------------- /static/img/guest/bryce-lelbach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/bryce-lelbach.jpg -------------------------------------------------------------------------------- /static/img/guest/carl-cook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/carl-cook.jpg -------------------------------------------------------------------------------- /static/img/guest/chandler-carruth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/chandler-carruth.jpg -------------------------------------------------------------------------------- /static/img/guest/charley-bay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/charley-bay.jpg -------------------------------------------------------------------------------- /static/img/guest/chris-dibella.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/chris-dibella.jpg -------------------------------------------------------------------------------- /static/img/guest/christian-ressell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/christian-ressell.png -------------------------------------------------------------------------------- /static/img/guest/clare-macrae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/clare-macrae.png -------------------------------------------------------------------------------- /static/img/guest/colin-hirsch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/colin-hirsch.jpg -------------------------------------------------------------------------------- /static/img/guest/conor-hoekstra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/conor-hoekstra.png -------------------------------------------------------------------------------- /static/img/guest/corentin-jabot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/corentin-jabot.png -------------------------------------------------------------------------------- /static/img/guest/craig-scott.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/craig-scott.png -------------------------------------------------------------------------------- /static/img/guest/daisy-hollman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/daisy-hollman.jpg -------------------------------------------------------------------------------- /static/img/guest/damien-buhl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/damien-buhl.jpg -------------------------------------------------------------------------------- /static/img/guest/dan-saks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/dan-saks.jpg -------------------------------------------------------------------------------- /static/img/guest/dana-rochman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/dana-rochman.jpg -------------------------------------------------------------------------------- /static/img/guest/daniel-marjamaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/daniel-marjamaki.png -------------------------------------------------------------------------------- /static/img/guest/daniel-moth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/daniel-moth.jpg -------------------------------------------------------------------------------- /static/img/guest/daniel-ruoso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/daniel-ruoso.jpg -------------------------------------------------------------------------------- /static/img/guest/daniela-engert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/daniela-engert.jpg -------------------------------------------------------------------------------- /static/img/guest/darrell-wright.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/darrell-wright.jpg -------------------------------------------------------------------------------- /static/img/guest/dave-abrahams.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/dave-abrahams.jpg -------------------------------------------------------------------------------- /static/img/guest/dave-hagedorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/dave-hagedorn.png -------------------------------------------------------------------------------- /static/img/guest/dave-moore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/dave-moore.jpg -------------------------------------------------------------------------------- /static/img/guest/daveed-vandevoorde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/daveed-vandevoorde.jpg -------------------------------------------------------------------------------- /static/img/guest/david-adler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/david-adler.jpg -------------------------------------------------------------------------------- /static/img/guest/david-barr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/david-barr.jpg -------------------------------------------------------------------------------- /static/img/guest/david-millington.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/david-millington.png -------------------------------------------------------------------------------- /static/img/guest/david-olsen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/david-olsen.jpg -------------------------------------------------------------------------------- /static/img/guest/david-sankel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/david-sankel.jpg -------------------------------------------------------------------------------- /static/img/guest/david-stone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/david-stone.jpg -------------------------------------------------------------------------------- /static/img/guest/denis-bakhvalov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/denis-bakhvalov.jpg -------------------------------------------------------------------------------- /static/img/guest/denis-yaroshevskiy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/denis-yaroshevskiy.jpg -------------------------------------------------------------------------------- /static/img/guest/devon-labrie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/devon-labrie.jpg -------------------------------------------------------------------------------- /static/img/guest/diana-ojeda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/diana-ojeda.jpg -------------------------------------------------------------------------------- /static/img/guest/diego-rodriguez-losada.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/diego-rodriguez-losada.jpg -------------------------------------------------------------------------------- /static/img/guest/dirk-eddelbuettel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/dirk-eddelbuettel.png -------------------------------------------------------------------------------- /static/img/guest/dmitri-nesteruk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/dmitri-nesteruk.jpg -------------------------------------------------------------------------------- /static/img/guest/dori-exterman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/dori-exterman.jpg -------------------------------------------------------------------------------- /static/img/guest/doug-binks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/doug-binks.jpg -------------------------------------------------------------------------------- /static/img/guest/eberhard-grather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/eberhard-grather.jpg -------------------------------------------------------------------------------- /static/img/guest/edaqa-mortoray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/edaqa-mortoray.jpg -------------------------------------------------------------------------------- /static/img/guest/edouard-alligand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/edouard-alligand.jpg -------------------------------------------------------------------------------- /static/img/guest/elena-sagalaeva.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/elena-sagalaeva.jpg -------------------------------------------------------------------------------- /static/img/guest/elias-daler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/elias-daler.jpg -------------------------------------------------------------------------------- /static/img/guest/emery-berger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/emery-berger.jpg -------------------------------------------------------------------------------- /static/img/guest/eric-fiselier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/eric-fiselier.jpg -------------------------------------------------------------------------------- /static/img/guest/eric-niebler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/eric-niebler.jpg -------------------------------------------------------------------------------- /static/img/guest/eugene-sandulenko.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/eugene-sandulenko.jpg -------------------------------------------------------------------------------- /static/img/guest/ezra-chung.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/ezra-chung.jpg -------------------------------------------------------------------------------- /static/img/guest/felix-petriconi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/felix-petriconi.jpg -------------------------------------------------------------------------------- /static/img/guest/fred-tingaud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/fred-tingaud.jpg -------------------------------------------------------------------------------- /static/img/guest/gabriel-dos-reis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/gabriel-dos-reis.jpg -------------------------------------------------------------------------------- /static/img/guest/gal-zaban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/gal-zaban.png -------------------------------------------------------------------------------- /static/img/guest/gasper-azman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/gasper-azman.jpg -------------------------------------------------------------------------------- /static/img/guest/gina-stephens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/gina-stephens.jpg -------------------------------------------------------------------------------- /static/img/guest/gor-nishanov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/gor-nishanov.jpg -------------------------------------------------------------------------------- /static/img/guest/gordon-brown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/gordon-brown.jpg -------------------------------------------------------------------------------- /static/img/guest/greg-becker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/greg-becker.jpg -------------------------------------------------------------------------------- /static/img/guest/greg-law.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/greg-law.jpg -------------------------------------------------------------------------------- /static/img/guest/gunter-obiltschnig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/gunter-obiltschnig.jpg -------------------------------------------------------------------------------- /static/img/guest/guy-davidson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/guy-davidson.jpg -------------------------------------------------------------------------------- /static/img/guest/hal-finkel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/hal-finkel.jpg -------------------------------------------------------------------------------- /static/img/guest/hana-dusikova.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/hana-dusikova.jpg -------------------------------------------------------------------------------- /static/img/guest/harald-achitz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/harald-achitz.jpg -------------------------------------------------------------------------------- /static/img/guest/hartmut-kaiser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/hartmut-kaiser.jpg -------------------------------------------------------------------------------- /static/img/guest/herb-sutter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/herb-sutter.jpg -------------------------------------------------------------------------------- /static/img/guest/howard-butler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/howard-butler.jpg -------------------------------------------------------------------------------- /static/img/guest/howard-hinnant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/howard-hinnant.jpg -------------------------------------------------------------------------------- /static/img/guest/ian-taylor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/ian-taylor.jpg -------------------------------------------------------------------------------- /static/img/guest/inbal-levi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/inbal-levi.jpg -------------------------------------------------------------------------------- /static/img/guest/isabella-muerte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/isabella-muerte.jpg -------------------------------------------------------------------------------- /static/img/guest/ivan-cukic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/ivan-cukic.jpg -------------------------------------------------------------------------------- /static/img/guest/ivica-bogosavljevic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/ivica-bogosavljevic.jpg -------------------------------------------------------------------------------- /static/img/guest/jack-maguire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jack-maguire.jpg -------------------------------------------------------------------------------- /static/img/guest/jackie-kay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jackie-kay.jpg -------------------------------------------------------------------------------- /static/img/guest/james-mcnellis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/james-mcnellis.jpg -------------------------------------------------------------------------------- /static/img/guest/jan-wilmans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jan-wilmans.jpg -------------------------------------------------------------------------------- /static/img/guest/jason-rice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jason-rice.jpg -------------------------------------------------------------------------------- /static/img/guest/jason-turner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jason-turner.jpg -------------------------------------------------------------------------------- /static/img/guest/jeanheyd-meneide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jeanheyd-meneide.png -------------------------------------------------------------------------------- /static/img/guest/jeanlouis-leroy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jeanlouis-leroy.jpg -------------------------------------------------------------------------------- /static/img/guest/jeff-amstutz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jeff-amstutz.jpg -------------------------------------------------------------------------------- /static/img/guest/jens-weller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jens-weller.jpg -------------------------------------------------------------------------------- /static/img/guest/jeri-ellsworth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jeri-ellsworth.png -------------------------------------------------------------------------------- /static/img/guest/jf-bastien.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jf-bastien.jpg -------------------------------------------------------------------------------- /static/img/guest/joel-deguzman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/joel-deguzman.jpg -------------------------------------------------------------------------------- /static/img/guest/joel-falcou.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/joel-falcou.jpg -------------------------------------------------------------------------------- /static/img/guest/joel-lamotte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/joel-lamotte.jpg -------------------------------------------------------------------------------- /static/img/guest/john-lakos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/john-lakos.jpg -------------------------------------------------------------------------------- /static/img/guest/john-regehr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/john-regehr.jpg -------------------------------------------------------------------------------- /static/img/guest/jon-kalb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jon-kalb.jpg -------------------------------------------------------------------------------- /static/img/guest/jon-turner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jon-turner.jpg -------------------------------------------------------------------------------- /static/img/guest/jonathan-beard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jonathan-beard.jpg -------------------------------------------------------------------------------- /static/img/guest/jonathan-boccara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jonathan-boccara.png -------------------------------------------------------------------------------- /static/img/guest/jonathan-muller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jonathan-muller.jpg -------------------------------------------------------------------------------- /static/img/guest/josh-filstrup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/josh-filstrup.jpg -------------------------------------------------------------------------------- /static/img/guest/josh-peterson.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/josh-peterson.jpeg -------------------------------------------------------------------------------- /static/img/guest/juanpe-bolivar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/juanpe-bolivar.jpg -------------------------------------------------------------------------------- /static/img/guest/julia-reid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/julia-reid.jpg -------------------------------------------------------------------------------- /static/img/guest/julian-storer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/julian-storer.jpg -------------------------------------------------------------------------------- /static/img/guest/julio-merino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/julio-merino.jpg -------------------------------------------------------------------------------- /static/img/guest/jussi-pakkanen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/jussi-pakkanen.jpg -------------------------------------------------------------------------------- /static/img/guest/justin-meiners.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/justin-meiners.jpg -------------------------------------------------------------------------------- /static/img/guest/karl-li.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/karl-li.jpg -------------------------------------------------------------------------------- /static/img/guest/kate-gregory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/kate-gregory.jpg -------------------------------------------------------------------------------- /static/img/guest/ken-museth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/ken-museth.jpg -------------------------------------------------------------------------------- /static/img/guest/kenny-kerr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/kenny-kerr.png -------------------------------------------------------------------------------- /static/img/guest/kevin-cadieux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/kevin-cadieux.jpg -------------------------------------------------------------------------------- /static/img/guest/kevlin-henney.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/kevlin-henney.jpg -------------------------------------------------------------------------------- /static/img/guest/khalil-estell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/khalil-estell.png -------------------------------------------------------------------------------- /static/img/guest/kirk-shoop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/kirk-shoop.jpg -------------------------------------------------------------------------------- /static/img/guest/klaus-iglberger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/klaus-iglberger.jpg -------------------------------------------------------------------------------- /static/img/guest/klemens-morgenstern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/klemens-morgenstern.png -------------------------------------------------------------------------------- /static/img/guest/kris-jusiak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/kris-jusiak.jpg -------------------------------------------------------------------------------- /static/img/guest/krister-walfridsson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/krister-walfridsson.jpg -------------------------------------------------------------------------------- /static/img/guest/lenny-maiorani.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/lenny-maiorani.jpg -------------------------------------------------------------------------------- /static/img/guest/linus-groh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/linus-groh.png -------------------------------------------------------------------------------- /static/img/guest/lisa-lippincott.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/lisa-lippincott.jpg -------------------------------------------------------------------------------- /static/img/guest/logan-kilpatrick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/logan-kilpatrick.jpg -------------------------------------------------------------------------------- /static/img/guest/loic-joly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/loic-joly.jpg -------------------------------------------------------------------------------- /static/img/guest/louis-dionne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/louis-dionne.jpg -------------------------------------------------------------------------------- /static/img/guest/lukacs-berki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/lukacs-berki.jpg -------------------------------------------------------------------------------- /static/img/guest/manuel-sanchez.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/manuel-sanchez.jpg -------------------------------------------------------------------------------- /static/img/guest/marc-valle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/marc-valle.jpg -------------------------------------------------------------------------------- /static/img/guest/marco-magdy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/marco-magdy.jpg -------------------------------------------------------------------------------- /static/img/guest/marcus-tillmanns.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/marcus-tillmanns.jpeg -------------------------------------------------------------------------------- /static/img/guest/marian-luparu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/marian-luparu.jpg -------------------------------------------------------------------------------- /static/img/guest/marit-tokle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/marit-tokle.jpg -------------------------------------------------------------------------------- /static/img/guest/mark-hoemmen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/mark-hoemmen.jpg -------------------------------------------------------------------------------- /static/img/guest/mark-logan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/mark-logan.jpg -------------------------------------------------------------------------------- /static/img/guest/marshall-clow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/marshall-clow.jpg -------------------------------------------------------------------------------- /static/img/guest/martin-horenovsky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/martin-horenovsky.jpg -------------------------------------------------------------------------------- /static/img/guest/mateusz-pusz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/mateusz-pusz.jpg -------------------------------------------------------------------------------- /static/img/guest/mathieu-ropert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/mathieu-ropert.jpg -------------------------------------------------------------------------------- /static/img/guest/matt-bentley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/matt-bentley.jpg -------------------------------------------------------------------------------- /static/img/guest/matt-butler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/matt-butler.jpg -------------------------------------------------------------------------------- /static/img/guest/matt-calabrese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/matt-calabrese.jpg -------------------------------------------------------------------------------- /static/img/guest/matt-fernandez.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/matt-fernandez.jpg -------------------------------------------------------------------------------- /static/img/guest/matt-godbolt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/matt-godbolt.jpg -------------------------------------------------------------------------------- /static/img/guest/matt-klein.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/matt-klein.jpg -------------------------------------------------------------------------------- /static/img/guest/matt-mccormick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/matt-mccormick.jpg -------------------------------------------------------------------------------- /static/img/guest/matthew-vonarx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/matthew-vonarx.jpg -------------------------------------------------------------------------------- /static/img/guest/michael-afanasiev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/michael-afanasiev.jpg -------------------------------------------------------------------------------- /static/img/guest/michael-caisse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/michael-caisse.png -------------------------------------------------------------------------------- /static/img/guest/michael-park.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/michael-park.jpg -------------------------------------------------------------------------------- /static/img/guest/michael-wong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/michael-wong.jpg -------------------------------------------------------------------------------- /static/img/guest/michal-kovarik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/michal-kovarik.png -------------------------------------------------------------------------------- /static/img/guest/mikael-simberg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/mikael-simberg.jpg -------------------------------------------------------------------------------- /static/img/guest/miodrag-milanovic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/miodrag-milanovic.jpg -------------------------------------------------------------------------------- /static/img/guest/miro-knejp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/miro-knejp.jpg -------------------------------------------------------------------------------- /static/img/guest/nevin-liber.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/nevin-liber.jpg -------------------------------------------------------------------------------- /static/img/guest/niall-douglas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/niall-douglas.jpg -------------------------------------------------------------------------------- /static/img/guest/nico-josuttis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/nico-josuttis.jpg -------------------------------------------------------------------------------- /static/img/guest/nicolas-fleury.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/nicolas-fleury.jpg -------------------------------------------------------------------------------- /static/img/guest/nicolas-guillemot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/nicolas-guillemot.png -------------------------------------------------------------------------------- /static/img/guest/nicolas-lazareff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/nicolas-lazareff.jpg -------------------------------------------------------------------------------- /static/img/guest/nicole-mazzuca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/nicole-mazzuca.jpg -------------------------------------------------------------------------------- /static/img/guest/nikolai-wuttke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/nikolai-wuttke.jpg -------------------------------------------------------------------------------- /static/img/guest/odin-holmes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/odin-holmes.jpg -------------------------------------------------------------------------------- /static/img/guest/olafur-waage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/olafur-waage.jpg -------------------------------------------------------------------------------- /static/img/guest/oleg-rabaev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/oleg-rabaev.jpg -------------------------------------------------------------------------------- /static/img/guest/oliver-ddin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/oliver-ddin.jpg -------------------------------------------------------------------------------- /static/img/guest/olivier-giroux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/olivier-giroux.jpg -------------------------------------------------------------------------------- /static/img/guest/ondrej-certik.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/ondrej-certik.jpg -------------------------------------------------------------------------------- /static/img/guest/pablo-santos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/pablo-santos.jpg -------------------------------------------------------------------------------- /static/img/guest/patrice-roy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/patrice-roy.jpg -------------------------------------------------------------------------------- /static/img/guest/patricia-aas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/patricia-aas.jpg -------------------------------------------------------------------------------- /static/img/guest/patryk-obara.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/patryk-obara.jpg -------------------------------------------------------------------------------- /static/img/guest/paul-fultz-ii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/paul-fultz-ii.jpg -------------------------------------------------------------------------------- /static/img/guest/paul-miller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/paul-miller.jpg -------------------------------------------------------------------------------- /static/img/guest/pejman-ghorbanzade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/pejman-ghorbanzade.jpg -------------------------------------------------------------------------------- /static/img/guest/peter-bindels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/peter-bindels.jpg -------------------------------------------------------------------------------- /static/img/guest/peter-brett.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/peter-brett.jpg -------------------------------------------------------------------------------- /static/img/guest/phil-nash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/phil-nash.jpg -------------------------------------------------------------------------------- /static/img/guest/philipp-schrader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/philipp-schrader.jpg -------------------------------------------------------------------------------- /static/img/guest/piotr-gaczowski.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/piotr-gaczowski.jpg -------------------------------------------------------------------------------- /static/img/guest/piotr-winter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/piotr-winter.jpg -------------------------------------------------------------------------------- /static/img/guest/rainer-grimm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/rainer-grimm.jpg -------------------------------------------------------------------------------- /static/img/guest/raymond-chen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/raymond-chen.jpg -------------------------------------------------------------------------------- /static/img/guest/remi-coulom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/remi-coulom.jpg -------------------------------------------------------------------------------- /static/img/guest/rene-rivera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/rene-rivera.jpg -------------------------------------------------------------------------------- /static/img/guest/richard-thomson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/richard-thomson.jpg -------------------------------------------------------------------------------- /static/img/guest/richel-bilderbeek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/richel-bilderbeek.jpg -------------------------------------------------------------------------------- /static/img/guest/robert-leahy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/robert-leahy.jpg -------------------------------------------------------------------------------- /static/img/guest/robert-maynard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/robert-maynard.jpg -------------------------------------------------------------------------------- /static/img/guest/robert-nystrom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/robert-nystrom.jpg -------------------------------------------------------------------------------- /static/img/guest/robert-ocallahan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/robert-ocallahan.png -------------------------------------------------------------------------------- /static/img/guest/robert-ramey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/robert-ramey.jpg -------------------------------------------------------------------------------- /static/img/guest/robert-schumacher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/robert-schumacher.png -------------------------------------------------------------------------------- /static/img/guest/robert-seacord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/robert-seacord.jpg -------------------------------------------------------------------------------- /static/img/guest/roland-bock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/roland-bock.png -------------------------------------------------------------------------------- /static/img/guest/rong-lu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/rong-lu.jpg -------------------------------------------------------------------------------- /static/img/guest/ryan-eberhardt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/ryan-eberhardt.jpg -------------------------------------------------------------------------------- /static/img/guest/saar-raz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/saar-raz.jpg -------------------------------------------------------------------------------- /static/img/guest/samy-bahra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/samy-bahra.png -------------------------------------------------------------------------------- /static/img/guest/sara-chipps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/sara-chipps.png -------------------------------------------------------------------------------- /static/img/guest/sarah-smith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/sarah-smith.png -------------------------------------------------------------------------------- /static/img/guest/satabdi-das.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/satabdi-das.jpg -------------------------------------------------------------------------------- /static/img/guest/scott-meyers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/scott-meyers.jpg -------------------------------------------------------------------------------- /static/img/guest/sean-baxter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/sean-baxter.jpg -------------------------------------------------------------------------------- /static/img/guest/sean-parent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/sean-parent.jpg -------------------------------------------------------------------------------- /static/img/guest/sebastian-theophil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/sebastian-theophil.jpg -------------------------------------------------------------------------------- /static/img/guest/simon-brand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/simon-brand.jpg -------------------------------------------------------------------------------- /static/img/guest/slobodan-dmitrovic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/slobodan-dmitrovic.jpg -------------------------------------------------------------------------------- /static/img/guest/sohail-somani.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/sohail-somani.png -------------------------------------------------------------------------------- /static/img/guest/staffan-tjernstrom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/staffan-tjernstrom.jpg -------------------------------------------------------------------------------- /static/img/guest/stephanie-brenham.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/stephanie-brenham.jpg -------------------------------------------------------------------------------- /static/img/guest/stephen-kelly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/stephen-kelly.jpg -------------------------------------------------------------------------------- /static/img/guest/steve-klabnik.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/steve-klabnik.jpg -------------------------------------------------------------------------------- /static/img/guest/stl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/stl.png -------------------------------------------------------------------------------- /static/img/guest/sy-brand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/sy-brand.jpg -------------------------------------------------------------------------------- /static/img/guest/tara-raj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/tara-raj.jpg -------------------------------------------------------------------------------- /static/img/guest/tara-walker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/tara-walker.jpg -------------------------------------------------------------------------------- /static/img/guest/teresa-johnson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/teresa-johnson.jpg -------------------------------------------------------------------------------- /static/img/guest/thiago-macieira.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/thiago-macieira.jpg -------------------------------------------------------------------------------- /static/img/guest/timur-doumler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/timur-doumler.jpg -------------------------------------------------------------------------------- /static/img/guest/titus-winters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/titus-winters.jpg -------------------------------------------------------------------------------- /static/img/guest/tobias-hunger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/tobias-hunger.jpg -------------------------------------------------------------------------------- /static/img/guest/tobias-lensing.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/tobias-lensing.jpeg -------------------------------------------------------------------------------- /static/img/guest/todd-gamblin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/todd-gamblin.jpg -------------------------------------------------------------------------------- /static/img/guest/tom-breza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/tom-breza.jpg -------------------------------------------------------------------------------- /static/img/guest/tom-honermann.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/tom-honermann.jpeg -------------------------------------------------------------------------------- /static/img/guest/tony-van-eerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/tony-van-eerd.png -------------------------------------------------------------------------------- /static/img/guest/tony-wasserka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/tony-wasserka.jpg -------------------------------------------------------------------------------- /static/img/guest/tristan-brindle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/tristan-brindle.jpg -------------------------------------------------------------------------------- /static/img/guest/tyler-angwanek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/tyler-angwanek.jpg -------------------------------------------------------------------------------- /static/img/guest/udit-patidar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/udit-patidar.png -------------------------------------------------------------------------------- /static/img/guest/vadim-zeitlin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/vadim-zeitlin.jpg -------------------------------------------------------------------------------- /static/img/guest/victor-ciura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/victor-ciura.jpg -------------------------------------------------------------------------------- /static/img/guest/victor-zverovich.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/victor-zverovich.jpg -------------------------------------------------------------------------------- /static/img/guest/vinnie-falco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/vinnie-falco.png -------------------------------------------------------------------------------- /static/img/guest/vittorio-romeo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/vittorio-romeo.jpg -------------------------------------------------------------------------------- /static/img/guest/yacob-cohen-arazi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/yacob-cohen-arazi.png -------------------------------------------------------------------------------- /static/img/guest/yannic-staudt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/yannic-staudt.jpg -------------------------------------------------------------------------------- /static/img/guest/yuri-minaev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/yuri-minaev.png -------------------------------------------------------------------------------- /static/img/guest/zach-lieberman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/guest/zach-lieberman.png -------------------------------------------------------------------------------- /static/img/host/jason-turner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/host/jason-turner.jpg -------------------------------------------------------------------------------- /static/img/host/jeanheyd-meneide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/host/jeanheyd-meneide.jpg -------------------------------------------------------------------------------- /static/img/host/rob-irving.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/host/rob-irving.jpg -------------------------------------------------------------------------------- /static/img/libsyn-banner-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/libsyn-banner-background.jpg -------------------------------------------------------------------------------- /static/img/logo-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/logo-square.png -------------------------------------------------------------------------------- /static/img/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/logo@2x.png -------------------------------------------------------------------------------- /static/img/sponsors/Backtrace_900x193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/sponsors/Backtrace_900x193.png -------------------------------------------------------------------------------- /static/img/sponsors/ClangPowerToolsBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/sponsors/ClangPowerToolsBanner.png -------------------------------------------------------------------------------- /static/img/sponsors/Cpp-Builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/sponsors/Cpp-Builder.png -------------------------------------------------------------------------------- /static/img/sponsors/Incredibuild_300x250.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/sponsors/Incredibuild_300x250.gif -------------------------------------------------------------------------------- /static/img/sponsors/PVS-Studio_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/sponsors/PVS-Studio_banner.png -------------------------------------------------------------------------------- /static/img/sponsors/WholeTomatoBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/sponsors/WholeTomatoBanner.png -------------------------------------------------------------------------------- /static/img/sponsors/clangpowertools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/sponsors/clangpowertools.png -------------------------------------------------------------------------------- /static/img/sponsors/cppcon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/sponsors/cppcon-logo.png -------------------------------------------------------------------------------- /static/img/sponsors/jetbrains_600x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/sponsors/jetbrains_600x500.png -------------------------------------------------------------------------------- /static/img/sponsors/sonar-light-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/static/img/sponsors/sonar-light-bg.png -------------------------------------------------------------------------------- /themes/castanet/archetypes/about.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "about us" 3 | description = "about this site" 4 | Date = {{ .Date }} 5 | +++ 6 | -------------------------------------------------------------------------------- /themes/castanet/archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | Date = {{ .Date }} 3 | title = "" 4 | +++ 5 | -------------------------------------------------------------------------------- /themes/castanet/gulpfile.js: -------------------------------------------------------------------------------- 1 | var requireDir = require('require-dir'); 2 | 3 | // Require all tasks in gulp/tasks, including subfolders 4 | requireDir('./gulp/tasks', { recurse: true }); -------------------------------------------------------------------------------- /themes/castanet/images/screenshot-v01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/images/screenshot-v01.png -------------------------------------------------------------------------------- /themes/castanet/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/images/screenshot.png -------------------------------------------------------------------------------- /themes/castanet/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/images/tn.png -------------------------------------------------------------------------------- /themes/castanet/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/layouts/404.html -------------------------------------------------------------------------------- /themes/castanet/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/layouts/_default/list.html -------------------------------------------------------------------------------- /themes/castanet/static/audiojs/audiojs.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/audiojs/audiojs.swf -------------------------------------------------------------------------------- /themes/castanet/static/audiojs/player-graphics.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/audiojs/player-graphics.gif -------------------------------------------------------------------------------- /themes/castanet/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /themes/castanet/static/fonts/FontAwesome0.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/fonts/FontAwesome0.otf -------------------------------------------------------------------------------- /themes/castanet/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /themes/castanet/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /themes/castanet/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /themes/castanet/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /themes/castanet/static/img/episode/default-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/img/episode/default-social.jpg -------------------------------------------------------------------------------- /themes/castanet/static/img/episode/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/img/episode/default.jpg -------------------------------------------------------------------------------- /themes/castanet/static/img/guest/default-guest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/img/guest/default-guest.png -------------------------------------------------------------------------------- /themes/castanet/static/img/mejs-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/img/mejs-controls.png -------------------------------------------------------------------------------- /themes/castanet/static/img/player-graphics.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/img/player-graphics.gif -------------------------------------------------------------------------------- /themes/castanet/static/img/player-graphics@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/img/player-graphics@2x.gif -------------------------------------------------------------------------------- /themes/castanet/static/js/castanet.js: -------------------------------------------------------------------------------- 1 | // This file is built by gulp -------------------------------------------------------------------------------- /themes/castanet/static/js/player-graphics.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/js/player-graphics.gif -------------------------------------------------------------------------------- /themes/castanet/static/js/player-graphics@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/js/player-graphics@2x.gif -------------------------------------------------------------------------------- /themes/castanet/static/player-graphics@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/player-graphics@2x.gif -------------------------------------------------------------------------------- /themes/castanet/static/scss/blue.scss: -------------------------------------------------------------------------------- 1 | @import "site"; 2 | @import "blue_variables"; 3 | @import "custom"; 4 | -------------------------------------------------------------------------------- /themes/castanet/static/scss/grey.scss: -------------------------------------------------------------------------------- 1 | @import "site"; 2 | @import "grey_variables"; 3 | @import "custom"; 4 | -------------------------------------------------------------------------------- /themes/castanet/static/scss/orange.scss: -------------------------------------------------------------------------------- 1 | @import "site"; 2 | @import "orange_variables"; 3 | @import "custom"; 4 | -------------------------------------------------------------------------------- /themes/castanet/static/swf/audiojs.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/swf/audiojs.swf -------------------------------------------------------------------------------- /themes/castanet/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /themes/castanet/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /themes/castanet/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /themes/castanet/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /themes/castanet/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /themes/castanet/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /themes/castanet/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /themes/castanet/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /themes/castanet/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /themes/castanet/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /themes/castanet/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /themes/castanet/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /themes/castanet/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwirving/cppcast/4e23eb240099c60ea1ae7eb4b60374e409315b3d/themes/castanet/utils/README.md --------------------------------------------------------------------------------