Logo
    Search

    Podcast Summary

    • Exploring TypeScript FundamentalsTypeScript enhances code quality and developer experience by providing static typing, helping catch errors during development, and improving code maintainability.

      The discussion on Syntax, a web development podcast, centered around the topic of TypeScript and its role in modern web development. Scott and Wes, the hosts, began by introducing the episode's focus on TypeScript fundamentals, sponsored by Sanity, LogRocket, and Cloudinary. Scott shared his recent experiences with removing Jest and React Testing Library for front-end tests and adopting Cypress for end-to-end testing only. He expressed his feelings of config fatigue and the challenges faced with ES modules and testing React code without Babel. The conversation then shifted to discussing types in programming and the concept of types in JavaScript. The hosts explained that types define what a variable is, and JavaScript has built-in types like string, number, object, null, undefined, and symbol. They emphasized that everything in JavaScript is an object, including arrays, dates, and nodes. The hosts also mentioned the importance of TypeScript, which provides static typing, helping developers catch errors during development and enhancing code maintainability. They hinted at future episodes that would delve deeper into TypeScript's complex topics. In summary, the podcast episode touched on the challenges of modern web development, the importance of TypeScript, and its role in improving code quality and developer experience.

    • TypeScript is a statically typed extension of JavaScriptTypeScript provides better error handling and improved code understanding with static typing

      TypeScript is a statically typed superset of JavaScript. This means that while you write your code in the same way as JavaScript, you can define the types of variables, functions, and their parameters. This added metadata makes your code more robust by providing better error handling and improved code understanding within your editor. Unlike JavaScript, TypeScript has more distinct types, but JavaScript itself is compatible with TypeScript, making it an extension rather than a separate language. This can be especially helpful for larger projects and for developers transitioning from typed languages, as it provides more structure and reduces the need for manual documentation lookups.

    • Using TypeScript to Catch Errors EarlyTypeScript helps prevent common coding errors by identifying type errors as they are written, saving time and effort in testing and debugging, and providing real-time feedback for more efficient development and better user experiences.

      Using TypeScript in your programming projects can help prevent common coding errors that might otherwise go unnoticed until they impact users. The speaker shared an example of an issue where adding an item to a shopping cart resulted in unexpected behavior due to a concatenation error with string data. This type of error could have gone unnoticed if not for the use of TypeScript, which identifies type errors as they are written, preventing them from being compiled and potentially reaching users. The speaker also highlighted the benefits of using TypeScript for catching smaller errors, such as misspelled property names, which can be easily identified and corrected in real-time as you type in your code editor. This can save time and effort in testing and debugging. Additionally, TypeScript provides features like enums and string unions, which can help with string comparison and other specific use cases. These features can lead to more precise and accurate code, reducing the likelihood of errors. Overall, using TypeScript can help offload tasks from developers and users by catching errors early and providing real-time feedback, allowing for more efficient development and better user experiences. For example, LogRocket, a sponsor mentioned in the discussion, provides a service that allows you to see video replays of errors in real-time, making it easier to identify and resolve issues quickly.

    • TypeScript's advanced data typing capabilitiesTypeScript enhances JavaScript's data typing with union types, null/undefined handling, custom types, and NPM packages.

      TypeScript offers enhanced capabilities for defining and handling data types compared to JavaScript. This includes the use of union types, which allows for defining variables as multiple types, and the ability to enforce accounting for undefined or null values. TypeScript's optional feature to check for these situations can be seen as a pain point for some developers, but it's beneficial for creating robust and reliable software. Additionally, TypeScript's availability of custom types and types that come with NPM packages are reasons for its growing popularity. The tech may not be revolutionary, but it opens up new possibilities for developers to write more precise and error-free code. To experience TypeScript firsthand, visit logrocket.com/forward/syntax for a 14-day free trial.

    • Exploring TypeScript's Advanced FeaturesTypeScript simplifies complex data types with optional chaining, intersections, defined objects, and the 'any' type. Use defined types for better code quality and maintainability.

      TypeScript offers various features like optional chaining, intersections, objects with defined types, and the "any" type to help developers manage complex data types and improve code quality. Optional chaining simplifies accessing nested properties or methods without the need for explicit checks. Intersections allow combining multiple types into one, while objects can have their properties defined as specific types. The "any" type, on the other hand, can be used when the type is unknown or when dealing with third-party libraries without types, but it comes with the risk of losing TypeScript's benefits. When transitioning to TypeScript, it's recommended to avoid implicit "any" types and explicitly define types to minimize errors and make the codebase more maintainable. Using "any" should be considered a last resort when unable to determine the exact type.

    • Avoid using 'any' type in TypeScript, use JSDoc comments or dedicated tools insteadUsing 'any' type defeats the purpose of TypeScript, instead use JSDoc comments or dedicated tools for managing to-do lists or tasks, and take full advantage of TypeScript's features for better code organization and improved developer experience

      Using "any" type in TypeScript should be avoided unless absolutely necessary. While it may seem convenient for quick comments, it defeats the purpose of using TypeScript in the first place. Instead, use JSDoc comments or dedicated tools to manage to-do lists or tasks within the codebase. TypeScript shines when used with existing codebases or when writing new code from scratch. It offers numerous benefits, such as better type inference, improved code completions, and enhanced error reporting. Another advantage of TypeScript is its ability to recognize and understand various built-in types within the JavaScript language and DOM elements. By defining these types explicitly, you can access their properties and methods, making your code more efficient and easier to maintain. To take full advantage of TypeScript, make sure to use its features effectively, such as type inference, explicit typing, and JSDoc comments. This will lead to better code organization, improved developer experience, and ultimately, more robust and maintainable applications.

    • TypeScript's features for enhanced coding experienceTypeScript offers autocomplete and intellisense, Jupyter's Hyper H for function arguments, type inference, and enums to improve coding efficiency and reduce errors.

      TypeScript provides various features to enhance coding experience and ensure type safety. One such feature is the use of autocomplete and intellisense, which can be accessed by using the dot notation on a variable followed by the control spacebar. This will show all the available methods, properties, and types related to that variable. Another helpful feature is the use of Jupyter's Hyper H for function arguments, which can suggest the expected types when defining or passing arguments to functions. TypeScript also infers the return type of a function if it's not explicitly defined, and it can be set as void for functions that don't return any value. Enums, which are a set of named constants, are another useful feature that can help ensure that a variable can only hold specific values. Overall, these features help improve coding efficiency and reduce potential errors by providing real-time type suggestions and checks.

    • Sanity is a great backend choice for React and Vue projectsSanity offers collaboration features, customizable UI with React components, and an API usable with GraphQL. TypeScript's type inference can save time, but lack of defined types in packages can be frustrating.

      Sanity is an ideal choice for building backends for various projects, especially React and Vue applications, due to its impressive collaboration features and developer experience. Sanity UI allows customization with React components, and data comes out in an API that can be used with GraphQL. TypeScript, a statically-typed programming language, offers type inference, which automatically infers types based on variable definitions, reducing the need for explicit typing. This can save time and effort, but some developers prefer explicit typing for clarity and safety. However, type inference is a common feature among type languages. A frustrating aspect of TypeScript for new developers is when packages lack defined types, leading to errors in the editor. Solutions include defining the package as "any" or installing defined types from a registry like DefinitelyTyped.

    • Adding types to JavaScript and TypeScript projectsProper types in projects improve development efficiency, reduce frustration, and ensure a smoother experience. Easily install missing types with 'npm install @types/<package-name>', or use tools like 'make types' or Definitely Typed for large projects.

      Having proper types in JavaScript and TypeScript projects is crucial for efficient development and reducing frustration. The popularity of TypeScript is on the rise due to the availability of types in most medium to large-sized modules. When types are missing, developers often submit them to projects or create their own. Packages without types can cause issues with autocomplete and red squigglies, making it a deal-breaker in many cases. Fortunately, it's easier than ever to find and install types for packages. By using the command "npm install @types/<package-name>", developers can often find and install the missing types. Tools like "make types" can even generate types from JSON files, making the process even more convenient. For large projects with numerous packages, having a central repository of types, such as Definitely Typed, can be a game-changer. These repositories contain types for a wide range of packages, making development more streamlined and efficient. Additionally, tools like GraphQL code generator can generate types for APIs, making the development process even more unified and efficient. Overall, having proper types in projects is essential for reducing development time, improving code quality, and ensuring a smoother development experience.

    • TypeScript as an intermediary for GraphQLTypeScript improves code quality and developer experience in GraphQL projects by providing type hinting, reducing mental load, and integrating with popular code editors.

      TypeScript acts as an intermediary between your backend data and frontend code, providing automatically typed resolvers and generating types based on GraphQL schema and your tsconfig file. This results in improved code quality and developer experience through type hinting in your editor and build system, catching potential bugs during development. Although not a perfect solution, it significantly reduces the mental load for developers and integrates well with popular code editors like Visual Studio Code. Additionally, TypeScript's benefits include better tooling, improved code maintainability, and the ability to catch type-related issues during development. Overall, TypeScript's integration with GraphQL and its focus on type safety make it an essential tool for modern web development projects.

    • TypeScript benefits for developersTypeScript offers faster development, fewer errors, built-in refactoring tools, strict syntax, and integrates well with popular tools, resulting in improved code quality and productivity.

      TypeScript offers significant benefits for developers, particularly in the areas of code quality, refactoring, and ease of use. Although it may take some extra time up front to define functions and types, the payoff comes in the form of faster development and fewer errors. TypeScript's built-in refactoring tools, such as renaming symbols, make it easy to update codebase-wide changes with confidence. Additionally, TypeScript's strict syntax catches errors early on, preventing potential issues down the line. Another advantage is that TypeScript integrates well with popular development tools like Visual Studio Code, making it simple to import, export, and rename files without breaking dependencies. Lastly, services like Cloudinary, which many developers use for image hosting, offer enhanced functionality when used with TypeScript, such as on-the-fly image modifications and automatic image creation. Overall, TypeScript's focus on code quality and developer productivity makes it a valuable tool for modern web development.

    • Optimize images with Cloudinary for faster load timesUse Cloudinary to automatically deliver optimized images based on user's browser capabilities for faster load times and improved user experience. Utilize TypeScript for static typing and error checking during development.

      Using image optimization tools like Cloudinary can significantly reduce bandwidth usage and save users time by automatically delivering the most suitable image format for each user's browser. Cloudinary's auto format feature can automatically select the fastest and smallest image format based on the user's browser capabilities, leading to impressive speed gains. Additionally, TypeScript is a popular choice for developing applications due to its static typing and error checking capabilities. The TypeScript compiler (TSC) can be used to check types and catch errors during development, making it an essential part of the development process. When using TypeScript, the code is not actually compiled with TSC but is used for explicit type checking. Instead, other tools like ES build or Babel with the TypeScript plugin are used to compile TypeScript code into JavaScript. It's important to coordinate the use of these tools to ensure proper error handling and efficient development workflows.

    • Exploring TypeScript and Cool PicksTypeScript enhances React development with features like type checking, error handling, and better code organization. Affordable label printer and eco-friendly night lights were shared as cool picks.

      TypeScript is a powerful tool for developing React applications, offering first-class support through the dot tsx extension. TypeScript provides numerous benefits such as type checking, error handling, and better code organization. In the upcoming episodes, the hosts will dive deeper into TypeScript's features like flow control, interfaces, and generics. Wes shared his personal "sick pick" - a label printer called the Foamemo Shipping Label Printer. This thermal printer is affordable, fast, and uses thermal paper, which turns black when heated. It's perfect for creating labels for various projects, and the cost-effective labels can be purchased on Amazon. Another "sick pick" shared by Courtney was the LumaPets LED night lights. These night lights are an improvement over traditional night lights as they use energy-efficient LEDs and have a soft, squishy material that makes them safe for children. The absence of batteries makes them a more eco-friendly and hassle-free option for night lighting.

    • A fun and interactive night light for childrenA rechargeable, animal-shaped night light with a soft, water balloon-like feel and remote control offers a safer and exciting bedtime routine for kids.

      The discussed product, a rechargeable night light shaped like various cute animals, offers a fun and interactive experience for children, making bedtime routine more enjoyable. The night light is soft to the touch, with a water balloon-like feel, and comes with a remote control that allows kids to easily change the light's color. This not only adds excitement to their routine but also provides a safer alternative to traditional incandescent night lights that can get hot. The product has been a big hit with children and has received positive feedback from parents. Additionally, the speakers mentioned their own experiences with upgrading their home technology, including Wes Bos's web development courses and Level Up Tutorials's new tool chain using ECMAScript modules and Snowpack for faster development.

    Recent Episodes from Syntax - Tasty Web Development Treats

    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

    780: Cloud Storage: Bandwidth, Storage and BIG ZIPS

    780: Cloud Storage: Bandwidth, Storage and BIG ZIPS

    Today, Scott and Wes dive into cloud storage solutions—why you might need them, how they use them, and what you need to know about the big players, fees, and more.

    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

    779: Why SQLite is Taking Over with Brian Holt & Marco Bambini

    779: Why SQLite is Taking Over with Brian Holt & Marco Bambini

    Scott and CJ dive into the world of SQLite Cloud with special guests Brian Holt and Marco Bambini. They explore why SQLite is gaining traction, its unique features, and the misconceptions surrounding its use—let’s get into it!

    Show Notes

    • 00:00 Welcome to Syntax!
    • 01:20 Who is Brian Holt?
    • 02:26 Who is Marco Bambini?
    • 05:12 Why are people starting to talk so much about SQLite now?
    • 08:47 What makes SQLite special or interesting?
    • 09:46 What is a big misconception about SQLite?
    • 11:13 Installed by default in operating systems.
    • 12:03 A perception that SQLite is intended for single users.
    • 13:36 Convincing developers it’s a full-featured solution.
    • 15:11 What does SQLite do better than Postgres or MySQL?
    • 17:30 SQLite Cloud & local first features.
    • 20:38 Where does SQLite store the offline information?
    • 23:08 Are you typically reaching for ORMs?
    • 25:00 What is SQLite Cloud?
    • 27:29 What makes for an approachable software?
    • 29:18 What make SQLite cloud different from other hosted SQLite options?
    • 32:13 Is SQLite still evolving?
    • 34:40 What about branching?
    • 37:37 What is the GA timeline?
    • 40:04 How does SQLite actually work?
    • 41:19 Questions about security.
    • 44:28 But does it scale?
    • 45:52 Sick Picks + Shameless Plugs.

    Sick Picks

    Brian: Trainer Road
    Marco: Tennis

    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

    #046 - Ben Awad: Becoming the Internet's Most Impactful Programmer

    #046 - Ben Awad: Becoming the Internet's Most Impactful Programmer

    Ben Awad is a YouTuber, software engineer, and the founder of VoidPet.com. He has 500k YouTube subscribers, 800k TikTok followers, and is known for his legendary coding tutorials and humorous and authentic videos. We discussed numerous topics. Check the timestamps below for topics and enjoy the audio, or you can watch the video over on our YouTube channel: https://youtu.be/BKhV-kPavnk 


    Ben's YouTube: https://www.youtube.com/@bawad 
    Ben's TikTok: https://www.tiktok.com/@benawad 
    Ben's Twitter: https://twitter.com/benawad 
    Ben's startup: https://voidpet.com/ 
    Ben's GitHub: https://github.com/benawad 
    Ben's Discord: https://discord.gg/benawad 
    Ben's programmer outfit: https://youtube.com/shorts/-P418Qerexs?feature=share 


    00:00 Teaser 
    00:40 Intro (Guest & Co-host)
    03:40 Ben's first line of code
    06:00 Turning down FAANG and Leetcode
    11:33 Layoffs / Finding jobs
    13:15 Skin in the game
    13:58 Interviews are broken
    16:44 Advice to technical content creators
    22:05 Being authentic online
    27:57 Coding on Twitch vs YouTube
    30:10 Why you should create on TikTok
    33:25 Hating Android development / Loving React
    36:00 Tech stack
    38:18 GitHub Copilot
    39:35 Tech stack again
    40:39 Deno
    42:30 The AI discussion
    44:10 VoidPet (Ben's startup)
    49:40 Rejected by YC / fundraise vs bootstrap
    56:29 Career advice to newbies
    1:00:09 Ben's drip
    1:01:42 Saffron App
    1:04:29 Ben's mentors
    1:06:25 Wrap up 

    -

    Get in touch with us:

    Our website (all essays and podcasts): https://rationalvc.com 
    Our investment fund: https://rational.fund 
    Cyrus' Twitter: https://twitter.com/CyrusYari 
    Parsa's Twitter: https://twitter.com/pzrsaa 
    Parsa's website: https://parsam.io 
    Iman's Twitter: https://twitter.com/iman_olya 

    -

    Disclaimer: The materials provided are solely for informational or entertainment purposes and do not constitute investment or legal advice. All opinions expressed by hosts and guests are solely their own opinions and do not reflect the opinion of their employer(s). No copyright infringement intended.

    #benawad #coding #programmer

    Folge 74 - wolkenkit mit Golo Roden

    Folge 74 - wolkenkit mit Golo Roden

    Mit dem Gast in dieser Folge sprachen wir bereits in Folge 57 über die Konzepte von Domain-driven Design (DDD), Event Sourcing und Command-Query-Responsibility-Segregation (CQRS). Vereint werden vor allem Event Sourcing und CQRS in wolkenkit, einem Backend-Framework, das auf Node.js basiert. Es ermöglicht, mit JavaScript oder TypeScript skalierbare und verteilte Web- und Cloud-APIs zu erstellen. Abgerundet wird es durch die einfache Möglichkeit der Integration von DDD zur Modellierung der Projekte.
    Auf der Webseite von wolkenkit gibt es weiterführende Informationen zum Framework. Wenn ihr neugierig geworden seid, könnt ihr euch hier die Doku von V3 ansehen und zum Open Source Projekt beitragen. Auf Slack könnt ihr der wolkenkit-Community beitreten und euch direkt integrieren.

    Picks of the Day 

    • Golo spielt gern alte Retro-Spiele mit seinen Kindern, beispielsweise Monkey Island. Grafisch zwar wenig anspruchsvoll, aber dafür narrativ Gold wert – und genau deswegen empfehlenswert für Kinder. 
    • Dennis geht gern mit der Einkaufslisten-App Bring! in den Supermarkt. Die super smarte App ist synchron mit mehreren Personen nutzbar und ordnet Produkte automatisch der Abteilung im Geschäft zu. 
    • Jojo empfiehlt die Auseinandersetzung mit der Netflix-Doku “Das Dilemma der Sozialen Medien”, in der ehemalige MitarbeiterInnen großer Firmen über die Entwicklung sozialer Medien im Vergleich zur ursprünglichen Intention sprechen.  

    Schreibt uns!
    Schickt uns eure Themenwünsche und euer Feedback.
    podcast@programmier.bar

    Folgt uns!
    Bleibt auf dem Laufenden über zukünftige Folgen und virtuelle Meetups und beteiligt euch an Community-Diskussionen.
    Twitter
    Instagram
    Facebook
    Meetup
    YouTube

    Musik: Hanimo 

    Micro Frontends - a może jednak ma to (czasami) sens?

    Micro Frontends - a może jednak ma to (czasami) sens?
    Wszystko zaczęło się od monolitu i tak pewni by się skończyło, ale ...

    Nie pałaliśmy zbytnio chęcią do pójścia w stronę micro frontend'ów. Natomiast wymagania w projekcie tak pokierowały naszymi wyborami, że postanowiliśmy spróbować.

    Rozmawiamy o naszych doświadczeniach:

    - jakie są mocne strony micro frontend'ów?
    - jakie są wady?
    - czy narzędzia pomagają czy przeszkadzają?
    - czy warto wchodzić w temat?

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

    TRANSCRIPT: 5e0298d966e043809252088b1d6be45d

    63: TypeScript & ES6 in Angular Applications

    63: TypeScript & ES6 in Angular Applications

    Summary

    Dan Wahlin (@DanWahlin) , Angular JS GDE & Software Engineer, chats on TypeScript & ES6 in Angular applications. He tells us about how he leverages the power of these tools to improve his applications. He goes into a few of his debugging stories and even about how he uses docker to quickly deploy these applications.

     

    Resources

     

    Panelists