The document summarizes best practices for conducting educational code reviews. It discusses that code reviews ensure quality, sync the team, and allow people to learn. It then provides tips for how to conduct effective code reviews, such as complimenting, empathizing with, guiding, explaining to, and connecting with the person being reviewed. The document emphasizes that reviewing code takes patience, practice, and passion. It concludes by thanking the audience.
Learning: Being as a Homeschooled StudentWey-Han Liaw
?
Adrian Liaw is an 11th grade homeschooler from New Taipei, Taiwan who is also a software developer. He shares about his self-learning experiences, noting that his experiences do not represent all homeschoolers. He learns through peer and community interactions, using a variety of learning resources like textbooks, videos, and MOOCs. For execution, he plans and does his own curriculum with less regularity than a traditional school, and measures his learning through public projects, online quizzes, and feedback from others. He emphasizes DIY self-learning.
Jupyter Kernel: How to Speak in Another LanguageWey-Han Liaw
?
The document discusses how to create a Jupyter kernel. It explains that kernels use ZeroMQ sockets to communicate with clients via the Jupyter messaging protocol. Native kernels are implemented from scratch while wrapper kernels are built from an existing interpreter using Python. The document provides examples of existing kernels like IJulia and the Python ipykernel. It also outlines the steps to build a wrapper kernel and mentions several other kernel types.
This document contains information about Adrian Liaw including his online usernames, interests in Scratch, Udacity, Python and obtaining a Data Analyst Nanodegree. It also lists several Python MOOCs through Udacity, Coursera and other online sources. Recommendations are made for learning Python through online courses, the Taipei.py community and websites for teaching kids to code like code.org.
Meteor Taipei 2016 January talk -- MantraWey-Han Liaw
?
Mantra is an application architecture specification and set of libraries for building Meteor apps. It is based on Flux principles and includes core components like React UI components, action handlers for business logic, state managers for local and remote data, and container components to connect UI, actions and states. While Mantra provides a good architecture, the author believes it could be improved by being tailored more specifically for Meteor, enhancing unit testing support, and developing a code generation tool or opinionated framework to implement the pattern.
The document discusses the key components that make up the Meteor stack, including Blaze, Tracker, DDP, and Mongo. It notes that while Meteor uses these components by default, the framework is customizable - developers can replace the UI library, database, and DDP client/server with alternatives. The standard Meteor application architecture is then outlined, explaining how each component fits together and interacts to provide reactivity on the client.
This document discusses asynchronous programming in Python. It introduces the concepts of asynchronous I/O, event loops, and callbacks. Traditional approaches to asynchronous programming using callbacks are messy and hard to organize. Generators and coroutines provide a cleaner solution through yield and await keywords. The asyncio module implements asynchronous I/O with coroutines and provides an event loop to execute coroutine functions concurrently.
Implementation of Rubik's Cube Formula in PyCuberWey-Han Liaw
?
The document discusses PyCuber, a Python package for solving Rubik's Cubes. It introduces Rubik's Cube and its creator Erno Rubik. It then describes how PyCuber implements classes like Step and Formula to represent cube positions and solving algorithms. Various methods are included, like optimizing formulas and randomizing or mirroring solutions. Some interesting Rubik's Cube facts and records are also mentioned.
2025 NVIDIA GTC: Crack the AI Black Box: Practical Techniques for Explainable AIDavid vonThenen
?
2025 NVIDIA GTC: Crack the AI Black Box: Practical Techniques for Explainable AI
Artificial Intelligence often operates in ways that are challenging to interpret, creating a gap in trust and transparency. Explainable AI (XAI) bridges this gap by providing strategies to demystify complex models, enabling stakeholders to understand how decisions are made. We'll explore foundational XAI concepts and provide practical methods to bring interpretability into developing and deploying AI systems, ensuring better decision-making and accountability. You'll learn actionable techniques for explaining AI behavior, from feature attributions and decision-path analyses to scenario-based insights. Through a live demonstration, you'll see how to apply these methods to real-world problems, enabling you to diagnose, debug, and optimize your models effectively. In the end, you'll have a clear roadmap for integrating XAI practices into your workflows to build trust and confidence in AI-powered solutions.
Key Takeaways:
Understand how AI systems make decisions, critical for trust and adoption as they grow more complex
In 2025, explainable AI (XAI) is set to be a hot topic as industries increasingly demand transparency from AI systems. You'll gain practical techniques to make AI transparent and interpretable, breaking down decision paths and uncovering key insights into model behavior
Featuring live demos of explainability methods applied to real-world scenarios, you'll leave with actionable strategies to debug, optimize, and build confidence in your AI solutions
The document summarizes best practices for conducting educational code reviews. It discusses that code reviews ensure quality, sync the team, and allow people to learn. It then provides tips for how to conduct effective code reviews, such as complimenting, empathizing with, guiding, explaining to, and connecting with the person being reviewed. The document emphasizes that reviewing code takes patience, practice, and passion. It concludes by thanking the audience.
Learning: Being as a Homeschooled StudentWey-Han Liaw
?
Adrian Liaw is an 11th grade homeschooler from New Taipei, Taiwan who is also a software developer. He shares about his self-learning experiences, noting that his experiences do not represent all homeschoolers. He learns through peer and community interactions, using a variety of learning resources like textbooks, videos, and MOOCs. For execution, he plans and does his own curriculum with less regularity than a traditional school, and measures his learning through public projects, online quizzes, and feedback from others. He emphasizes DIY self-learning.
Jupyter Kernel: How to Speak in Another LanguageWey-Han Liaw
?
The document discusses how to create a Jupyter kernel. It explains that kernels use ZeroMQ sockets to communicate with clients via the Jupyter messaging protocol. Native kernels are implemented from scratch while wrapper kernels are built from an existing interpreter using Python. The document provides examples of existing kernels like IJulia and the Python ipykernel. It also outlines the steps to build a wrapper kernel and mentions several other kernel types.
This document contains information about Adrian Liaw including his online usernames, interests in Scratch, Udacity, Python and obtaining a Data Analyst Nanodegree. It also lists several Python MOOCs through Udacity, Coursera and other online sources. Recommendations are made for learning Python through online courses, the Taipei.py community and websites for teaching kids to code like code.org.
Meteor Taipei 2016 January talk -- MantraWey-Han Liaw
?
Mantra is an application architecture specification and set of libraries for building Meteor apps. It is based on Flux principles and includes core components like React UI components, action handlers for business logic, state managers for local and remote data, and container components to connect UI, actions and states. While Mantra provides a good architecture, the author believes it could be improved by being tailored more specifically for Meteor, enhancing unit testing support, and developing a code generation tool or opinionated framework to implement the pattern.
The document discusses the key components that make up the Meteor stack, including Blaze, Tracker, DDP, and Mongo. It notes that while Meteor uses these components by default, the framework is customizable - developers can replace the UI library, database, and DDP client/server with alternatives. The standard Meteor application architecture is then outlined, explaining how each component fits together and interacts to provide reactivity on the client.
This document discusses asynchronous programming in Python. It introduces the concepts of asynchronous I/O, event loops, and callbacks. Traditional approaches to asynchronous programming using callbacks are messy and hard to organize. Generators and coroutines provide a cleaner solution through yield and await keywords. The asyncio module implements asynchronous I/O with coroutines and provides an event loop to execute coroutine functions concurrently.
Implementation of Rubik's Cube Formula in PyCuberWey-Han Liaw
?
The document discusses PyCuber, a Python package for solving Rubik's Cubes. It introduces Rubik's Cube and its creator Erno Rubik. It then describes how PyCuber implements classes like Step and Formula to represent cube positions and solving algorithms. Various methods are included, like optimizing formulas and randomizing or mirroring solutions. Some interesting Rubik's Cube facts and records are also mentioned.
2025 NVIDIA GTC: Crack the AI Black Box: Practical Techniques for Explainable AIDavid vonThenen
?
2025 NVIDIA GTC: Crack the AI Black Box: Practical Techniques for Explainable AI
Artificial Intelligence often operates in ways that are challenging to interpret, creating a gap in trust and transparency. Explainable AI (XAI) bridges this gap by providing strategies to demystify complex models, enabling stakeholders to understand how decisions are made. We'll explore foundational XAI concepts and provide practical methods to bring interpretability into developing and deploying AI systems, ensuring better decision-making and accountability. You'll learn actionable techniques for explaining AI behavior, from feature attributions and decision-path analyses to scenario-based insights. Through a live demonstration, you'll see how to apply these methods to real-world problems, enabling you to diagnose, debug, and optimize your models effectively. In the end, you'll have a clear roadmap for integrating XAI practices into your workflows to build trust and confidence in AI-powered solutions.
Key Takeaways:
Understand how AI systems make decisions, critical for trust and adoption as they grow more complex
In 2025, explainable AI (XAI) is set to be a hot topic as industries increasingly demand transparency from AI systems. You'll gain practical techniques to make AI transparent and interpretable, breaking down decision paths and uncovering key insights into model behavior
Featuring live demos of explainability methods applied to real-world scenarios, you'll leave with actionable strategies to debug, optimize, and build confidence in your AI solutions
2025 DeveloperWeek - The Sound of Innovation: Why Voice Cloning Will Redefine...David vonThenen
?
2025 DeveloperWeek - The Sound of Innovation: Why Voice Cloning Will Redefine Human-Computer Interaction
Voice cloning is rapidly emerging as a transformative technology, redefining how we interact with AI and bridging the gap between machines and humans through personalized experiences. This session delves into the conceptual underpinnings of voice cloning, exploring its potential to revolutionize applications across personal branding, customer engagement, and human-computer interaction.
This session explores the growing importance of voice cloning in the broader context of AI-driven technologies. By addressing real-world use cases, this talk will highlight why voice cloning is not just a technological novelty but a pivotal advancement that will shape the future of AI applications. Through an exploration of the adjustments and refinements that define a truly convincing synthetic voice, we’ll examine the delicate balance between precision and authenticity. Join us to explore why the human voice is a powerful tool for innovation and how voice cloning can make technology more personal and relatable.
Cantonmade 2025 Hotel Supplier Catalog: Technical Specs for Engineers & Integ...RayChan91
?
Explore Cantonmade's 2025 Hotel Supplier Catalog featuring technical specifications for AV systems, smart room controls, and energy-efficient solutions. Designed for engineers and system integrators, this handbook details commercial-grade products, communication protocols, and scalable designs for hospitality infrastructure.