Logo
    Search

    Podcast Summary

    • Exploring Alternative Methods for Continued Coding: Voice Coding with PokeyroulPokeyroul shares how voice coding helped him overcome repetitive strain injury and reach 70-75% productivity. He discusses the challenges of managing programmers and the potential of the CursorList extension to make voice coding more intelligent and efficient.

      Pokeyroul, a developer from California, shares his experience with voice coding and how it helped him continue coding despite repetitive strain injury. He discovered voice coding after watching Emily Shea's video and was able to reach 70-75% of his old productivity. However, he struggled to surpass that and had an idea to improve the experience. Pokeyroul also mentioned that managing programmers is a different skill set than writing code and that some people may find it challenging to transition between the two. During the conversation, the hosts, Scott Talinsky and Wes Bos, discussed their excitement about the CursorList extension for Visual Studio Code, which uses Abstract Syntax Trees (ASTs) to make voice coding more intelligent and efficient. They also mentioned their sponsors, the Stack Overflow podcast and Directus, and welcomed Pokeyroul to the show. Overall, the episode highlights the importance of exploring alternative methods to continue coding and the unique challenges of managing programmers.

    • Voice-activated coding with Talend VoiceTalend Voice is a voice-activated coding solution that uses a microphone and a flexible platform to map voice commands to actions, saving time and effort for users during virtual meetings or with physical limitations.

      There's a technology called Talend Voice which allows users to code using only their voice. This innovative solution uses a microphone and the Talend Voice platform or library, which includes a UX library for building non-keyboard and mouse user experiences. The platform is flexible and comes with no commands by default, but users can define their own grammar, which maps voice commands to actions. The community has developed a set of universally useful commands, and users can download, install Talend Voice, and clone the community grammar to get started. The grammar is essentially a definition that maps commands to actions and can be thought of as a giant regex. While some commands are literal, many have captures, similar to regular expressions. Talend Voice uses a combination of Python and Talenscript, and writing custom grammars is a significant part of the process. This technology can save time and effort by allowing users to code without typing, making it especially useful during virtual meetings or for individuals with physical limitations.

    • Balancing voice command length for accuracy and convenienceMaintainers of voice command systems aim for longer commands to minimize accidental triggering, but face a constant tension between rapid use and misrecognition. Logging commands and testing in various environments can help prevent unintended inputs and data destruction.

      Maintaining a voice command system involves balancing the length of commands to reduce accidental triggering. Speakers in the discussion are maintainers of a community grammar for voice commands and shared their experiences with unintentionally triggering commands. They strive to make community grammar commands longer to minimize the chances of accidental triggering. However, there's a constant tension between having short commands for rapid use and longer commands to avoid misrecognition. The maintainers also discussed the potential consequences of forgetting to turn off voice coding engines, which could result in unintended inputs and even data destruction. An example of this was shared where a child scanned barcodes in the room, causing random text to be inputted into the code. The Stack Overflow podcast was mentioned as a sponsor, and an offer was made to discuss the actual code implementation in more detail. The speaker shared that they keep a log of all commands run and could read some examples from their log to demonstrate the voice coding process. The discussion also touched on the amusing reactions people get when using voice commands in public.

    • Activating Talon with custom noisesUsers can activate and repeat Talon voice commands using specific noises instead of actual commands to save voice usage and reduce latency

      The Talon voice coding engine, used for automating tasks through voice commands, can be activated and repeated using specific noises instead of actual commands to preserve the user's voice and reduce latency. The noise engine, called Parrot, is designed for instant recognition and can be trained to recognize any noise. The user, in this case, uses two noises - one for activating Talon and the other for repeating the last command phrase. This method is particularly useful when making multiple quick corrections or performing repetitive tasks, as the half-second latency for voice commands can be time-consuming. Parrot, which was originally designed for gaming, offers the flexibility to use any noise for commands, but certain noises work better than others when combined with voice coding. The user can explore different noises for personal use and find tutorials online showcasing the capabilities of Parrot in gaming.

    • A voice command system for editing code with a feature for adding spacingThe Cursalist tool, which uses voice commands for editing code, includes a feature called 'float state blue find' that inserts a new line underneath selected statements for added spacing, improving coding efficiency.

      The Cursalist tool, which is a voice command system for editing code, was designed to provide a more natural and efficient way of coding by voice. The tool includes a feature called "float state blue find," which functions as a command to add spacing to code by inserting a new line underneath a selected statement. This feature is particularly useful for editing code, as most of an engineer's time is spent editing rather than writing new code from scratch. The initial inspiration for this tool came from the observation that people speak faster than they type, and in order to take full advantage of speaking to code, the annotations for selecting code need to be constantly visible. The tool was designed to have these annotations, or "hats," always present over each token in the code, allowing for quick and easy selection and reference. This design enables a more fluid and continuous speech pattern while coding, increasing overall efficiency.

    • Text Editing with Hats and TokensThe text editing system using hats and tokens optimizes for uniqueness, enabling users to chain commands, manipulate multiple tokens at once, and perform actions on multiple lines, increasing productivity and reducing cursor movement.

      The discussed text introduces an efficient and powerful text editing system using hats and tokens. The system optimizes for uniqueness among letters, shapes, and colors, allowing for easy referencing and performing actions on multiple tokens at once. This system enables users to chain commands and operate on multiple tokens within a single command, increasing productivity and reducing the need for cursor movement. The use of hats over tokens acts as a proxy for the cursor's position, making it easier to identify and manipulate specific tokens. The system also allows for performing actions on multiple lines simultaneously, making it a significant improvement over traditional text editing methods that require cursor movement or multi-cursor selection. In essence, the discussed text editing system streamlines the editing process by providing a more intuitive and efficient way to navigate and manipulate text.

    • Using hats over tokens and ASTs for enhanced functionality in code editorsHats over tokens and ASTs enable smart references, live code analysis, and other advanced features in code editors by allowing for the referencing of multiple statements and the use of parse trees to understand complex functions.

      The use of abstract syntax trees (AST) and hats over tokens in programming can greatly enhance the functionality of code editors and other development tools. These hats, which are placed according to a regex-based tokenizer, allow for the referencing of multiple statements at once and the use of parse trees to expand and understand complex functions. The TreeSitter parser, which uses incremental and error-tolerant parsing, is a popular tool for generating ASTs and making them readily available for use in real-time. This technology, which is used by GitHub and other development platforms, enables features like smart references and live code analysis. Overall, the use of ASTs and hats over tokens is a powerful technique for enhancing the functionality and efficiency of code editing and development tools.

    • Open-source API solution with REST and GraphQL interfacesDirectus is a free, open-source platform for creating custom APIs with user-friendly GUI, REST and GraphQL interfaces, and a supportive community.

      Directus is an open-source solution that provides REST and GraphQL APIs on top of any SQL database, allowing users to create a custom API with a user-friendly GUI. It's compatible with all major SQL vendors and supports any data scheme or architecture. Directus offers both self-hosted and cloud versions, with the cloud version providing built-in infrastructure, databases, serverless APIs, CDNs, and more. The community around Directus is active and growing, with users primarily engaging through a Slack workspace and regular voice-based meetups. The project is completely free and open-source, and the developer behind it has opted to be sponsored by users via GitHub Sponsors to continue working on the project. Eye tracking is also a popular feature in the Directus community, with certain eye trackers supported out of the box. Directus is a versatile and accessible solution for creating custom APIs, and its active and supportive community makes it an attractive choice for developers.

    • Choosing Between Eye Trackers and Cursorless Navigation for Voice CodingConsider personal preference and specific use cases when deciding between eye trackers and cursorless navigation for voice coding. High-quality microphones, like the DPA 4188, can improve voice coding accuracy, while articulation exercises are more effective. Upgrade hardware and utilize resources like The Voice Book for improved voice coding skills.

      Eye trackers and cursorless navigation systems serve similar functions, and the choice between the two depends on personal preference and specific use cases. Eye trackers, like the Tobi, can be a good replacement for a mouse for those who can't use one, but they might require some fine-tuning. Cursorless navigation, on the other hand, allows users to refer to any token on the screen without moving the mouse, making an eye tracker less necessary. Regarding hardware, a high-quality microphone, such as the DPA 4188, can improve voice coding accuracy, but articulation exercises are more effective. The Voice Book, recommended for professional speakers, offers valuable insights into maintaining a sustainable voice. During the interview, the speakers discussed various topics, including their equipment, such as using a MacBook Pro from late 2020 and the DPA 4188 microphone. They also touched upon the importance of upgrading hardware and the benefits of books like The Voice Book for improving voice coding skills. In summary, the choice between an eye tracker and cursorless navigation, as well as upgrading hardware and practicing articulation exercises, are essential considerations for those interested in voice coding. The Voice Book is a valuable resource for anyone looking to enhance their voice coding abilities and speak professionally.

    • Considering hardware and software for optimal coding efficiencyChoosing the right hardware and software tools can improve coding efficiency and reduce ergonomic challenges. The voice engine in Talend can require beefier hardware, while personal preferences dictate text editor themes, fonts, and keyboards.

      While tree sitter itself is lightweight and runs efficiently on thin hardware, the voice engine in Talend, which is constantly listening and processing speech, can be quite resource-intensive and may require beefier hardware for optimal performance. The choice of text editor theme, font, and keyboard largely depends on personal preference and specific use cases, with some developers opting for ergonomic keyboards to mitigate RSI issues. Python was mentioned as a potential starting point for coding, but the experience of using TypeScript for an extension led to a newfound appreciation for its robust type system and reliability. Overall, the discussion highlighted the importance of considering hardware capabilities and software tools to optimize coding efficiency and minimize potential ergonomic challenges.

    • Enhance JavaScript coding experience with TypeScript and toolsTypeScript's static type system and tools like VS Code and GitHub Copilot provide features for safer, efficient coding. Stay updated on AI research and web trends for future advancements.

      TypeScript and tools like Visual Studio Code and GitHub Copilot can significantly enhance the JavaScript coding experience by providing features like autocompletions, suggestions, error checking, and even AI-generated code. TypeScript's static type system makes coding feel safer and more efficient, and tools like GitHub Copilot can even generate impressive suggestions, although they may not always be perfect. To stay updated on the latest AI research and web development trends, resources like archive.org and Slack communities can be helpful. The future of web development is exciting, with potential new frameworks like Svelte and the challenge of handling hybrid parse trees in tools like Cursory. Overall, embracing tools like TypeScript and staying informed about the latest trends and technologies can lead to more effective and enjoyable coding experiences.

    • Subvocalization recognition: controlling computers with silent thoughtsFuture tech includes subvocalization recognition for silent thought control, eliminating vocal strain, enabling coding in any environment, and integrating with AR for immersive experiences. AI-generated art and image recognition also advance.

      There are ongoing research and development efforts in various areas such as AR, AI, and voice recognition technology that aim to make computer interaction more seamless and efficient. One specific area of interest is subvocalization recognition, which allows users to control their computers using silent thoughts instead of spoken commands. While the technology is still in its infancy and accuracy rates are currently low, it holds great potential for the future. This includes eliminating vocal strain, enabling coding in any environment, and even integrating with AR technology for a fully immersive experience. The speaker also mentioned the advances in AI-generated art and image recognition, which are becoming increasingly impressive and accessible. Overall, these developments represent significant strides towards a future where computers can understand and respond to human thoughts and actions in more intuitive and natural ways.

    • Bridging the Gap Between Human Language and Modern Code EnvironmentsResearch project Chrysalis aims to create a direct link between the Human Language Center and a modern code environment using voice coding and cursorless computing. Listeners encouraged to explore Git Imerge and check out Pokey's YouTube channel for more info.

      Pokey and his team are working on a research project called Chrysalis, which aims to create a direct link between the Human Language Center and a modern code environment using voice coding and cursorless computing. They're exploring various directions such as operating across files, syntactic transformations, and understanding the implications of this new connection between the human brain and software. Pokey shared his excitement about the potential of this project and encouraged listeners to explore Git Imerge, a software tool that helps merge branches effectively, as his "sick pick." For those interested in learning more about cursorless and voice coding, Pokey suggested checking out his YouTube channel. He also mentioned that support for the project can be provided through GitHub Sponsors. Overall, the conversation highlighted the innovative work being done to bridge the gap between human language and modern code environments.

    • Engage with the Talend community for support and knowledgeJoin the Slack channel and Discord voice for questions and answers from experienced Talend users, and listen to Syntax.fm for valuable information on Talend and other tech topics.

      The Talend community is an incredibly supportive and knowledgeable resource for those looking to learn and utilize Talend's data integration tools. The Slack channel and Discord voice are particularly valuable, as they offer a platform for asking questions and receiving answers from experienced Talend users. Don't hesitate to join and engage with the community – they are eager to help and share their expertise. Additionally, Syntax.fm offers a wealth of information on Talend and other tech topics through their podcast and archives. So, whether you're just starting out or looking to deepen your understanding, the Talend community and Syntax.fm are excellent resources to tap into.

    Recent Episodes from Syntax - Tasty Web Development Treats

    792: Perfect Sitemaps for SEO

    792: Perfect Sitemaps for SEO

    Scott and Wes break down the importance of sitemaps for SEO. They dive into the different file formats, essential fields, and common pitfalls to avoid when creating and submitting your sitemap to search engines.

    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

    791: LLRT The Serverless Runtime w/ Richard Davison

    791: LLRT The Serverless Runtime w/ Richard Davison

    Scott and Wes chat with Richard Davison from AWS about LLRT, a new runtime tailored specifically for Lambda. They dive into the benefits of using LLRT, challenges with JavaScript in serverless, and why Rust was chosen for its development.

    Show Notes

    Sick Picks

    Shameless Plugs

    • Richard: Javascript

    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

    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

    Related Episodes

    Newscast 02/2023

    Newscast 02/2023
    Carsten & Andreas besprechen die neuesten Entwicklungen im Arbeitsmarkt der Tech Industrie, neue Innovationen wie ChatGPT und weitere Trends. Außerdem bekommen wir ausführliche Einblicke in den Trend Monitor 2023 von BARC. Mit dabei natürlich auch wie immer die beliebten M&A News. ⪧ Themen • Wie geht es dem Data Markt? • Kündigungen in der Tech Industrie • Trend Monitor 2023 • Qlik kauft Talend ⪧ M&A News - Acquisitionen & Investionen ⪧ Events • 08.03.2023 - BI or DIE Women in Data • 09.03.2023 - Zürich | DWH.next • 22.03.2023 - BI und Analytics Arena • 31.03.2023 - BI or DIE Data Talk • 26.-27.04.2023 - #DFConline: Konzernkonsolidierung & Group Accounting • 11.-12.05.2023 - Frankfurt | Big Data & AI World • 17.05.2023 BI or DIE Data Jobs • 13.-14.06.2023 - DATA festival #online ⪧ Offene Stellen • Consultant bei reportingimpulse • Analyst bei BARC

    Mission Modernisation - Wie sieht moderne Datenintegration aus? | Im Gespräch mit Steffen Bischoff & Helmut Plinke

    Mission Modernisation - Wie sieht moderne Datenintegration aus? | Im Gespräch mit Steffen Bischoff & Helmut Plinke
    Steffen und Helmut beschäftigen sich schon seit Jahren mit Daten. Nun geht es aber darum, diese zu modernisieren und zu integrieren. Wie sie das mit Talend schnell und effizient schaffen, erklären sie Kai. Außerdem dabei… … Was ist moderne Datenintegration? … Was ist Datenonboarding? … Gibt es Integrationstrendthemen? … Wie gut kann Talend Datenintegration? Helmut Plinke fungiert aktuell als Lead Solutions Engineer für Talend (a Qlik Company). Sein Fokus liegt darauf, für Kunden die permanent wachsende Datenlandschaft zugänglicher und nutzbarer zu machen. Dazu befasst er sich umfassend mit allen Aspekten von Datenmanagement-Lösungen. In den letzten 20 Jahren erlebte Helmut die Weiterentwicklung der Softwarelösungen und der Methoden der Branche von Batch-ETL über Datenqualität, ELT und Data Governance bis hin zu aktuellen Trends wie Streaming Analytics, Self-Service Data Preparation und Data Mesh. Helmut ist Data-Health-Enthusiast und möchte die Fitness von Daten verbessern, um Unternehmen dabei zu helfen, ihre Daten effizienter zu nutzen und Wettbewerbsvorteile zu erzielen. Steffen Bischoff ist Senior Manager, Solutions Engineering für EMEA Central and Eastern Europe. In dieser Funktion leitet Steffen das Solutions-Engineer-Team und setzt sein technisches Wissen und seine Vertriebserfahrung ein, um professionelle Beratung und Support für alle Talend-Produkte zu bieten. Bevor er zu Talend kam, arbeitete Steffen als Pre-Sales-Berater sowie Server- und Netzwerkadministrator.