Podcast appearances and mentions of cecil phillip

  • 15PODCASTS
  • 19EPISODES
  • 52mAVG DURATION
  • ?INFREQUENT EPISODES
  • Mar 3, 2023LATEST

POPULARITY

20172018201920202021202220232024


Best podcasts about cecil phillip

Latest podcast episodes about cecil phillip

Happenstance
36: Gaining Perspective with Cecil Phillip

Happenstance

Play Episode Listen Later Mar 3, 2023 58:49


Getting a job from a Tweet, cultivating a network of folks in your corner, and being your own career champion are core elements of today's Happenstance moments and the ways in which our guest, Cecil Phillip has gained perspective. Cecil Phillip is a father, swimmer, podcaster, music lover, and a recently certified scuba diver. He also has over a decade of experience in software development where he's worked in various industries such as finance, education, HR, and healthcare. Today he's a Developer Advocate at Stripe focusing on guiding developers on how to securely add payment processing to their applications.Guest Links:LinkedInTwitter Polywork GitHub Let's Connect:@HappenstanceThePodcast@CareerCoachCassie

Talk Python To Me - Python conversations for passionate developers
#397: Evaluating New Open Source Tech Panel

Talk Python To Me - Python conversations for passionate developers

Play Episode Listen Later Jan 5, 2023 63:25


The beauty of open source software and libraries is that you're not stuck with a single option some vendor is offering. This is especially true when that support is poor and antiquated. Almost any capability you think of has multiple options even for a single language such as Python. Just think about how many web frameworks you can pick today. Links from the show Guests Emily Morehouse-Valcarcel: @emilyemorehouse Cecil Phillip: @cecilphillip@hachyderm.io Kim van Wyk: @kimvanwyk@fosstodon.org Łukasz Langa: @ambv@mastodon.social Gareth Thomas: @thestub@pythonist.as Dan Gerlanc: @dgerlanc@fosstodon.org Does the GitHub page need to be pretty?: github.com/tiangolo/fastapi Do fancy "marketing pages" matter? Poetry: python-poetry.org Tailwind: tailwindcss.com VueJS: vuejs.org Aesara: github.com/aesara-devs/ Story of creating Michael's Site: mkennedy.codes Went to the community: fosstodon.org Hugo Site Generator: gohugo.io Watch this episode on YouTube: youtube.com Episode transcripts: talkpython.fm --- Stay in touch with us --- Subscribe to us on YouTube: youtube.com Follow Talk Python on Mastodon: talkpython Follow Michael on Mastodon: mkennedy Sponsors Cox Automotive Sentry Error Monitoring, Code TALKPYTHON AssemblyAI Talk Python Training

Adventures in .NET
Minimal APIs Aren't so Minimal in Power - .NET 114

Adventures in .NET

Play Episode Listen Later Apr 11, 2022 40:20


Cecil Philips returns to the show to discuss the power of Minimal APIs and the differences to Controllers. They also discussed about using .NET with Stripe, and use cases for .NET Interactive. Sponsors Top End Devs (https://topenddevs.com/) Coaching | Top End Devs (https://topenddevs.com/coaching) Picks Cecil- Assassin's Creed Valhalla for Xbox One, PS4, PC & More | Ubisoft (US) (https://www.ubisoft.com/en-us/game/assassins-creed/valhalla) Shawn- Upload Season 2 (https://amzn.to/3E1VRV0) Special Guest: Cecil Phillip.

Coffee and Open Source
Cecil Phillip

Coffee and Open Source

Play Episode Listen Later Mar 10, 2022 76:01


Cecil Phillip is a father, swimmer, podcaster, music lover, and a recently certified scuba diver. He also has over a decade of experience in the software development where he's worked in various industries such as finance, education, HR, and healthcare. Today he's a Developer Advocate at Stripe focusing on guiding .NET developers on how to securely add payment processing to their applications. You can follow Cecil on Social Media https://twitter.com/cecilphillip PLEASE SUBSCRIBE TO THE PODCAST Spotify: http://isaacl.dev/podcast-spotify Apple Podcasts: http://isaacl.dev/podcast-apple Google Podcasts: http://isaacl.dev/podcast-google RSS: http://isaacl.dev/podcast-rss You can check out more episodes of Coffee and Open Source on https://www.coffeeandopensource.com/​​ Coffee and Open Source is hosted by Isaac Levin (https://twitter.com/isaacrlevin) --- Support this podcast: https://podcasters.spotify.com/pod/show/coffeandopensource/support

TheMummichogBlog - Malta In Italiano
https://themummichogblog.com/sulla-rete12-06-2020/

TheMummichogBlog - Malta In Italiano

Play Episode Listen Later Jun 9, 2021 1:51


https://themummichogblog.com/sulla-rete12-06-2020/ Sulla rete ASP.NET Core Series: Blazor 28 maggio 2020 alle 04:45 da Cecil Phillip, Jeremy likness, pattynguyen ASP.NET Core è il nostro open-source, framework cross-platform per la creazione di applicazioni, collegati a Internet moderni, cloud-enabled. In questa serie di video saremo copertura molte delle caratteristiche interessanti del framework.

The 6 Figure Developer Podcast
Episode 198 – DAPR with Cecil Phillip

The 6 Figure Developer Podcast

Play Episode Listen Later May 31, 2021 45:57


  Cecil is a Cloud Advocate at @Microsoft, Podcaster, Teacher, Swimmer, & Music Lover. Born and Raised in Antigua, he now calls Fort Lauderdale, FL home.   Dapr helps developers build event-driven, resilient distributed applications. Whether on-premises, in the cloud, or on an edge device, Dapr helps you tackle the challenges that come with building microservices and keeps your code platform agnostic.   Links https://twitter.com/cecilphillip https://cecilphillip.com/ https://www.linkedin.com/in/cecil-phillip/ https://github.com/cecilphillip https://channel9.msdn.com/Niners/cecilphillip   Resources https://dapr.io/ https://github.com/dapr/workflows https://docs.dapr.io/developing-applications/sdks/ https://github.com/dapr/dotnet-sdk https://docs.microsoft.com/en-us/dotnet/architecture/dapr-for-net-developers/ https://docs.microsoft.com/en-us/dotnet/architecture/dapr-for-net-developers/getting-started https://docs.microsoft.com/en-us/dotnet/architecture/dapr-for-net-developers/dapr-at-20000-feet   "Tempting Time" by Animals As Leaders used with permissions - All Rights Reserved × Subscribe now! Never miss a post, subscribe to The 6 Figure Developer Podcast! Are you interested in being a guest on The 6 Figure Developer Podcast? Click here to check availability!  

Python Bytes
#231 Go Python, Go!

Python Bytes

Play Episode Listen Later Apr 28, 2021 44:13


Watch the live stream: Watch on YouTube About the show Sponsored by us! Support our work through: Our courses at Talk Python Training pytest book Patreon Supporters Special guests: Cecil Phillip Brian #1: For-Else: A Weird but Useful Feature in Python Yang Zhou After a for loop, you can put an else block. The else block only executes when there is no break in the loop. If the loop got all the way to the end, and off the end, the else block will run. First, I’m not used to putting break or else anywhere in my Python code, so I’m also curious why you’d want to do this. Yang explains the feature, then talks about 3 scenarios for use: Iterate and find items without needing a flag variable. break when you find what you are looking for, and the else only runs if you didn’t find it. Help to break out of nested loops I’m still confused by this one Help to handle exceptions Kind of a cool use. try/except in a for loop. Have a break in the except block. Then the else block will be fore code where you know no exceptions were caught. Take away: The first reason wins it for me. I hate it when I feel I need to add a “found” flag to some code. else seems cleaner. Also: Please add comments to else blocks. Many people won’t know how they work, so a short explanation can help tons. Michael #2: Tortoise ORM Familiar asyncio ORM for python, built with relations in mind I’ve seen this ORM popping up around the async web stories a lot these days Similar to Django’s ORM Tortoise ORM is supported on CPython >= 3.7 for SQLite, MySQL and PostgreSQL. They offer a nice, broad perf comparison on their github page Really nice and clean API for ORM things, again on the github page Tortoise ORM uses Aerich as database migrations tool Cecil #3: Faster Python with Go Shared objects Leverage Go's standard library and ecosystem in Python Language interop is a good for productivity Passing data is limited to primitive types Brian #4: Learn by reading code: Python standard library design decisions explained (for advanced beginners) Reading code is a great way to improve your own coding. What code should you read? If it’s great code, you could improve. If it’s scary code, it might not be so good, and might teach you bad practices Python stdlib is there and has some interesting features: all of the code is available PEPs are available so you can read the discussions that went into it while you are reading the code, or before This is huge. Most code you’ll find, even within companies, doesn’t have “why we did this” explanations. However… it is not uniform different authors some is old, and pythonic was different 10-20 years ago lots of code around to preserve backwards compatibility So here’s some recommendations: statistics : code is simple, well documented, PEP has design decisions and comparisons pathlib: good object-oriented example, good comparative study, as you can also read os.path dataclasses: extremely well documented, good example of dataclasses graphlib: does one thing, an implementation of a topological sort algorithm. no PEP, but an issue with a discussion thread that discusses the API decisions Related: https://devops.com/learning-curve-computer-programming-languages/ Michael #5: Gradio: Create UIs for prototyping your machine learning model in 3 minutes via David Smit Quickly create customizable UI components around your models. Gradio makes it easy for you to "play around" with your model in your browser Drag-and-drop in your own images, pasting your own text, recording your own voice, etc. and seeing what the model outputs. Gradio is useful for: Creating demos of your machine learning code for clients / collaborators / users Getting feedback on model performance from users Debugging your model interactively during development Interfaces can be easily shared publicly by setting share=True in the launch() method. Cecil #6: Use basketball stats to optimize game play with Visual Studio Code Free MS Learn learning path Inspired by Space Jam: A New Legacy Use tools like Python, Pandas, and Visual Studio Code Space Jam: A New Legacy coding workshops Extras Michael People are liking the zero analytics / perfect privacy score Joke: They said containers would fix it

Talk Python To Me - Python conversations for passionate developers
#297 Python year in review (2020 edition)

Talk Python To Me - Python conversations for passionate developers

Play Episode Listen Later Dec 28, 2020 70:23


2020 will be one for the history books, won't it? I've put together a great group to look back on 2020 - from the Python perspective. Join me along with Cecil Phillip, Ines Montani, Jay Miller, Paul Everitt, Reuven Lerner, Matt Harrison, and Brian Okken for a light-hearted and fun look back on the major Python events of 2020. Links from the show Video version of this episode: youtube.com Guests Cecil Phillip: @cecilphillip Ines Montani: @_inesmontani Jay Miller: @kjaymiller Paul Everitt: @paulweveritt Reuven Lerner: @reuvenmlerner Matt Harrison: @__mharrison__ Brian Okken: @brianokken Sponsors Talk Python Training

Python Bytes
#214 Python year in review (2020 edition)

Python Bytes

Play Episode Listen Later Dec 28, 2020 70:28


2020 will be one for the history books, won't it? I've put together a great group to look back on 2020 - from the Python perspective. Join Brian and Michael along with Cecil Phillip, Ines Montani, Jay Miller, Paul Everitt, Reuven Lerner, and Matt Harrison for a light-hearted and fun look back on the major Python events of 2020. Video version of this episode: Watch on YouTube Guests Cecil Phillip Ines Montani Jay Miller Paul Everitt Reuven Lerner Matt Harrison

Adventures in .NET
.NET 040: The Magic of DAPR with Cecil Phillip

Adventures in .NET

Play Episode Listen Later Sep 29, 2020 67:37


In this episode of Adventures in .NET we learn about DAPR and how it can make all of our lives easier. Maybe you like microservices or maybe you don’t, well DAPR is here to help with implementation and getting all the different parts of your application talking to each other. Sponsors CodeRush for Visual Studio | FREE 30-DAY TRIAL Raygun | Click here to get started on your free 14-day trial Faithlife | Now Hiring Software Developers CacheFly Panel Shawn Clabough Caleb Wells Wai Liu Special Guest Cecil Phillip Links DAPR Sidecar pattern https://dapr.io/ MTLS Picks Shawn Clabough Warrior Nun Caleb Destiny 2 Wai Surfshark Cecil Phillip Gotham Knights Follow us on Twitter > @dotNET_Podcast

magic adventures panel mutual gotham knights sidecar warrior nun d'apr wai cachefly cecil phillip raygun click coderush shawn clabough wai liu dotnet podcast
Devchat.tv Master Feed
.NET 040: The Magic of DAPR with Cecil Phillip

Devchat.tv Master Feed

Play Episode Listen Later Sep 29, 2020 67:37


In this episode of Adventures in .NET we learn about DAPR and how it can make all of our lives easier. Maybe you like microservices or maybe you don’t, well DAPR is here to help with implementation and getting all the different parts of your application talking to each other. Sponsors CodeRush for Visual Studio | FREE 30-DAY TRIAL Raygun | Click here to get started on your free 14-day trial Faithlife | Now Hiring Software Developers CacheFly Panel Shawn Clabough Caleb Wells Wai Liu Special Guest Cecil Phillip Links DAPR Sidecar pattern https://dapr.io/ MTLS Picks Shawn Clabough Warrior Nun Caleb Destiny 2 Wai Surfshark Cecil Phillip Gotham Knights Follow us on Twitter > @dotNET_Podcast

magic adventures panel mutual gotham knights sidecar warrior nun d'apr wai cachefly cecil phillip raygun click coderush shawn clabough wai liu dotnet podcast
The PIT Show: Reflections and Interviews in the Tech World
Better than Fixing Computers with Cecil Phillip

The PIT Show: Reflections and Interviews in the Tech World

Play Episode Listen Later Jul 28, 2020 48:51


Follow Cecil@cecilphillipFollow Jay@kjaymillerFollow Productivity in Tech@prod_in_techhttps://productivityintech.comMore Episodes and Things at https://podcast.productivityintech.com.Get Access to the Aftershow by signing up for the Productivity in Tech Newsletter which takes a deeper look into the things Jay is doing around all of his projects.https://buttondown.email/productivityintechWant to Support the Show?While you can't support the show directly you can support all the things Jay is up to by sponsoring him on GitHub!https://github.com/sponsors/kjaymiller/Thank you to Nadir Omowale for "A Hustler In Spite of Myself for the Intro and Outro"

The 6 Figure Developer Podcast
Episode 145 – Cecil Phillip: Getting Started with Python

The 6 Figure Developer Podcast

Play Episode Listen Later May 25, 2020 34:48


  Cecil is a Cloud Advocate at @Microsoft, Podcaster, Teacher, Swimmer, & Music Lover. Born and Raised in Antigua, he now calls Fort Lauderdale, FL home.   Links https://twitter.com/cecilphillip https://cecilphillip.com/ https://www.linkedin.com/in/cecil-phillip/ https://github.com/cecilphillip   Resources https://channel9.msdn.com/Series/More-Python-for-Beginners https://www.twitch.tv/clarkio https://www.twitch.tv/microsoftdeveloper https://channel9.msdn.com/Shows/On-NET https://channel9.msdn.com/Series/Intro-to-Python-Development https://us.pycon.org/2020/online/#sponsor-workshops   "Tempting Time" by Animals As Leaders used with permissions - All Rights Reserved   × Subscribe now! Never miss a post, subscribe to The 6 Figure Developer Podcast! Are you interested in being a guest on The 6 Figure Developer Podcast? Click here to check availability!  

The Real Python Podcast
Leveling Up Your Python Literacy and Finding Python Projects to Study

The Real Python Podcast

Play Episode Listen Later May 15, 2020 76:27


In your quest to become a better developer, how do you find Python code that is at your reading level? What are good code bases or projects to study? What are the things holding you back from leveling up your Python literacy? This week we have Cecil Phillip on the show to discuss all of these common questions. Cecil is a Senior Cloud Advocate at Microsoft.

The Community Builder Show
How to Find Your People with Microsoft Developer Advocate Cecil Phillip

The Community Builder Show

Play Episode Listen Later Oct 19, 2019 42:16


Host Travis King of the Community Builder Podcast talks with Cecil Phillip, Senior Cloud Advocate at Microsoft. They discuss the misconceptions we have about social media followers, ways to get over your fears of connecting, the importance of meeting people offline in real life, how to find your people, overcoming loneliness and more. Episode Highlights: ●     How did Cecil start joining or becoming a part of communities?   ●     What tactics can people use to join communities?  ●     What should you do if you are scared to join communities?  ●     People still feel nervous to talk in front of others, even when they are experienced in their field.  ●     How can you overcome loneliness?   ●     What is the downside of chasing social media followers?  ●     The current drug of the world is attention.  ●     Cecil discusses social media and online etiquette.  ●     What advice does Cecil have for joining a community or starting a community?  3 Key Points: 1.  Be comfortable with being uncomfortable.  2.  Find your offline/online balance by meeting up with people in real life.  3.  How many of your social media friends can you actually call and talk to?    Tweetable Quotes: ●   “Once you start to be around similar people, obviously conversations are going to start. People are going to start talking to you. You are going to start talking to people, particularly if you are the speaker.” – Cecil Phillip ●   (Sharing knowledge) “What is it worth if nobody else knows I have this gold?” – Cecil Phillip ●   “Don't stay in a place where people don't make you feel valued.” – Cecil Phillip   Resources Mentioned: ● Travis King: https://www.linkedin.com/in/travisking1 (Linkedin) ● http://communitybuildershow.com (communitybuildershow.com) ● Cecil Phillip: https://www.linkedin.com/in/cecil-phillip (Linkedin) https://twitter.com/cecilphillip?lang=en (Twitter) ● https://cecilphillip.com (cecilphillip.com) See acast.com/privacy for privacy and opt-out information.

The .NET Core Podcast
Developer Relations and Education with Jasmine Greenaway and Cecil Phillip

The .NET Core Podcast

Play Episode Listen Later Jul 12, 2019 72:39


Remember: you can also always follow the show's host on twitter @dotnetcoreshow This episode of the .NET Core Podcast is supported in part by Productivity in Tech. If you are a developer that wants to share your knowledge with the community, let PIT help you. PIT or Productivity in Tech focuses on developer-creators. Productivity in Tech was started in 2016 by podcaster Jay Miller. Jay has helped many podcasts and content creators with their shows including this one! Visit productivityintech.com/dotnetcore for more information and to let them know that you heard about them through us! In this episode of The .NET Core Podcast, we talk to Jasmine Greenaway and Cecil Phillip about education, Developer Relations, and what Microsoft are doing to help us keep out skills sharp The full show notes, including links to some of the things we discussed and a full transcription of this episode can be found at: https://dotnetcore.show/episode-29-developer-relations-and-education-with-jasmine-greenaway-and-cecil-phillip/ Remember to rate and review the show on Apple Podcasts, Podchaser, or wherever you find your podcasts, this will help the show's audience grow. Or you can just share the show with a friend. The .NET Core Podcast is a proud member of Jay and Jay Media. If you like this episode, please consider supporting our Podcasting Network. One $3 donation provides a week of hosting for all of our shows. You can support this show, and the others like it, at https://ko-fi.com/jayandjaymedia   You can support the show by making a monthly donation one the show's Patreon page at: https://www.patreon.com/TheDotNetCorePodcast

Azure DevOps Podcast
DevOps News Update for July 2019 - Episode 43

Azure DevOps Podcast

Play Episode Listen Later Jul 1, 2019 28:20


Today your host, Jeffrey Palermo, will be going solo to bring you a DevOps news update for the first week of July in 2019! He covers some of the latest advances in GitHub, big changes for Azure Pipelines, and .NET Framework news that will change the landscape. In the second half of the episode he also shares some news on what’s coming this fall for .NET Core 3.0: an update to .NET DevOps for Azure! He gives a sneak preview into the additional chapters that will be added and topics that will be covered to align with the release of .NET Core 3.0.   Be sure to tune into to get the update you need for DevOps this month!   Topics of Discussion: [:52] Be sure to visit AzureDevOps.Show for tons of past episodes! [2:40] If there are any particular topics you’d like to hear covered or guests you’d like to see featured, you can reach Jeffrey on Twitter @JeffreyPalermo to tweet him your suggestions! [2:55] Jeffrey covers some of the latest advances in GitHub. [4:54] Jeffery explains what Azure App Configuration is and its capabilities. [8:14] The big changes for Azure Pipelines. [12:04] Server-side Blazor and .NET Core 3.0: NET Framework news that will change the landscape.  [13:27] A word from Azure DevOps sponsor: Clear Measure. [13:51] What’s coming this fall for .NET Core 3.0: an update to .NET DevOps for Azure, by Jeffrey Palermo!  [23:15] Do you think video training to accompany .NET DevOps for Azure would be helpful? Reach out to Jeffrey to let him know your thoughts! [24:00] Let Jeffrey know if you think he should offer a public course! [25:24] Jeffrey speaks about an interesting new product feature with Octopus Deploy. [26:31] How and where to see what is up and coming with Azure DevOps itself. [27:24] If there is some additional news Jeffrey has missed and you’d like to hear covered on a future episode, tweet him on twitter!   Mentioned in this Episode: Azure DevOps Clear Measure (Sponsor) — Reach out to Jeffrey @JeffreyPalermo on Twitter if you have a user group or conference and would like some free copies of .NET DevOps for Azure! .NET DevOps for Azure, by Jeffrey Palermo bit.ly/dotnetdevopsproject — Visit for an example of .Net DevOps for Azure The Azure DevOps Podcast Episode 01: “Buck Hodges on the introduction to Azure DevOps Services” Jeffrey’s Twitter: @JeffreyPalermo CODE Magazine GitHub Azure ReposAzure App Configuration LaunchDarkly The Azure DevOps Podcast Episode 17: “Gopinath Chigakkagari on Key Optimizations for Azure Pipelines” Microsoft Build Conference “What’s New with Azure Pipelines,” Blog Post by Gopinath Chigakkagari YAML“Server-Side Blazor in .NET Core 3.0,” Video on Channel 9 by Cecil Phillip, Shayne Boyer, and Daniel Roth  Angular React Vue.jsWebAssembly Octopus Deploy Octopus.com/Workers docs.microsoft.com/en-us/azure/devops/release-notes   Want to Learn More? Visit AzureDevOps.Show for show notes and additional episodes.

video reach workers server github devops azure blog post net core azure devops blazor daniel roth azure pipelines octopus deploy cecil phillip gopinath chigakkagari
AskTHAT by THAT Conference
#AskTHAT Live with Cecil Phillip - Getting Inspired in Tech and Teaching Others

AskTHAT by THAT Conference

Play Episode Listen Later Mar 29, 2018 55:14


Cecil Phillip is a software developer with almost a decade of experience with creating enterprise grade software solutions. Over his career, he has specialized in creating solutions using web technologies, .NET and Microsoft Azure. Today, he's employed by Microsoft as a Cloud Developer Advocate where he helps guide developers in moving their applications to the cloud. He also a passion for software architecture, testing and API design. Cecil currently resides in South Florida, but he stays very connected to his Caribbean roots. Links: Website: http://cecilphillip.com  Github - @cecilphillip Twitter - @cecilphillip  Podcast - http://awayfromthekeyboard.com 

Hanselminutes - Fresh Talk and Tech for Developers
Demystifying Serverless with Cecil Phillip

Hanselminutes - Fresh Talk and Tech for Developers

Play Episode Listen Later Mar 15, 2018 32:44


Scott talks to Cecil Phillip about how cloud architecture is changing everything. But what's IaaS, PaaS, then FaaS, and now serverless? How will being billed for usage affect software architecture? http://www.clearlytech.com/2014/01/04/12-factor-apps-plain-english/ http://cecilphillip.com http://awayfromthekeyboard.com/