Oreilly - Ultimate Go Programming - 9780134757476
Oreilly - Ultimate Go Programming
by William Kennedy | Released May 2017 | ISBN: 0134757475


15+ Hours of Video InstructionUltimate Go Programming LiveLessons provides an intensive, comprehensive, and idiomatic view of the Go programming language. This course focuses on both the specification and implementation of the language, including topics ranging from language syntax, design, and guidelines to concurrency, testing, and profiling. This class is perfect for anyone who wants a jump-start in learning Go or wants a more thorough understanding of the language and its internals.In this video training, Bill Kennedy starts by providing a deep and intensive dive into Go's language syntax, idioms, implementation, and specification. Then Bill guides you through the essential things you need to know about designing software in Go. With that strong foundation, Bill then teaches the language mechanics behind Go's concurrency primitives and covers all the things you need to know to design concurrent software. Finally, Bill covers the tooling Go provides for testing, tracing, and profiling your programs.About the InstructorWilliam Kennedy is a managing partner at Ardan Studio in Miami, Florida, a mobile, web, and systems development company. He is also a coauthor of the book Go in Action, the author of the blog "GoingGo.Net," and a founding member of GoBridge, which is working to increase Go adoption through embracing diversity.Skill LevelIntermediateWhat You Will LearnLanguage mechanics and internalsData structures and mechanical sympathySoftware design and best practicesProject structure and designConcurrent software designTesting and benchmarkingTracing and profilingWho Should Take This CourseAny intermediate-level developer who has some experience with other programming languages and wants to learn Go. This video is perfect for anyone who wants a jump-start in learning Go or wants a more thorough understanding of the language, its internals and how to design software.Course RequirementsStudied CS in school or has a minimum of two years of experience programming full time professionally.Familiar with structural and object-oriented programming styles.Has worked with arrays, lists, queues and stacks.Understands processes, threads and synchronization at a high level.Operating SystemsHas worked with a command shellKnows how to maneuver around the file systemUnderstands what environment variables areAbout Pearson Video Training Pearson publishes expert-led video tutorials covering a wide selection of technology topics designed to teach you the skills you need to succeed. These professional and personal technology videos feature world-leading author instructors published by your trusted technology brands: Addison-Wesley, Cisco Press, Pearson IT Certification, Prentice Hall, Sams, and Que. Topics include: IT Certification, Programming, Web Development, Mobile Development, Home and Office Technologies, Business and Management, and more. Learn more about Pearson Video Training at http:// www.informit.com/video. Show and hide more
  1. Introduction
    • Ultimate Go Programming: Introduction 00:02:57
  2. Lesson 1: Design Guidelines
    • 1.0 Topics 00:00:38
    • 1.1 Prepare Your Mind 00:06:20
    • 1.2 Productivity versus Performance 00:06:49
    • 1.3 Correctness versus Performance 00:02:53
    • 1.4 Code Reviews 00:13:54
  3. Lesson 2: Language Syntax
    • 2.0 Topics 00:00:37
    • 2.1 Variables 00:16:35
    • 2.2 Struct Types 00:17:18
    • 2.3.1 Pointers, Part 1 00:12:51
    • 2.3.2 Pointers, Part 2 00:07:53
    • 2.3.3 Pointers, Part 3 00:10:40
    • 2.3.4 Pointers, Part 4 00:10:18
    • 2.3.5 Pointers, Part 5 00:11:04
    • 2.4 Constants 00:07:58
    • 2.5 Functions 00:17:03
  4. Lesson 3: Data Structures
    • 3.0 Topics 00:00:39
    • 3.1 Data-Oriented Design 00:28:49
    • 3.2 Arrays 00:13:38
    • 3.3.1 Slices, Part 1 00:12:45
    • 3.3.2 Slices, Part 2 00:20:07
    • 3.3.3 Slices, Part 3 00:15:43
    • 3.4 Maps 00:06:28
  5. Lesson 4: Decoupling
    • 4.0 Topics 00:00:40
    • 4.1.1 Methods, Part 1 00:19:06
    • 4.1.2 Methods, Part 2 00:11:09
    • 4.2.1 Interfaces, Part 1 00:14:40
    • 4.2.2 Interfaces, Part 2 00:18:36
    • 4.3 Embedding 00:08:43
    • 4.4 Exporting 00:10:51
  6. Lesson 5: Composition
    • 5.0 Topics 00:00:45
    • 5.1 Grouping Types 00:11:29
    • 5.2.1 Decoupling, Part 1 00:20:17
    • 5.2.2 Decoupling, Part 2 00:14:27
    • 5.3 Conversion and Assertions 00:10:24
    • 5.4 Interface Pollution 00:08:17
    • 5.5 Mocking 00:07:02
    • 5.6 Design Guidelines 00:06:34
  7. Lesson 6: Error Handling
    • 6.0 Topics 00:00:30
    • 6.1 Default Error Values 00:08:01
    • 6.2 Error Variables 00:03:09
    • 6.3 Type as Context 00:07:23
    • 6.4 Behavior as Context 00:06:23
    • 6.5 Find the Bug 00:04:18
    • 6.6 Wrapping Errors 00:11:25
  8. Lesson 7: Packaging
    • 7.0 Topics 00:00:41
    • 7.1 Language Mechanics 00:03:15
    • 7.2 Design Guidelines 00:13:29
    • 7.3 Package-Oriented Design 00:16:41
  9. Lesson 8: Goroutines
    • 8.0 Topics 00:00:36
    • 8.1 Go Scheduler Internals 00:25:15
    • 8.2 Language Mechanics 00:17:48
    • 8.3 Less Is More 00:07:34
  10. Lesson 9: Data Races
    • 9.0 Topics 00:00:45
    • 9.1 Race Detection 00:12:01
    • 9.2 Atomic Functions 00:05:57
    • 9.3 Mutexes 00:12:32
  11. Lesson 10: Channels
    • 10.0 Topics 00:00:42
    • 10.1.1 Language Mechanics, Part 1 00:20:30
    • 10.1.2 Language Mechanics, Part 2 00:21:19
    • 10.2 Unbuffer Examples 00:12:44
    • 10.3 Buffer Example 00:06:43
    • 10.4 Select Example 00:16:52
    • 10.5 Channel Design Guidelines 00:09:04
    • 10.6 Concurrent Software Design 00:06:30
  12. Lesson 11: Concurrency Patterns
    • 11.0 Topics 00:00:33
    • 11.1 Context 00:24:09
    • 11.2 Task 00:11:45
    • 11.3 Logger 00:14:00
  13. Lesson 12: Testing
    • 12.0 Topics 00:00:26
    • 12.1 Basic Testing 00:10:25
    • 12.2 Web Testing 00:11:24
    • 12.3 Example Tests 00:07:48
    • 12.4 Sub Tests 00:04:35
    • 12.5 Test Coverage 00:03:08
    • 12.6 Benchmarking 00:07:14
    • 12.7 Fuzzing 00:17:24
  14. Lesson 13: Profiling
    • 13.0 Topics 00:00:43
    • 13.1 Stack Traces 00:05:45
    • 13.2 Profiling Guidelines 00:12:36
    • 13.3 Memory Tracing 00:10:11
    • 13.4 Scheduler Tracing 00:11:04
    • 13.5 Memory and CPU Profiling 00:28:44
    • 13.6 pprof Profiling 00:10:28
    • 13.7 Blocking Profiling 00:13:09
    • 13.8 Real World Example 00:24:13
  15. Summary
    • Ultimate Go Programming: Summary 00:01:54
  16. Show and hide more

    Oreilly - Ultimate Go Programming

    9780134757476.ultimate.go.programming.OR.part01.rar

    9780134757476.ultimate.go.programming.OR.part02.rar

    9780134757476.ultimate.go.programming.OR.part03.rar

    9780134757476.ultimate.go.programming.OR.part04.rar

    9780134757476.ultimate.go.programming.OR.part05.rar

    9780134757476.ultimate.go.programming.OR.part06.rar

    9780134757476.ultimate.go.programming.OR.part07.rar

    9780134757476.ultimate.go.programming.OR.part08.rar

    9780134757476.ultimate.go.programming.OR.part09.rar


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss