Logo
    Search

    Potluck — $100k Dev Jobs × Sponsored Blog Posts × How To Keep Your Skills Up To Date × Libraries vs Custom × Dev Tools × More!

    enJanuary 20, 2021

    Podcast Summary

    • The Syntax Podcast: A Valuable Resource for Web DevelopersThe Syntax Podcast, with its diverse topics and sponsors, helps aspiring web developers gain insights, inspiration, and practical knowledge, leading Benny to his first high-paying job.

      The Syntax podcast, with its diverse range of topics from Versus code and JavaScript to CSS and getting a job, has helped many aspiring web developers, including Benny boy, who started as a bartender and college dropout three years ago and recently landed his first $100,000+ job in the industry. Benny credited the podcast for keeping his attention in web development and guiding his interest. This episode also featured a shout-out from Just the Dane, a long-time listener who appreciates the interesting subjects discussed on the show and listens to it during his hour-long commute. The podcast is sponsored by Prismic, a headless GraphQL CMS, LogRocket, a JavaScript logging and session replay tool, and Linode, a cloud hosting and Linux servers provider. Overall, the Syntax podcast serves as a valuable resource for web developers at various stages of their careers, offering insights, inspiration, and practical knowledge.

    • Managing Bundle Sizes with External PackagesBe mindful of bundle sizes when using external packages, use tools like Bundle Phobia, import cost, and Webpack to understand and optimize imports, and consider custom functionality for smaller projects or when resources are limited.

      Developers should be mindful of their bundle sizes when using external packages, as large bundles can negatively impact load times for users. The speaker recommends importing and using packages first, then trimming the size as needed. Tools like Bundle Phobia and import cost in Visual Studio Code can help developers understand the size of their imports and identify potential savings. Webpack also provides notifications about large bundles. Ultimately, the decision to use external packages or write custom functionality depends on the specific project and available resources. But, it's essential to be aware of the impact on bundle size and strive for an optimal balance.

    • Consider using pre-existing code or libraries wiselyWhen using pre-existing code or libraries, evaluate complexity, stability, and potential issues before implementation. Be mindful of unsupported characters and package size.

      When it comes to using pre-existing code or libraries, it's essential to consider the complexity of the task at hand. For simple functions, it's often acceptable to copy and paste from sources like Stack Overflow. However, for more intricate tasks, it's better to use well-tested libraries to ensure code stability and avoid potential issues. The speaker shared a personal experience where using a simple Slugify function led to broken URLs due to unsupported characters in Russian names. Therefore, it's crucial to keep an eye on such details. Additionally, if you find a library that is too large, consider looking for alternatives to reduce the package size. Regarding sponsored or guest posts on personal sites, the speaker acknowledged that it can feel disingenuous but also recognized the potential benefits of bringing in extra income. However, they suggested setting clear terms and being transparent with your audience. The speaker also mentioned receiving unsolicited requests for sponsored posts and podcast appearances, which they politely declined when it wasn't a good fit for their audience.

    • Navigating sponsorships and collaborations with transparencyMaintain authenticity and transparency with audiences when monetizing content through sponsorships and collaborations. Clearly communicate relationships with sponsors and disclose financial arrangements upfront to build trust and maintain brand integrity.

      Monetizing content through sponsorships and collaborations can be a complex issue for creators. While opportunities for free products or payment can be enticing, it's essential to maintain transparency and authenticity with audiences. In some cases, sponsors may approach creators with the intention of gaining SEO benefits rather than seeking genuine reviews. It's crucial for creators to establish clear communication about their relationships with sponsors and disclose any financial arrangements upfront. Ultimately, creators should prioritize their credibility and produce content that aligns with their values and expertise. By being transparent and authentic, creators can build trust with their audience and maintain the integrity of their brand. For instance, the speaker shared an experience where they received multiple drones from different companies but didn't feel it was a good fit for their channel. They emphasized the importance of letting sponsors know they'll use their products in their unique way, rather than promoting them blindly. Additionally, they acknowledged that it's essential to be upfront about sponsorships and avoid giving the impression that they're being paid for every positive review. Overall, while monetizing content through sponsorships and collaborations can be a valuable source of income, it's essential for creators to prioritize their authenticity and transparency to maintain their audience's trust.

    • Selling Digital Products: Protecting Files and Managing AccessTo sell digital products, protect files with cloud storage or databases, and manage access with temporary keys or specific URLs.

      LogRocket is a valuable tool for developers to diagnose bugs in their applications, providing features like video replay, access to the Redux store, network tab, console logs, and more. Selling digital products is generally easier than physical ones due to fewer edge cases, and typically involves granting users access to digital files or roles that unlock specific features. Protecting digital files from unauthorized access can be complex, involving temporary keys and specific URLs. For the most basic setup, a seller could use a cloud storage service like Amazon S3 or Backblaze B2. A database may also be necessary for more advanced features. Shopify can also be used for selling digital products, but may be overwhelming for simple setups.

    • Staying updated in tech industry during breaksMaintain skills through podcasts, blog posts, and videos during breaks. A year-long leave is not too long to stay updated, and it's crucial to remain connected to the industry.

      Keeping your skills up to date in the tech industry, especially during extended breaks, is crucial to remain competitive. Wes suggested using tools like Snipcard for front-end development without having to build a database from scratch. Anand asked about maintaining skills during a maternity leave, and Wes advised that taking a break doesn't mean losing touch entirely. He recommended listening to podcasts, reading blog posts, and watching coding videos to keep the mind engaged. Wes emphasized that a year-long leave is not too long to stay updated and that it's essential to maintain a connection to the industry, even if it's just through passive means. Alejandro, a long-time podcast listener, shared his desire to start from the beginning and listen to every episode. He appreciated the learning opportunities and the chance to gain insights from other developers' experiences. Overall, the importance of continuous learning and staying updated in the tech industry, even during breaks, was a recurring theme in the discussion.

    • Exploring the pros and cons of writing CSS from scratch vs using librariesWriting CSS from scratch using variables and utility classes can save code, but libraries and CMS offer time-saving benefits for content creation.

      While some developers prefer using CSS libraries like Tailwind or Bootstrap for their projects, Alejandra shares her experience of writing CSS from scratch using CSS variables and crafting her own utility classes. She emphasizes that writing CSS from scratch might require less code than using a library, but it depends on time constraints and personal preference. Alejandra also introduces Prismic, a headless CMS that can save time on the back end by allowing users to create content types without writing any code. Despite her preference for writing CSS from scratch, she acknowledges that using a library or a CMS can be beneficial in different ways. Overall, the conversation highlights the importance of finding the right balance between writing code from scratch and using pre-built solutions based on individual projects and priorities.

    • Exploring Development Tools: Prismic and DevToolsPrismic is a CMS for developers, providing data access for popular frameworks and image optimization. Firefox and Chrome DevTools offer various tabs for debugging, inspecting, and optimizing websites.

      Prismic is a powerful content management system that allows developers to easily pull in data for their projects using popular frameworks like React, Vue, Next, and Nuxt. Prismic not only solves the problem of where to put data but also offers image optimization through Imajix. Additionally, both Firefox and Chrome DevTools offer various useful tabs for developers. The most commonly used tabs include the inspector with CSS, network, and storage. Firefox DevTools recently introduced a multiline console playground, which is a nice addition. Both Chrome and Firefox DevTools have been improving with new features, such as grid tools and color pickers. The network tab is a must-use tab for developers to understand what's being loaded and to debug issues. Overall, using a combination of these tools can significantly enhance the development experience.

    • Debugging with network requestsInspecting network requests and responses can help identify CORS issues, slow requests, and server-side problems. Use comments to organize code and plan projects, and remember it's normal to feel uncertain or insecure when learning a new skill like programming.

      Having the ability to inspect network requests and responses can greatly enhance your debugging abilities. This can help you identify issues with CORS, slow requests, and even server-side problems. Wes and Scott emphasized the importance of being able to see the data that comes back, as it can provide valuable insights into what's going wrong. They also suggested using comments as a way to organize your code and plan out your project, which can help alleviate feelings of overwhelm when starting from a blank slate. Another important takeaway is that feeling insecure or experiencing imposter syndrome is completely normal, especially when learning a new skill like programming. Harry shared his struggles with feeling confident in his ability to write code on his own, and Wes and Scott offered some advice. They suggested starting with an outline or plan for your project, breaking it down into smaller tasks, and then filling in the blanks with code. They also encouraged Harry to keep practicing and not to be too hard on himself for needing to Google things or seek help from others. Overall, the discussion highlighted the importance of having the right tools and mindset for debugging and problem-solving, as well as the normalcy of feeling uncertain or insecure when learning something new.

    • Record yourself solving coding problems for personal growthRecording yourself while working on coding problems can help improve problem-solving skills and alleviate imposter syndrome. Consider reducing carbon emissions in web development through options like lower-resolution videos and eco-friendly hosting companies.

      As developers, we're constantly learning and refining our approach to problem-solving. When faced with a challenging JavaScript array problem or any other coding issue, it's normal to feel stuck and to need to brainstorm different solutions. Recording yourself as you work through the problem, even if you don't plan on sharing it publicly, can help alleviate feelings of imposter syndrome and improve your overall problem-solving skills. Regarding the environmental impact of web development, it's important to consider ways to reduce carbon emissions, especially when it comes to video streaming. Developers can explore options such as serving up lower-resolution videos for users with slower internet connections or using environmentally-friendly hosting companies and carbon offsets. However, it's not necessary to sacrifice performance or user experience in the name of environmentalism. Instead, we can find a balance between delivering high-quality content and minimizing our carbon footprint.

    • Impact of large video streaming companies on carbon emissionsLarge video streaming companies contribute significantly to carbon emissions due to high-definition and 4k content. Individuals and smaller organizations have limited impact but can choose eco-friendly hosting providers and energy-efficient settings.

      While individuals and smaller organizations may not have a significant impact on reducing carbon emissions related to video streaming by limiting video quality, larger companies like YouTube and Netflix, which serve vast amounts of high-definition and 4k content, contribute significantly more to the issue. The largest savings and emissions reductions will come from these companies through better compression and newer formats. Individuals and organizations can still make a difference by choosing eco-friendly hosting providers and using energy-efficient settings on streaming platforms. For instance, setting video quality to auto HD instead of 4k can help reduce personal emissions. Additionally, Linode, a historically reliable cloud hosting platform, offers various services beyond just hosting a VPS, including Kubernetes products, and provides a $100 free credit for new users to explore their offerings.

    • Challenging yourself vs. scaling backUnderstand project requirements before diving in. Challenge yourself with manageable projects to learn and grow. Scale back when necessary to avoid becoming overwhelmed.

      When working on a project, it's important to know when to challenge yourself and when to scale back to avoid becoming overwhelmed. If you find yourself in a situation where you're not experienced enough to tackle a project but want to learn and grow, it's a good opportunity to dive deeper and learn the intricacies of the problem. However, if the lack of manpower makes the project too big to complete in a timely manner, it may be necessary to scale back or find help. It's essential to understand the problem and the solution before writing any code and to consider all the little things that might be involved. Pushing yourself past your comfort level is important, but it's crucial to know your limits and not take on projects that are too massive. Instead, aim for projects that challenge you but are still manageable. Remember, the learning process is just as important as the end result.

    • Learning new skills: Persistence, research, and seeking helpLearning new skills can lead to great results. Research, find resources, have a mentor, ask clear questions, and be persistent.

      Pushing yourself to learn new skills, even if you're intimidated or unsure, can lead to great results. The speaker in this discussion shared their experience of attempting to build a mapping project from scratch, despite having no prior experience with mapping or the specific tools involved. They emphasized the importance of doing some research and finding resources to help guide the learning process. Another important point the speaker made was the value of having a mentor or "phone a friend" to consult with when faced with challenges. They shared an example of a time when they were trying to build an integration and hit a technical hurdle, and how a mentor's guidance helped them overcome the issue. The speaker also emphasized the importance of asking clear and specific questions when seeking help from others. They cautioned against placing too heavy a cognitive burden on others and encouraged being respectful of their time and expertise. In response to a question from a listener, the speaker discussed the differences between databases and headless CMSs, explaining that databases are used to store and manage data, while headless CMSs are used to manage content and deliver it to various channels. They encouraged listeners to consider the specific needs of their project when deciding which to use. Overall, the discussion emphasized the importance of persistence, research, and seeking help when needed in the learning process.

    • Headless CMS goes beyond a databaseA headless CMS offers content management, data relationships, API, authentication, and a user interface for managing and updating data, while a database only stores information

      A headless CMS goes beyond being just a database with a user-friendly way of entering data. While a database is where data lives, a headless CMS provides additional features such as content management, data relationships, and a GraphQL or REST API. It also handles authentication and access control, which is essential for securing data and ensuring only logged-in users have access. A database, on the other hand, requires additional layers of logic and authentication to be built on top of it to provide these features. Some developers choose to build these layers themselves, while others opt for a headless CMS to simplify the process. Additionally, the CMS provides a user interface for managing and updating data, which is not available with a database alone. In summary, while both databases and headless CMSs serve different purposes, a headless CMS offers a more comprehensive solution for managing and securing content and data.

    • Using 3M's double-sided mounting tape for versatile and strong item securingSpeaker shared his experience using 3M's tape for mounting a power supply, praised its durability, and encouraged listeners to check out his courses with a discount code

      3M's double-sided mounting tape is a versatile and effective solution for securing various items, from power supplies to home decor. The speaker shared his experience of using it to mount a power supply under his desk and how it has held strong despite constant use. He also praised its durability compared to Velcro and expressed his intention to use it more extensively. Another key takeaway from the conversation was the speaker's enthusiasm for learning new skills and technologies, as evidenced by his numerous courses offered on westboss.com and leveluptutorials.com. He encouraged listeners to check out his courses and use the coupon code "syntax" for a discount. Overall, the discussion highlighted the importance of having the right tools for organization and the value of continuous learning.

    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

    #16 - Comprendre les ODD (Objectifs de Développement Durable) et attraper des actions simples

    #16 - Comprendre les ODD (Objectifs de Développement Durable) et attraper des actions simples

    ♻️ Comprendre l'origine des ODD, les impacts et réfléchir à comment le Lean peut être une clé pour demain, voici les éléments qui composent cet épisode en cette journée mondiale du recyclage. ♻️

    🔗 Sources et sites ressources : 

    Nations Unies  ; The Global Goals ; Agenda 2030 ; Novethic 

    L'application ODD en action pour consulter les actions, participer ou créer une action


    🚀 Les associations en lien avec les ODD : Global Compact France & La Fonda 

    🔝 Les entreprises engagées : Balzac Paris & Mister K 


    Bonne écoute ! 

    ____________

    JeudiLean est le podcast qui décrypte pour chacun les outils du lean, vous aide à les comprendre et à les appliquer. 

    Mon objectif ? Vous donner les clés et les astuces pour booster concrètement la performance de vos activités quelles qu'elles soient. 

    Je suis Elodie Lhermitte passionnée d'amélioration continue et décidée à mettre des mots simples sur un sujet à priori complexe, le lean, pour que vous aussi vous puissiez dire "je dis lean". 

    Si le podcast vous plaît, pour diffuser Jeudi Lean, n’hésitez pas à me laisser un commentaire sur l’application itunes ou 5 étoiles et si vous êtes sur une autre plateforme d’écoute vous pouvez m’aider à donner plus de visibilité à ce podcast en le partageant autour de vous et qui sait, ça permettra peut-être à vos amis ou à vos collègues d’en savoir plus sur l’amélioration continue. Merci ! 

    Retrouvez moi sur les réseaux : linkedIn et Instagram pour attraper des visuels, des articles partagés avec vous ! 

    📩 lhermittelodie@hotmail.com

    2023 Goals × Learning and Doing

    2023 Goals × Learning and Doing

    In this episode of Syntax, Wes and Scott talk through their goals for 2023 including coding, tooling, courses and platforms, social media, and fitness.

    Show Notes

    ××× SIIIIICK ××× PIIIICKS ×××

    Shameless Plugs

    Tweet us your tasty treats

    #63 - Low-Code als Masterarbeit - mit Adriano Villa Bascón

    #63 - Low-Code als Masterarbeit - mit Adriano Villa Bascón

    Entrepreneurship und Sustainability - so nennt sich der Masterstudiengang von Adriano an der Nova School of Business & Economics in Lissabon, Portugal. Für seine Masterarbeit hat Adriano mit seinem Team eine App entwickelt, die dabei hilft, die günstigsten Angebote in den umliegenden Supermärkten zu finden - und zwar mit Low-Code. Wie sie dabei vorgegangen sind, welche Tools sie benutzt haben und warum die Kombination aus Low-Code und Code am Ende die beste Lösung war, erzählt Adriano in dieser Episode.

    Adriano kennen viele von euch schon aus den VisualMakers E-Mail Kursen - ab jetzt wird er euch auch regelmäßig im Podcast dabei sein!

    ///

    Links zur Episode:

    Tool of the week: Outsystems https://www.outsystems.com/

    Eatplants Newsletter: https://eatplants.substack.com/

    Nova Business School of Economics: https://www.novasbe.unl.pt/en/

    Holgis Hotspot App: https://holgishotspots.glideapp.io/ (vegane Restaurants in Lissabon)

    ///


    Ep. 13. Hobby Turned Business

    Ep. 13. Hobby Turned Business
    From humble beginnings to creating something much larger, Sienna and Alex talk about the thrill of turning a hobby into a viable business on the same day Sienna launches her Etsy store! Sienna shares what she has been up to for the last month and provides a little backstory on how she found her love for candle making while Alex dishes on the progress of his ongoing project.

    Growing All of My Own Food and Wasting Money Doing It... DO THE WORK - Day 212

    Growing All of My Own Food and Wasting Money Doing It... DO THE WORK - Day 212
    DO THE WORK PODCAST: A daily documentary of my life, behind Permaculture Voices blending together fatherhood, business, organization, and life hacking to make it all work.   Produced by podcaster, entrepreneur and dad of three daughters - Diego Footer. Support the show at http://www.permaculturevoices.com/support Listen to more episodes at http://www.permaculturevoices.com/support