Don't accept the compromise between fast and beautiful: you can have it all. Phoenix creator Chris McCord, Elixir creator Jose Valim, and award-winning author Bruce Tate walk you through building an application that's fast and reliable. At every step, you'll learn from the Phoenix creators not just
2019-12-21 18:54:18 4.71MB Programming Phoenix
1
Voice user interfaces (VUIs) are becoming all the rage today. But how do you build one that people can actually converse with? Whether you’re designing a mobile app, a toy, or a device such as a home assistant, this practical book guides you through basic VUI design principles, helps you choose the right speech recognition engine, and shows you how to measure your VUI’s performance and improve upon it. Author Cathy Pearl also takes product managers, UX designers, and VUI designers into advanced design topics that will help make your VUI not just functional, but great. Understand key VUI design concepts, including command-and-control and conversational systems Decide if you should use an avatar or other visual representation with your VUI Explore speech recognition technology and its impact on your design Take your VUI above and beyond the basic exchange of information Learn practical ways to test your VUI application with users Monitor your app and learn how to quickly improve performance Get real-world examples of VUIs for home assistants, smartwatches, and car systems Table of Contents Chapter 1. Introduction Chapter 2. Basic Voice User Interface Design Principles Chapter 3. Personas, Avatars, Actors, and Video Games Chapter 4. Speech Recognition Technology Chapter 5. Advanced Voice User Interface Design Chapter 6. User Testing for Voice User Interfaces Chapter 7. Your Voice User Interface Is Finished! Now What? Chapter 8. Voice-Enabled Devices and Cars
2019-12-21 18:54:18 5.69MB Designing Voice User Interfaces
1
Create engaging 3D applications for the Web with HTML5 and the emerging web graphics standard, WebGL. With this book, you'll learn hands-on how to take your website's production value to a new level by incorporating 3D models and animations, mind-blowing visual effects, and advanced user interaction.
2019-12-21 18:52:25 10.75MB epub电子书
1
描述了2G、3G、4G的相关知识,详细讲解了移动通信的演进历史,其中包括wcdma、LTE的相关技术,新手可以快速入门!
2019-12-21 18:52:22 5.34MB 无线通信
1
本书是一本Unix内核源代码的阅读指南。作者结合UNIX V6已公开的相关文档,对其内核源码进行详细剖析,旨在让读者更深入地理解进程、中断、块I/O系统、文件系统、字符I/O系统、启动系统等操作系统的基本原理。
2019-12-21 18:52:14 6.27MB Unix
1
Bjarne Stroustrup, "The C++ Programming Language, 4th Edition"epub阅读格式版。 内带目录、标签和链接,整体质量非常高,阅读体验比PDF版要好。
2019-12-21 18:48:18 55.24MB C++ epub
1
本书所覆盖的话题代表了我所看到的程序员新手最容易陷入挣扎的领域。它们还代表了初级和中级编程中许多跨领域的话题。 但是,我应该强调,这并不是一本用于解决特定问题的算法或模式的“烹调书”。尽管后面的章节讨论了怎样使用广为人知的算法或模式,但这本书并不适合作为解决特定问题的参考书,所以读者不应该只把注意力集中在直接与自己当前所面临的问题相关的章节中。反之,读者应该从头研读全书,暂时只跳过那些由于缺乏预备知识而无法直接学习的内容。
2019-12-21 18:48:01 8.51MB c++
1
算法导论 epub电子书用于学习算法很好的资源,推荐给大家,希望对大家进入大公司有帮助
2019-10-23 13:42:47 757KB 算法导论 算法 算法导论epub
1
//读epub文件 Book book = null; try { InputStream inputStr = new FileInputStream(epubPath); book = epubReader.readEpub(inputStr); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } //设置epub文件内title. //本处修改了toc.ncx文件中的和content.opf中的标签内容. List titlesList = new ArrayList(); titlesList.add("test book"); book.getMetadata().setTitles(titlesList); //write epub EpubWriter epubWriter = new EpubWriter(); try { OutputStream ouput = new FileOutputStream("mynewbook.epub"); epubWriter.write(book, ouput); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); }
2015-06-25 00:00:00 13.06MB epub java jar 源程序
1