Logo
    Search

    Podcast Summary

    • React Context: Share data across components without propsReact Context is a method to make data accessible to components without having to pass it down through props, useful for managing application state like navigation, checkout experience, and user information.

      React Context is a way to pass data down the component tree in React without having to use props. It's a method to make data accessible to components that may not be directly children of the component that holds the state. Wes and Scott discussed their experiences using React Context in their applications, and they both agreed that it's a useful tool for managing application state. They use it to manage various aspects of their application, such as navigation, checkout experience, and user information. React Context itself doesn't hold any data, but it provides a way to access the state that's stored in regular React state. The use of context eliminates the need to pass data down through every level of the component tree using props. Additionally, they shared a tip where you can export a function that returns the useContext hook for a specific context, allowing you to import and use that function directly instead of importing useContext itself.

    • Using React's Context API for efficient component communicationReact's Context API simplifies communication between components by sharing data without passing props, but be mindful of potential performance issues and split state into multiple providers where necessary.

      Using React's Context API can simplify component communication by allowing you to easily share data across components without having to pass props down manually. However, it's important to be mindful of potential performance issues that can arise from overusing Context. Keeping unrelated state in a single context provider can lead to unnecessary re-renders. To avoid this, it's recommended to split up your state into multiple context providers and only use them where necessary. Additionally, some optimizations like using useMemo can help improve performance. While React's Context API is a powerful tool, it does require some consideration when it comes to optimization. Overall, it's a great way to make component communication more efficient and streamlined.

    • Understanding the challenges of Redux and ApolloRedux offers powerful dev tools but has a steep learning curve, while Apollo has a simpler setup but may not provide the same level of debugging capabilities.

      While working with different state management libraries like Apollo and Redux, it's essential to be aware of potential issues, such as unintended side effects from loading order or complexities in learning their unique terminologies and structures. Redux, a well-established state management library, offers robust dev tools, including time travel, which allows developers to inspect and debug state changes effectively. Its extensive user base and continuous evolution make it a reliable choice for managing application state. However, Redux comes with its learning curve, requiring a good understanding of concepts like reducers, actions, and dispatching. When using Redux, developers can benefit from its powerful dev tools, which enable them to inspect and debug state changes, even going back in time to identify the root cause of complex issues. However, the learning curve and the need to manage multiple files to update simple things can be frustrating. In summary, while both Apollo and Redux have their merits, it's crucial to be aware of their unique challenges and choose the one that best fits your project's requirements and your personal learning style.

    • Redux for larger projects: benefits and challengesRedux offers predictability, ease of debugging, and ability to manage complex state for larger React projects, but its learning curve and additional complexities may be overwhelming for beginners.

      While Redux offers a clear and effective way to manage application state for larger projects, its learning curve and additional complexities can be overwhelming for beginners. The concept of immutability, actions, reducers, and the need for additional packages for data fetching and other functionalities can be confusing and may seem unnecessary for simpler applications. However, for those comfortable with Redux and its ecosystem, it remains a powerful and popular choice for state management in React projects. Despite some criticism and a perceived decline in popularity in recent years, Redux's benefits, such as predictability, ease of debugging, and the ability to manage complex state, make it a valuable tool for many developers. Ultimately, the decision to use Redux depends on the specific needs and comfort level of the development team.

    • Managing State Before Redux: Meteor and X StateMeteor offered a way to handle state before Redux, but it's no longer in use. X State enforces solid design patterns and creates reliable state through state machines, but requires a deeper understanding. Sanity.io is a structured content CMS with a headless solution for managing content efficiently.

      Redux and Context were game-changers in the React world for managing state, but before their introduction, there were other solutions like Meteor. Meteor offered a way to handle state before Redux became popular, but it's no longer in use today. Another state management library, X State, enforces solid design patterns and creates reliable state through its use of state machines. However, it requires a deeper understanding of state machines, making the code more complex and potentially intimidating for new users. For those dealing with complex state, X State can provide added structure and sanity. Additionally, there's Sanity.io, a structured content CMS that offers a headless solution for managing content. It allows users to create data types and relate them to each other, providing a flexible and efficient way to manage content for web projects.

    • Experience with Sanity CMS and Zoos FansThe speaker shared his positive experience using Sanity in a Gatsby project, creating a custom price input, and the benefits of Grok syntax language. He also introduced Zoos Fans as a lightweight, simple, and powerful state management library for React.

      Sanity is a headless CMS that offers a flexible schema, easy-to-use studio, and a GraphQL API. The speaker shared his experience using Sanity in a Gatsby project and how he created a custom price input since the platform didn't have it out of the box. He also mentioned the benefits of Sanity's syntax language, Grok, and the availability of a free usage tier. Additionally, the speaker introduced Zoos Fans, a lightweight state management library for React, which he considered a serious contender for future projects due to its simplicity, small size, and powerful yet unopinionated nature. Zoos Fans was described as a more use-state or use-reducer-like approach to managing global state and has a growing community and minimal impact on application size.

    • Discussing state management in React: Spring and ApolloSpring offers a hooks-based state management solution with no providers, while Apollo Client provides data fetching and caching features for optimized performance.

      During a discussion on various options for state management in React, two libraries were highlighted for their unique approaches: Spring and Apollo. Spring, developed by the React Spring team, stands out for its lack of providers, making the codebase less cluttered. It's also hooks-based and can be used with Redux DevTools. Apollo Client, on the other hand, is a popular choice for fetching data via queries and sending mutations. It offers a cache system, fine-grained cache control, and a lazy query feature, which can be beneficial for optimizing performance. Overall, both libraries showcase different aspects of how hooks can be effectively used in React for managing state.

    • Comparing Apollo, RxJS, and React Query for state managementApollo offers GraphQL integration and robust developer tools, RxJS can manage complex state changes and events, while React Query provides hooks for React data management and caching.

      Each state management library discussed, Apollo, RxJS, and React Query, has its unique strengths and weaknesses. Apollo, with its integration with GraphQL APIs and developer tools, is a solid choice for managing application state and fetching data. However, its complexity for simple state changes and inconsistent dev tools were noted as drawbacks. RxJS, while popular for composing asynchronous and event-based programs, can also be used for state management but requires further exploration to fully understand its application. Lastly, React Query, a growing library with a large community, offers hooks for fetching, caching, and updating asynchronous data in React, making it a versatile option for managing data and state in React applications. Ultimately, the choice between these libraries depends on the specific needs and preferences of the developer or development team.

    • Discussing React Query and Recoil for state managementReact Query and Recoil are efficient state management solutions with distinct features. React Query is suitable for complex queries and data fetching, while Recoil is designed for sharing state between components in complex applications.

      During the discussion, the speakers highlighted the use of React Query and Recoil as efficient state management solutions for different use cases. React Query, developed by Tanner Linsley, is a comprehensive library that offers extensive documentation, control over the cache, and is known for its smart caching system. It's particularly suitable for handling complex queries and data fetching in applications. Recoil, on the other hand, is a new state management library from Facebook, created by a separate team to address the challenge of sharing state between components that aren't in the same tree. It's designed for complex applications where components need to share state without causing unnecessary re-renders. The speakers shared their experiences with both libraries, acknowledging their strengths and limitations. While they found React Query to be more suitable for their needs, they acknowledged that Recoil could be an excellent choice for specific, complex use cases. Overall, the conversation emphasized the importance of selecting the right state management solution based on the unique requirements of each project.

    • Understanding the Power and Complexity of MobXMobX is a widely adopted state management library with observable capabilities, but its use of decorators and steep learning curve can be perceived as complicated. Despite this, it's worth considering for large applications due to its popularity and positive feedback from the community. Tools like Sentry can help manage bugs.

      MobX is a powerful state management library, particularly popular in the React community, known for its observable capabilities and large user base. However, it can be perceived as complicated due to the use of decorators and a steep learning curve. Despite its complexity, MobX is widely adopted in large applications and is worth considering for those who find its syntax appealing. A good way to evaluate new tools is by looking at their community size and positive feedback. Additionally, tools like Sentry can help manage the bugs that come with working with state management.

    • Exploring Different State Management Solutions for React ApplicationsConsider the trade-offs when choosing a state management solution for React apps, such as ease of use, flexibility, and potential lock-in, to find the best fit for your project.

      During our discussion, we explored various state management solutions for React applications, including Sentry's new tools, Vegetarian Friendly State, and Meteor's built-in reactive dictionary and variable. Sentry's new tools, though still in beta, offer a more modern approach to state management with a focus on reducing boilerplate and config. They're worth checking out if you have a Sentry account, and new users can get a head start with a free coupon code. Vegetarian Friendly State is another option that aims to simplify state management by keeping updaters and data in the same place, making it easier to manage. It's a newer library that came out after React Hooks and seems to be a more modern take on Redux. Meteor's built-in reactive dictionary and variable are simple and reactive, making it easy to use with just a few lines of code. However, the downside is that it comes with a lock-in to the Meteor platform. Personally, I tend to lean towards simpler and easier-to-understand solutions, making Easy Peasy an appealing option for me. However, the choice ultimately depends on individual preferences and project requirements. Overall, it's important to consider the trade-offs when choosing a state management solution, such as ease of use, flexibility, and potential lock-in, to find the best fit for your project.

    • Choosing the right state management libraryEvaluate options carefully and choose state management library and tools that fit project requirements and workflow.

      When it comes to managing application state in React projects, there are various options available, each with its unique features and benefits. The speaker emphasizes the importance of finding the right state management library that fits your specific needs and preferences. He suggests considering storing application state separately from application data and keeping it simple by writing it in a few lines if possible. He also encourages exploring different options beyond popular choices like Redux and considering less-known libraries. The speaker shares his personal experience with Erwin Vice Script tools, which he finds to be a cost-effective alternative to expensive pliers with adjustable gripping radius and superior grip. Overall, the key takeaway is to carefully evaluate your options and choose the state management library and tools that best suit your project requirements and workflow.

    • Solving the frustration of adjusting vice grips with Erwin GrooveLock Clamshell PliersErwin GrooveLock Clamshell Pliers feature a locking mechanism that keeps jaw width consistent, increasing efficiency for various tasks.

      The Erwin GrooveLock Clamshell Pliers offer a solution to the frustration of constantly readjusting the width of vice grips. These pliers have a locking mechanism that keeps the jaw width consistent, making them more efficient for various tasks. Moving on to entertainment, a recommended documentary is "Becoming Bond," a wild and captivating story about George Lazenby, who impulsively lied his way into becoming the third James Bond, only to quit after one film. This documentary provides an intriguing insight into the power of confidence and the unpredictability of human lives. Lastly, for those interested in learning JavaScript or modern CSS design systems, Syntax.fm hosts a variety of courses, including free and paid options, available at westboss.com/forward/courses and leveluptutorials.com/forward/pro. Don't forget to use the coupon code 'syntax' for a discount. Stay tuned for more episodes at Syntax.fm, and remember to subscribe, leave a review, or visit the archive for past shows.

    Recent Episodes from Syntax - Tasty Web Development Treats

    790: State of JS 2023 Reactions

    790: State of JS 2023 Reactions

    Scott and Wes dive into the 2023 State of JavaScript survey, breaking down the latest trends and pain points in front-end frameworks, build tools, and JavaScript runtimes. Tune in for their hot takes and insights on what’s shaping the JavaScript landscape this year!

    Show Notes

    Sick Picks

    Shameless Plugs

    Hit us up on Socials!

    Syntax: X Instagram Tiktok LinkedIn Threads

    Wes: X Instagram Tiktok LinkedIn Threads

    Scott: X Instagram Tiktok LinkedIn Threads

    Randy: X Instagram YouTube Threads

    789: Do More With AI - LLMs With Big Token Counts

    789: Do More With AI - LLMs With Big Token Counts

    Join Scott and CJ as they dive into the fascinating world of AI, exploring topics from LLM token sizes and context windows to understanding input length. They discuss practical use cases and share insights on how web developers can leverage larger token counts to maximize the potential of AI and LLMs.

    Show Notes

    Hit us up on Socials!

    Syntax: X Instagram Tiktok LinkedIn Threads

    Wes: X Instagram Tiktok LinkedIn Threads

    Scott: X Instagram Tiktok LinkedIn Threads

    CJ: X Instagram YouTube TwitchTV

    Randy: X Instagram YouTube Threads

    788: Supabase: Open Source Firebase for Fullstack JS Apps

    788: Supabase: Open Source Firebase for Fullstack JS Apps

    Scott and CJ chat with Paul Copplestone, CEO and co-founder of Supabase, about the journey of building an open source alternative to Firebase. Learn about the tech stack, the story behind their excellent documentation, and how Supabase balances business goals with open-source values.

    Show Notes

    • 00:00 Welcome to Syntax!
    • 00:30 Who is Paul Copplestone?
    • 01:17 Why ‘Supa’ and not ‘Super’?
    • 02:26 How did Supabase start?
    • 08:42 Simplicity in design.
    • 10:32 How do you take Supabase one step beyond the competition?
    • 12:35 How do you decide which libraries are officially supported vs community maintained?
      • 15:17 You don’t need a client library!
    • 16:48 Edge functions for server-side functionality.
    • 18:51 The genesis of pgvector.
    • 20:59 The product strategy.
    • 22:25 What’s the story behind Supabase’s awesome docs?
    • 25:26 The tech behind Supabase.
    • 35:46 How do you balance business goals with open source?
    • 42:01 What’s next for Supabase?
    • 44:15 Supabase’s GA + new features.
    • 48:24 Who runs the X account?
    • 50:39 Sick Picks + Shameless Plugs.

    Sick Picks

    Shameless Plugs

    Hit us up on Socials!

    Syntax: X Instagram Tiktok LinkedIn Threads

    Wes: X Instagram Tiktok LinkedIn Threads

    Scott: X Instagram Tiktok LinkedIn Threads

    CJ: X Instagram YouTube TwitchTV

    Randy: X Instagram YouTube Threads

    787: You Should Try Vue.js

    787: You Should Try Vue.js

    Scott and CJ dive deep into the world of Vue.js, exploring what makes this frontend framework unique and why it stands out from React and Svelte. CJ gives a comprehensive tour, covering everything from getting started to advanced features like state management and Vue’s built-in styles.

    Show Notes

    Vue.js: The Documentary.

    Sick Picks

    Shameless Plugs

    Hit us up on Socials!

    Syntax: X Instagram Tiktok LinkedIn Threads

    Wes: X Instagram Tiktok LinkedIn Threads

    Scott: X Instagram Tiktok LinkedIn Threads

    Randy: X Instagram YouTube Threads

    786: What Open Source license should you use?

    786: What Open Source license should you use?

    Scott and CJ dive into the world of open source, breaking down its meaning, benefits, and the various types of licenses you’ll encounter. From permissive licenses like MIT and Apache 2.0 to copy-left licenses such as GNU GPLv3, they’ll help you choose and apply the right license for your project.

    Show Notes

    Hit us up on Socials!

    Syntax: X Instagram Tiktok LinkedIn Threads

    Wes: X Instagram Tiktok LinkedIn Threads

    Scott: X Instagram Tiktok LinkedIn Threads

    Randy: X Instagram YouTube Threads

    785: What’s Next for NextJS with Tim Neutkens

    785: What’s Next for NextJS with Tim Neutkens

    Scott and Wes dive into the world of Next.js with special guest Tim Neutkens from Vercel. They explore the latest updates, including the React Compiler and React Server Components, discussing their impact on developer workflows and the future of Next.js development.

    Show Notes

    • 00:00 Welcome to Syntax!
    • 00:30 What does the React Compiler do?
    • 05:04 Will React Compiler help with managing Context?
    • 06:39 What happens if you’re not using a React Compiler?
    • 09:30 Will this work on any NextJS version?
    • 12:18 What are React Server Components?
    • 16:28 Shipping all the data inside an encapsulated component.
    • 20:17 Clearing up the frustrations around retrofitting server components.
    • 23:13 Handing migration.
    • 28:30 Is this just a fetch request with props?
    • 36:41 How closely are the NextJS and React teams working?
    • 41:53 Will we ever get Async Client Components?
    • 43:52 Async Local Storage API.
    • 45:31 Turbopack.
    • 57:51 Sick Picks & Shameless Plugs.

    Sick Picks

    Shameless Plugs

    Hit us up on Socials!

    Syntax: X Instagram Tiktok LinkedIn Threads

    Wes: X Instagram Tiktok LinkedIn Threads

    Scott: X Instagram Tiktok LinkedIn Threads

    Randy: X Instagram YouTube Threads

    784: Logging × Blogging × Testing × Freelancing

    784: Logging × Blogging × Testing × Freelancing

    In this Potluck episode, Scott and Wes tackle listener questions on modern blogging, website environmental impact, and using LangChain with LLMs. They also cover CSS hyphens, unit vs. integration testing, and balancing web development with new parenthood.

    Show Notes

    Sick Picks

    Shameless Plugs

    Hit us up on Socials!

    Syntax: X Instagram Tiktok LinkedIn Threads

    Wes: X Instagram Tiktok LinkedIn Threads

    Scott: X Instagram Tiktok LinkedIn Threads

    Randy: X Instagram YouTube Threads

    783: How We Built a Netflix Style “Save for Offline” Feature Into Syntax

    783: How We Built a Netflix Style “Save for Offline” Feature Into Syntax

    Scott and Wes dive into the world of browser caching for audio files, exploring the File System API and the Cache API. They discuss size restrictions across different browsers, how tools like Riverside.fm leverage IndexedDB, and walk through code examples for creating, retrieving, and managing cached audio data.

    Show Notes

    Hit us up on Socials!

    Syntax: X Instagram Tiktok LinkedIn Threads

    Wes: X Instagram Tiktok LinkedIn Threads

    Scott:X Instagram Tiktok LinkedIn Threads

    Randy: X Instagram YouTube Threads

    782: The Developer’s Guide To Fonts with Stephen Nixon

    782: The Developer’s Guide To Fonts with Stephen Nixon

    Scott and CJ are joined by Stephen Nixon of ArrowType to delve into the world of fonts and type for developers. They explore the intricacies of font creation, the utility of variable fonts, and offer tips for making visually appealing typography on the web.

    Show Notes

    Sick Picks

    Shameless Plugs

    Hit us up on Socials!

    Syntax: X Instagram Tiktok LinkedIn Threads

    Wes: X Instagram Tiktok LinkedIn Threads

    Scott:X Instagram Tiktok LinkedIn Threads

    Randy: X Instagram YouTube Threads

    781: Potluck - The Value of TypeScript × Vue vs Svelte × Leetcode

    781: Potluck - The Value of TypeScript × Vue vs Svelte × Leetcode

    In this potluck episode of Syntax, Scott and CJ serve up a variety of community questions, from the nuances of beginner vs. advanced TypeScript to the pros and cons of SvelteKit. They also discuss falling out of love with React, shipping private packages via NPM, and the eternal struggle of always starting but never finishing projects.

    Show Notes

    Sick Picks

    Shameless Plugs

    Hit us up on Socials!

    Syntax: X Instagram Tiktok LinkedIn Threads

    Wes: X Instagram Tiktok LinkedIn Threads

    Scott:X Instagram Tiktok LinkedIn Threads

    Randy: X Instagram YouTube Threads

    Related Episodes

    All About Redux && Cookies vs JWT

    All About Redux && Cookies vs JWT

    Dev Lifts — Sponsor

    Dev Lifts will create a personal training plan tailored to your 2018 health and fitness goals. Use the code SYNTAX for $50 off.

    Join with a friend and we'll make you a Buddy Plan that you can do together (nutrition will still be tailored on a per-individual basis, but workouts will be something you can both do together)! Plus, use the coupon code below and you'll both get $100 off.

    Enter each other's email address as the coupon code and your discount will be applied to your invoices (invoices are sent manually currently, so I'll apply the discount for you both once you've both signed up). Valid thru January 31, 2018.

    The Show Notes!

    01:00

    06:00

    • Modifying Your State
    • Immutability

    07:15

    • Actions + Actions Creators
    • Dispatching

    09:00

    • Reducers

    14:00

    18:30

    • What is the difference between Cookies and JWT?

    Tweet us your tasty treats!

    GraphQL? Here is what you need to know!

    GraphQL? Here is what you need to know!

    Snipcart — Sponsor

    Snipcart allows you to create online shopping carts without any backend work. It's entirely client-side which means it's the perfect fit for anyone building a SPA in React, Angular or any other framework. Check out the full list of features over at Snipcart.com/syntax and sign up for three months free!

    Freshbooks — Sponsor

    If you are a small business or freelancer check out Freshbooks.com Cloud Accountingand get 30 days free. Make sure to enter SYNTAX into the "How did you hear about us" section.

    { show(id: 027) { notes }}

    02:40

    • What is GraphQL anyways?
    • GraphQL Relational Data

    04:45

    • How is it different than REST?

    08:30

    • GraphQL's self documenting Nature

    09:20

    • You don't need to replace your existing REST api
    • It can sit infront of multiple APIs

    10:00

    11:50

    13:30

    • Why we like Apollo
    • Setup is amazingly fast

    15:00

    • Pagination
    • Refreshing of data

    18:00

    • The GraphQL Core Concepts
    • Queries
    • Mutations
    • Filtering and Sorting
    • It's not really a query language

    21:00

    • How do you say Schema?

    22:00

    • More on Resolvers

    22:50

    • Mutations
    • Updating the cache

    27:00

    • Using with existing APIs
    • Do you have two schemas now? One for MongoDB and one for GraphQL?

    35:00

    45:00

    53:00

    • Apollo Link
    • Apollo VS Redux

    56:00

    • Graphiql

    SIIIIICK PICKS

    Shameless Plugs

    Tweet us your tasty treats!

    Javascript Frontends

    Javascript Frontends

    Javascript Frontends

    , Jochen
    Da wir aus unterschiedlichen Gründen angefangen haben, uns auch ein bisschen mit Javascript-Frontends auseinanderzusetzen, sprechen wir heute mal ganz allgemein über dieses Thema. Und wie man dann von da aus mit - üblicherweise in Python implementierten - Backends spricht.



    Shownotes | Kommentare | Permalink

    Shownotes

    Unsere E-Mail für Fragen, Anregungen & Kommentare: hallo@python-podcast.de

    Lost & Found

    Meta-Podcast Audio Hard/Software

    Videokonferenzsoftware

    News aus der Szene

    Javascript Frontends

    Öffentliches Tag auf konektom
    Shownotes | Kommentare | Permalink

    Supper Club × Simen Svale Skogsrud and Espen Hovlandsdal from Sanity

    Supper Club × Simen Svale Skogsrud and Espen Hovlandsdal from Sanity

    In this supper club episode of Syntax, Wes and Scott talk with Simen & Espen from Sanity about what Sanity is, who uses Sanity, what is a content lake, how Sanity works with React or TypeScript, what GROQ is, how portable text works, and of course, the supper club questions.

    Show Notes

    ××× SIIIIICK ××× PIIIICKS ×××

    Shameless Plugs

    Tweet us your tasty treats

    2019-035-Matt_szymanski-attack and defense of GraphQL-Part1

    2019-035-Matt_szymanski-attack and defense of GraphQL-Part1




    Derbycon Discussion (bring Matt in)

     

    Python course: 

    https://brakesec.com/brakesecpythonclass 



    PDF Slides: https://drive.google.com/file/d/1wmxrfgbaHu56kfccLoOd5M3Zz6bNP6Qi/view?usp=sharing 

     

    GraphQL High Level

    https://graphql.org/

    Designed to replace REST Arch

    Allow you to make a large request, uses a query language

    Released by FB in 2012

    JSON 

     

    Learn Enough to be dangerous

    https://blog.bitsrc.io/13-graphql-tools-and-libraries-you-should-know-in-2019-e4b9005f6fc2

     

    WSDL: https://www.w3.org/TR/2001/NOTE-wsdl-20010315

     

    Vulns in the Wild

     

    Abusing GraphQL 

     

    OWASP Deserialization Cheat Sheet - https://cheatsheetseries.owasp.org/cheatsheets/Deserialization_Cheat_Sheet.html



    Attack Techniques

    https://www.apollographql.com/docs/apollo-server/data/data/

    https://github.com/graphql/graphiql



    Protecting GraphQL

     

    https://github.com/maticzav/graphql-shield

     

    Magento 2 (runs GraphQL), hard to update…

     

    https://github.com/szski/shapeshifter - Matt’s tool on Shapeshifter

     

    GraphQL implementations inside (ecosystem packages?)

     

    Infosec Campout 2020 occurring (28-29 Aug 2020, Carnation, WA)

    Patreon supporters  (Josh P and David G)

    Teepub: https://www.teepublic.com/user/bdspodcast

     

    For Amanda next:

    https://www.cybercareersummit.com/

    & keynote @grrcon oct 24/25

     

    Check out our Store on Teepub! https://brakesec.com/store

    Join us on our #Slack Channel! Send a request to @brakesec on Twitter or email bds.podcast@gmail.com

    #Brakesec Store!:https://www.teepublic.com/user/bdspodcast

    #Spotifyhttps://brakesec.com/spotifyBDS

    #RSShttps://brakesec.com/BrakesecRSS

    #Youtube Channel:  http://www.youtube.com/c/BDSPodcast

    #iTunes Store Link: https://brakesec.com/BDSiTunes

    #Google Play Store: https://brakesec.com/BDS-GooglePlay

    Our main site:  https://brakesec.com/bdswebsite

    #iHeartRadio App:  https://brakesec.com/iHeartBrakesec

    #SoundCloudhttps://brakesec.com/SoundcloudBrakesec

    Comments, Questions, Feedback: bds.podcast@gmail.com

    Support Brakeing Down Security Podcast by using our #Paypalhttps://brakesec.com/PaypalBDS OR our #Patreon

    https://brakesec.com/BDSPatreon

    #Twitter@brakesec @boettcherpwned @bryanbrake @infosystir

    #Player.FM : https://brakesec.com/BDS-PlayerFM

    #Stitcher Network: https://brakesec.com/BrakeSecStitcher

    #TuneIn Radio App: https://brakesec.com/TuneInBrakesec