2020-Go-Time-Transcripts / Immediate mode GUIs_summary.txt
willtheorangeguy's picture
add all 2020 summaries
4cb3ced verified
• Immediate mode GUIs vs retained mode
• Definition of immediate mode: drawing entire visible UI state every frame
• Advantages of immediate mode: no duplication of state, efficient resource usage
• Comparison with retained mode: duplicated state in library and program
• Gio project as an example of implementing immediate mode GUIs
• Three major tasks of a user interface: drawing, layout, and handling events
• Layout: positioning elements relative to each other, automatic placement tools
• Encoding state in a browser
• Immediate mode vs retained mode design
• Event handling and callback management
• Animation implementation in immediate mode design
• Comparison with traditional timeline-based animation tooling
• Flexibility of user interface library design
• Gio is an immediate mode library for building user interfaces
• It uses a list of operations to describe the interface, rather than explicitly clearing and redrawing the screen
• Gio uses a diffing algorithm to only redraw the changes between frames
• It leverages the GPU for fast rendering
• The library is stateless, meaning the same input should always produce the same result
• React was trying to make immediate mode available to people working in the DOM, but still had an explicit representation of state
• Gio avoids some issues with state and rendering by dealing with low-level abstractions and handling events at a fundamental level
• The library is designed to be highly customizable, with source code that can be modified and used as-is
• Gio is a cross-platform UI library for building frontend apps.
• The structure of a typical Gio program involves creating value objects with layouts and child functions to draw widgets.
• Layouts are implicit, but the GTX (Go standard library's context object) provides constraints that widgets must follow to determine their size and position.
• Widgets can be placed using a tree-like structure, making it easy to create complex UIs.
• Gio supports WebAssembly, but performance is limited due to inefficiencies in the Go implementation of WebAssembly.
• Gio's portability comes from minimizing dependencies and providing a basic set of functionality that can be built upon with custom code.
• The library aims for maximal portability, making it possible to run on various platforms, including Linux, macOS, iOS, tvOS, Windows, and Android.
• WebAssembly port for Gio
• Integration issues with browser (e.g., inspecting elements)
• Use cases for Gio (e.g., visualizations, games, apps)
• Portability of Gio code and its potential applications
• Decentralized chat application example with Scatter.im
• Potential for creating polished, user-facing apps with Gio
• Android app using Gio being developed
• Egon Elbre's logo design for Gio
• Gio project discussed as vector-based and easy to use
• Mat Ryer suggests that open source projects with logos may have better success rates
• Elias Naur proposes two goals for the Gio project: releasing version 1.0 with a stable API, and securing funding to support the project full-time
• Unpopular opinions segment begins, where Elias Naur shares two opinions:
• Retained design in user interfaces has slowed down and wasted developer resources
• Everyone should own some Bitcoin, especially during economic crises
• Discussion of Bitcoin's reception at GopherCon
• Unpopular opinions and perspectives in software development
• Debate over whether frontend developers are "real" developers
• Conflation of different roles in software development (e.g. UI, UX, backend)
• Challenges of startups trying to hire for multiple disciplines with one person
• Discussion of team size and its impact on specialization vs. generalization in software development
• Explanation of how Go interacts with the GPU
• The benefits and limitations of using Direct3D versus OpenGL with Go
• Using Gio to abstract away platform-specific details and avoid cgo
• Building Go applications for different platforms (Windows, Android, macOS, iOS) using Gio
• Potential future projects, including building TV apps in Go for the Apple TV