Logo
    Search

    Podcast Summary

    • Transitioning from CJS to ESM in Node.js ecosystemESM offers better performance and easier maintenance on the server, but transitioning can be complex. Use tools like Sentry to help identify and resolve any issues that may arise.

      Transitioning from CommonJS (CJS) to ECMAScript Modules (ESM) in Node.js ecosystem is a significant shift that's becoming necessary due to breaking changes. Scott recently made this transition in his entire platform and experienced a minor issue that was easily identified and fixed using Sentry, an error and exception tracking platform. Sentry helped him quickly identify and resolve the issue, making it easier to maintain and keep track of the resolved issues. ESM has been the default import style for Wes's media platform for a long time due to his use of Meteor, which used ESM import syntax despite compiling it to CJS behind the scenes. When Wes moved his site to a Vite server with React, he went from CJS to ESM directly. For his API, he wrote it using esbuild with ESM from the start, giving him control over his environment and the ability to choose when to make the transition. ESM on the server is the preferred choice for both Scott and Wes, as it offers better performance and easier maintenance. However, the transition can be complex, and it's essential to make the change at the right time, either when making significant changes or at a later point. If you're considering making the transition, it's important to be aware of the potential challenges and have the right tools, like Sentry, to help you identify and resolve any issues that may arise.

    • Implementing ECMAScript modules for code sharingImplementing ESM can simplify code sharing between front end and back end but requires addressing differences in file extensions, settings, and potential use of TypeScript.

      The speaker implemented ECMAScript modules (ESM) in their project to eliminate common JS and experience some benefits, despite the complexity involved. ESM is a specification that allows for sharing code between the front end and back end with minimal issues. It was created by Mozilla engineer Kevin Dangor in 2009, and Node.js, which was also released around the same time, initially supported it. Although there are advantages to using ESM, such as a standardized specification, the transition can be complicated due to differences in file extensions, settings, and potential use of TypeScript. The speaker also noted that TypeScript, while adding complexity due to the need to write types, also simplifies the process in other ways. Ultimately, the decision to use ESM comes down to balancing the benefits of a standardized specification with the effort required to implement it.

    • ESM offers better performance through static analysisESM's static analysis enables improved tree shaking and easier identification of unnecessary code, leading to better performance and simpler handling of asynchronous tasks with top-level await

      ES Module (ESM) system, which is a browser specification for importing and using JavaScript modules, offers several advantages over CommonJS, including better performance through static analysis. Statically analyzed code allows the entire dependency tree to be analyzed in a single pass, leading to improved tree shaking and easier identification of unnecessary code. ESM also enables top-level await, allowing developers to use 'await' inside modules without wrapping the code in an asynchronous function. This simplifies programming and makes it easier to handle asynchronous tasks, such as importing data or initializing libraries. Additionally, the ability to use import syntax directly in an HTML script tag, without any compilation, adds a level of convenience and magic to JavaScript development. Overall, ESM's advantages, including static analysis and top-level await, make it a powerful and modern module system worth considering for JavaScript projects.

    • Error handling and logging strategiesImplementing error handling and logging strategies can improve app reliability and debugging. Consider using a queue for retries and logging for tracking issues. Use ECMAScript Modules for modern development benefits, but be aware of potential challenges.

      Implementing error handling and logging strategies can significantly improve the reliability and debugging capabilities of your applications. The speaker mentioned considering using a queue for error handling to ensure retries and prevent potential issues, such as failed credit card charges without a database connection. He also mentioned the importance of logging, suggesting a potential show on the topic, including what to log, how to log, and where to log it. Additionally, the speaker discussed the benefits of using ECMAScript Modules (ESM) in development, such as the ability to import from URLs and the support for import assertions, which allows for the importation of different file types with a specified assertion. The speaker also mentioned the challenges they faced when implementing ESM too early and the benefits of waiting for the community to catch up. Overall, the conversation emphasized the importance of implementing robust error handling and logging strategies and the benefits of using modern development tools like ESM.

    • Vite's raw imports make it easier to import non-JavaScript filesVite's raw imports feature simplifies handling of non-JavaScript files in ESM projects, enabling text-based imports and interoperability with CommonJS files

      Vite's raw imports feature allows developers to import files as text instead of JavaScript, making it easier to parse certain files without the need for additional Node APIs or ESLint plugins. This can be particularly useful when working with non-JavaScript files or when requiring JSON files in an ESM project. To enable this functionality, simply add "type: module" to your package.json file. Additionally, Vite supports both ESM and CommonJS files using the .mjs and .cjs extensions, respectively. This interoperability simplifies the transition to ESM and allows developers to use a mix of both in their projects.

    • Converting CJS to ESM: Challenges and SolutionsTo convert a CJS codebase to ESM, developers can use a code mod to transform require and export statements, simplifying the process. However, differences between CJS and ESM syntax may require additional adjustments.

      The shift from CommonJS (CJS) to EcmaScript Module (ESM) systems in JavaScript development comes with its challenges. One of these challenges is the inability of CJS to import ESM packages synchronously. To overcome this, developers are converting their entire codebase to ESM. This transformation can be done using a code mod that converts every require and export statement to the closest equivalent in ESM. The benefit of this approach is that it eliminates the need to change import statements and keeps the codebase simple. However, there are differences between CJS and ESM syntax, which may require additional adjustments. During the conversion process, developers might encounter unexpected issues, such as finding long strings of semicolons in chunk files or source maps. These semicolons are part of the import map, which is a mechanism for resolving module references in ESM. The import map uses pointers and references to lines of code, and the number of semicolons does not affect the file size significantly due to compression techniques like gzip. ESM is becoming increasingly popular, with many popular libraries and frameworks, such as Sindre's stuff and the MDX ecosystem, adopting ESM only. This trend is forcing developers to make the switch to ESM, even if it means converting their entire codebase. The process can be simplified by using a code mod and understanding the differences between CJS and ESM syntax.

    • Understanding the difference between Common JS and ESM imports in Vite and TypeScriptBe explicit with file imports in Vite and TypeScript, even if it means adding unnecessary file extensions for smooth development experience.

      In Common JS, the resolver looks for specific file structures when importing modules, while ESM (ES Module) is more explicit and only looks for the import name. The speaker was initially confused about the difference, especially with Vite, and found that they had to be explicit with file extensions when importing in both Vite and TypeScript. This was a change from their previous experience with ES Build where they didn't need to use file extensions. The speaker also discussed using Node.js with Vite and the need to give it all inputs to compile all files, while Vite typically requires a single input. The speaker had to add a dotjs extension to their imports when using TypeScript, which they found frustrating since they were working with TypeScript files, not JavaScript files. To resolve this issue, there is a flag called "ES module specifier resolution equals node" that can be used with Node.js to make it behave like Common JS with ESM. The speaker also pondered the idea of sharing code between the front end and back end and how we often love standards until they become inconvenient. Overall, the speaker's main takeaway was the importance of being explicit in file imports, even if it means adding unnecessary file extensions.

    • Differences between CommonJS and ESM imports and exportsCommonJS uses both default and named exports, while ESM primarily uses named imports. Importing an object with multiple properties from a CommonJS module in ESM requires destructuring the entire object.

      When working with imports and exports in JavaScript, there are differences between CommonJS and EcmaScript Module (ESM) systems that can lead to confusion. CommonJS uses both default and named exports, while ESM primarily uses named imports. However, importing an object with multiple properties from a CommonJS module can be problematic when using ESM, as only the entire object can be imported, not individual properties. To work around this, the entire object must be imported and then destructured. Additionally, in ESM, there is no automatic access to the directory name or file name like in CommonJS, so these must be imported separately. While these differences can be frustrating, tools like TypeScript can help simplify the process with features like "allow synthetic default imports" and "Node.js interop." Overall, understanding these differences and how to navigate them is crucial for working effectively with JavaScript modules.

    • Transitioning from CommonJS to ES Modules with TypeScriptEnsure tsconfig.json includes 'moduleResolution': {'nodeNext': true} for ESM code generation. Understand syntax differences and potential refactoring needs. Utilize tools like Node.ts, SWC, ES Build, or simplified build scripts with Node Vite for a smoother transition.

      Transitioning from CommonJS to ES Module (ESM) syntax in JavaScript projects, especially when using TypeScript, requires careful consideration and potential refactoring. While ESM offers benefits like top-level await and importing modules directly, converting existing projects can be complex. To simplify the process, ensure your TypeScript configuration (tsconfig.json) includes the "moduleResolution": { "nodeNext": true } setting to generate ESM code. Also, understand that some features, like exporting objects with properties, may require different syntaxes, such as the "export =" syntax for CommonJS modules. TypeScript's ability to interoperate with both CommonJS and ESM makes it a valuable tool in these transitions. However, it may uncover bugs and require refactoring for simpler, more efficient solutions. When building and transpiling your projects, you have several options, including Node.js with TypeScript (Node.ts), SWC, and ES Build. Newer tools like Node Vite offer simplified build scripts and configurations, making the process more streamlined. In summary, transitioning from CommonJS to ESM with TypeScript involves careful planning, understanding of syntax differences, and potential refactoring. Utilizing the right tools and configurations can make the process more manageable and efficient.

    • Simplified testing and development experiences with Vite, vTest, and ViteNoteVite and related projects offer streamlined testing and development for modern JavaScript projects with features like test-driven development, ESM and TypeScript support, and simplified publishing with unique exports.

      Vite and its related projects, such as vTest and ViteNote, offer simplified testing and development experiences for modern JavaScript projects. The speaker shared their experience of using vTest for test-driven development, which allowed them to write tests easily without having to deal with complex setup or configuration issues. They also mentioned ViteNote, which offers out-of-the-box ESM and TypeScript support, pipeline plugins, and access to native Node modules. The speaker also discussed the benefits of using TypeScript with Vite, which can be used as a replacement for Node.js by using tsx files. They noted that importing common JS dependencies into ESM is straightforward, even for older modules that haven't been updated to ESM. Another interesting topic was publishing with ESM, which allows for specifying different exports with unique paths in the package.json file. This simplifies the process of exporting multiple modules from a single file and can make managing dependencies easier. Overall, the discussion highlighted the ease of use and flexibility that Vite and its related projects offer for modern JavaScript development.

    • Using ESM for Flexible Import and Export ConfigurationsESM allows for multiple exports with different targets, simplifying import and export configurations, and Vite makes it easier to ship code with good documentation and tools.

      With ECMAScript Modules (ESM) in JavaScript, you can have multiple exports from a single package that point to different things, allowing for more flexibility in coding and mapping imports. This means you can have node code and browser code exported separately without having to compile them into one main export. Additionally, you can import specific files using an import property within an object value of the same export. This feature makes it easier to have more complex import and export configurations. Vite, a platform that supports ESM, simplifies the process of shipping code and provides good documentation on how to do it. By shipping both a CommonJS and a MJS version, developers can ensure a good experience for users, regardless of their setup. SvelteKit, a framework built on Vite, even includes a package command that generates exports for you, making it easier to learn the syntax. Remember, when publishing a package with types, the types need to be the first thing in your exports to ensure TypeScript can find them properly.

    • Managing JavaScript modules: CommonJS vs ES ModuleUnderstand the implications and transition fully to ES Module for smoother development. Import ESM into CommonJS with 'import' statement or destructuring, and be aware of top-level await limitations in CommonJS.

      When working with different JavaScript modules systems like CommonJS and ES Module (ESM), the order and structure matter, especially for types. This was discussed in relation to importing ESM modules into CommonJS files and encountering the need to access default exports using 'default' or destructuring. The speaker also emphasized the challenges of trying to use both structures simultaneously and recommended fully transitioning to ESM for smoother development. Another point raised was the importance of understanding the implications of using different JavaScript features, such as top-level await, which may not be supported in CommonJS. The conversation also touched on the current high cost of eggs in various places, leading to the introduction of an egg dispenser as a "sick pick." However, the main emphasis was on the importance of correctly managing JavaScript modules and their structures to avoid potential issues.

    • Egg Dispenser: A Space-Saving Solution for the FridgeThe egg dispenser optimizes refrigerator space with its multiple levels and roll-out feature, making it easy to access and store eggs while also creating extra room for other items. Film enthusiasts can discover obscure films and learn about film history and theory from industry professionals through the Pure Cinema podcast.

      The egg dispenser is a game-changer for optimizing space in the refrigerator. The user shares their frustration with the standard egg storage compartment and the inconvenience of having to move items around every time they need an egg. The egg dispenser, with its multiple levels and roll-out feature, allows users to store and easily access eggs while also providing extra space for other items. The user also expresses their excitement about the Pure Cinema podcast, which they find to be an excellent resource for discovering obscure films and learning about film history and theory from industry professionals. The podcast caters to film enthusiasts and provides a unique perspective for those interested in exploring lesser-known films and directors.

    • Sharing Knowledge and Discovering New ThingsEmbrace lifelong learning, discover new trends and obscure gems in your areas of interest, and share your knowledge and experiences with others.

      Even if someone has extensive knowledge about a particular topic, like film or coding, they can still feel intimidated or uncertain when encountering new information or discussions related to it. The speaker in this conversation expresses her fear of not keeping up with the latest trends in Halloween movies and JavaScript technologies, despite her deep interest and expertise in these areas. She also shares her tradition of watching 1980s Halloween movies every year with her partner, highlighting the joy and excitement of discovering new, obscure films that fit the theme. Furthermore, the speaker promotes various courses and resources for learning JavaScript and TypeScript, emphasizing the importance of having type-safe applications and the benefits of using these technologies. She encourages listeners to check out her website, Westboss.com, and Level Up Tube for more information and discounts on courses. Overall, this conversation showcases the importance of lifelong learning, the value of sharing knowledge and experiences, and the excitement of discovering new things, even in areas where one already has a strong foundation of knowledge.

    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

    What is Bun? The New JS Runtime

    What is Bun? The New JS Runtime

    In this Hasty Treat, Scott and Wes talk about Bun, a new all-in-one JavaScript runtime. What makes Bun so fast? What’s on Bun’s roadmap? And why do we need another JavaScript runtime?

    Lightstep Incident Response - Sponsor

    Streamline on-call, collaboration, incident management, and automation with a free 30-day trial of Lightstep Incident Response, built on ServiceNow. Usage-based pricing on active services promotes collaboration across your entire team to build a culture of service ownership. Listeners of Syntax will also receive a free Lightstep Incident Response T-shirt after firing an alert or incident.

    Pay for the services you use, not the number of people on your team with Lightstep Incident Response, built on ServiceNow. Streamline on-call, collaboration, incident management, and automation with a free 30-day trial. Fire an alert or incident today and receive a free Lightstep Incident Response t-shirt.

    Freshbooks - Sponsor

    Get a 30 day free trial of Freshbooks at freshbooks.com/syntax

    Show Notes

    Tweet us your tasty treats

    Web Performance - wywiad z Adamem Barem

    Web Performance - wywiad z Adamem Barem
    Zapraszam na kolejny wywiad. Tym razem zaprosiłem Adama Bara. Znamy się z Adamem już od dłuższego czasu i wiem, że Adam mocno siedzi w tematach web performance & PWA.

    Chciałem porozmawiać na oba tematy, ale … trochę się rozgadaliśmy i przegadaliśmy tylko web performance. Mam nadzieję, że przyjdzie czas na dogrywkę i temat PWA.

    Adam przeprowadza audyty wydajności i pomaga firmom osiągnąć lepsze === szybsze systemy. Rozmawiamy na temat:
    - przeprowadzania audytów
    - metryk wydajności aplikacji
    - wpływu architektury na wydajność
    - kompromisach we wspólnych działaniach z teamami marketingowymi
    - przydatnych narzędziach w mierzeniu wydajności
    - “ulubionych” bibliotekach

    Zapraszam do wysłuchania rozmowy na Spotify, Apple Podcasts, Google Podcasts i https://poprostujs.pl

    Czy import maps oznacza koniec Webpack'a?

    Czy import maps oznacza koniec Webpack'a?
    Zaczątkiem do dyskusji na temat import maps był artykuł DHH. Nowy feature wprowadzony narazie w Chromie daje nadzieje, że pozbędziemy się nadmiaru narzędzi do budowania i znowu będziemy mogli wykorzystać siłę cache w przeglądarce. Trzeba pamiętać, że warunkiem wymaganym jest HTTP 2.0.

    W rozmowie poruszamy kilka tematów:
    - HTTP 2.0
    - import maps
    - cache przeglądarki
    - czy mamy do czynienia z essential czy accidental complexity?
    - czy jeszcze potrzebujemy Webpack'a?
    - co jeżeli wykorzystujemy TypeScript?

    Zapraszam do wysłuchania rozmowy.

    "Humans Need Humans" with Heather Wright of Advance Performance (Preston, UK). GBD30

    "Humans Need Humans" with Heather Wright of Advance Performance (Preston, UK). GBD30

    "Creative accounting might be frowned upon but creative thinking - innovation - is not. Creativity is a muscle in the brain and requires exercise".

    Your December podcasts are inspired by our "Human Intelligence"-themed work around the world. This episode features Heather Wright, an international facilitator 20 years into a mission to learn as much as she can about the psychology of influence over our own thinking as well as with those around us. She tells AICPA & CIMA's Samantha Louis, VP for International Advocacy, how we can use it to everyone’s advantage, to convert it to usable, teachable material that changes the lives of others. 

     

    FREE NEW 'HUMAN INTELLIGENCE' eBOOK.

    As the workplace changes, we’ll find ourselves partnering with robots and artificial intelligence which will make our human skills even more valuable. In this eBook, you’ll find practical guidance from more than a dozen experts on problem-solving, leadership, emotional intelligence and workplace dynamics to start you on your development journey. Fill out the form here to receive your eBook instantly.

     

    OUR GUEST:

    Heather is Director of Advance Performance, a UK-based company she set up 20 years ago. She is an inspirational speaker and facilitator delivering speeches and workshops to public services and large multinational companies in the UK, Europe,  Central America and Australia.  A keen sportswoman, she is on a mission to help people understand and use positive behavioural change to transform what we do and how we work - for the better.

     

    WE DISCUSS:

    • Starting simply with the routines we already have.
    • Ways to use those routines to achieve better outcomes.
    • Approaches to using technology more appropriately as a 'booster', to direct us rather than distract us.
    • How to exercise our 'creativity and innovation' muscles.
    • The positive power of 'what if'.
    • What teams can do to foster this as an asset inside their organisations.

     

    RESOURCES

     

    == MORE ABOUT OUR PODCAST == 

    YOUR COMMUNITY. Interviews with our international experts are recorded by different members of the AICPA & CIMA team from our offices around the world. While the sound quality may vary, the insights will always be consistently useful.

    DON'T MISS OUT. Get our shows every week, automatically and free. Share them easily with colleagues and friends by using the icons on the media player. 

    TAKE IT FURTHER. Find related CPD/CPE resources at the AICPA Store and the CGMA Store.

    STAY CONNECTED. Follow #GoBeyondDisruption, @AICPANews and @CIMA_News on social." 

    PERMISSIONS ©2018 Association of International Certified Professional Accountants (AICPA & CIMA). All rights reserved 

     

    ===CAN'T SEE THE LINKS? TRY THESE===

    * See the Go Beyond Disruption Homepage at https://www.aicpa-cima.com/disruption.html.

    * Find out more about Heather Wright at https://www.advance-performance.co.uk/people/heather-wright/

    * Skill up with our AICPA Store at  https://www.aicpastore.com/GoBeyondDisruption

    * See resources available via the CGMA Store at  https://www.cgmastore.com/products/disruption?utm_source=disruption-podcast&utm_medium=podcast&utm_campaign=cgmastore&utm_content=show-notes