-
Урок 1. 00:02:53How to Get Help
-
Урок 2. 00:02:01Installing Elixir
-
Урок 3. 00:04:06Project Outline
-
Урок 4. 00:02:52Generating a Project
-
Урок 5. 00:06:05Elixir Modules and Methods
-
Урок 6. 00:03:23Lists and Strings
-
Урок 7. 00:09:13Object Oriented vs Functional Programming
-
Урок 8. 00:04:49Method Arguments
-
Урок 9. 00:05:55The Enum Module
-
Урок 10. 00:03:58Immutability in Elixir
-
Урок 11. 00:06:03Searching a List
-
Урок 12. 00:07:12Comprehensions Over Lists
-
Урок 13. 00:05:03Not Everything Works the First Time
-
Урок 14. 00:06:48Solving Nested Arrays
-
Урок 15. 00:08:35Importance of Index with Tuples
-
Урок 16. 00:10:44Pattern Matching
-
Урок 17. 00:05:16Elixir's Relationship with Erlang
-
Урок 18. 00:03:53Saving a Deck
-
Урок 19. 00:10:24Pattern Matching Continued
-
Урок 20. 00:14:15Pattern Matching in Case Statements
-
Урок 21. 00:04:24The Pipe Operator
-
Урок 22. 00:04:06The Pipe Operator Continued
-
Урок 23. 00:03:50Module Documentation
-
Урок 24. 00:03:35Writing and Generating Documentation
-
Урок 25. 00:06:19Creating Function Docs
-
Урок 26. 00:02:54Introduction to Testing
-
Урок 27. 00:03:38Amazingly Productive Doctests
-
Урок 28. 00:05:17Writing Effective Doctests
-
Урок 29. 00:06:53Case Tests
-
Урок 30. 00:04:08Introduction to Maps
-
Урок 31. 00:07:56Updating Values in a Map
-
Урок 32. 00:08:22Keyword Lists
-
Урок 33. 00:03:44Project Overview
-
Урок 34. 00:02:34Identicon Generation Process
-
Урок 35. 00:03:03Identicon Generation Process Continued
-
Урок 36. 00:03:21The Main Pipeline
-
Урок 37. 00:04:06Hashing a String
-
Урок 38. 00:05:47The Purpose of the Hex List
-
Урок 39. 00:06:47Modeling Data with Structs
-
Урок 40. 00:10:40Pattern Matching Structs
-
Урок 41. 00:10:09Updating Structs
-
Урок 42. 00:08:17Building the Grid
-
Урок 43. 00:05:10Mirroring a Row
-
Урок 44. 00:06:33Mapping with Custom Functions
-
Урок 45. 00:08:32Grid Structure
-
Урок 46. 00:09:35Giving an Identicon Shape
-
Урок 47. 00:07:42Planning Image Creation
-
Урок 48. 00:05:49Creating the Pixel Map
-
Урок 49. 00:09:47Drawing Rectangles
-
Урок 50. 00:04:11Phoenix Installation
-
Урок 51. 00:06:38Postgres Setup on OSX
-
Урок 52. 00:06:35What is Phoenix?
-
Урок 53. 00:07:18App Overview
-
Урок 54. 00:08:10Into Phoenix We Go
-
Урок 55. 00:03:40Server Side Templating
-
Урок 56. 00:09:31Templates vs Layouts
-
Урок 57. 00:07:38Phoenix's MVC Model
-
Урок 58. 00:09:48Exploring the Router and Controller
-
Урок 59. 00:10:01Views vs Templates
-
Урок 60. 00:08:29The Model Layer in Phoenix
-
Урок 61. 00:05:29Migration Files
-
Урок 62. 00:09:46A Game Plan for Creating Topics
-
Урок 63. 00:07:25Routing to the Topic Controller
-
Урок 64. 00:06:06Setting Up the Topic Controller
-
Урок 65. 00:09:17Code Reuse with Import, Alias, and Use
-
Урок 66. 00:08:10Phoenix's Code Sharing Model
-
Урок 67. 00:08:25Phoenix's Conn Struct
-
Урок 68. 00:04:54A Phoenix Approach to Forms
-
Урок 69. 00:03:55The Topic Model
-
Урок 70. 00:12:07Model Changesets and Validations
-
Урок 71. 00:08:28More on Changesets
-
Урок 72. 00:06:05Generating Changesets for the Form
-
Урок 73. 00:07:49New Topic Form
-
Урок 74. 00:10:03Phoenix Template Syntax
-
Урок 75. 00:10:42Handling Form Submissions
-
Урок 76. 00:08:16A Quick Review and Breather
-
Урок 77. 00:11:59Introduction to the Repo Module
-
Урок 78. 00:04:28Handling Failed Form Submissions
-
Урок 79. 00:06:35Styling with CSS in Phoenix
-
Урок 80. 00:06:44Breaking Restful Conventions Safely
-
Урок 81. 00:07:04Using the Repo Module for Queries
-
Урок 82. 00:06:49Building Lists in EEX Templates
-
Урок 83. 00:08:18Redirects in the Controller
-
Урок 84. 00:12:10Generating Anchors with Link Tags
-
Урок 85. 00:07:58Router Wildcards
-
Урок 86. 00:09:38Setting up the Edit Form
-
Урок 87. 00:06:49Defining the Update Route
-
Урок 88. 00:11:21Editing a Topic
-
Урок 89. 00:06:25Linking to the Edit Topic Form
-
Урок 90. 00:07:01The Resources Helper
-
Урок 91. 00:09:44Deleting a Topic
-
Урок 92. 00:06:59Wrapping up TopicController
-
Урок 93. 00:06:28OAuth Overview
-
Урок 94. 00:07:51OAuth Setup with Ueberauth
-
Урок 95. 00:09:53Creating a Github OAuth App
-
Урок 96. 00:11:58Defining OAuth Routes
-
Урок 97. 00:09:42Receiving User Info From Github
-
Урок 98. 00:07:41Users Migration
-
Урок 99. 00:07:01Digesting the OAuth Response
-
Урок 100. 00:08:03The User Changeset
-
Урок 101. 00:07:49Creating New Users
-
Урок 102. 00:07:09Our Auth Grand Plan
-
Урок 103. 00:07:30Handling OAuth Success
-
Урок 104. 00:12:45Introduction to Plugs
-
Урок 105. 00:11:45Using a Module Plug to Set the User
-
Урок 106. 00:09:03Implementing Module Plugs
-
Урок 107. 00:10:28Allowing Users to Signout
-
Урок 108. 00:05:49Restricting Access of Users
-
Урок 109. 00:13:05The Require Auth Plug
-
Урок 110. 00:04:24Controller Scoped Plugs
-
Урок 111. 00:06:57Associating Users with Topics
-
Урок 112. 00:02:28Altering Existing Tables
-
Урок 113. 00:09:08Playing Around with Associations
-
Урок 114. 00:08:36Using the Build Assoc Function
-
Урок 115. 00:03:04Finalizing the Association
-
Урок 116. 00:12:11Checking the Topics Owner
-
Урок 117. 00:04:18Introduction to Websockets
-
Урок 118. 00:06:41Showing Individual Topics
-
Урок 119. 00:03:52Making the Comments Migration
-
Урок 120. 00:03:46The Comments Model
-
Урок 121. 00:06:14Overview of Channels in Phoenix
-
Урок 122. 00:10:20Introducing the Comments Channel
-
Урок 123. 00:09:11Making Progress with Sockets
-
Урок 124. 00:07:29Quick Breather and Review
-
Урок 125. 00:07:30Publishing Messages
-
Урок 126. 00:05:08Figuring Out What Topics to Show
-
Урок 127. 00:09:08Refactoring to Determine Topic Id
-
Урок 128. 00:05:41Fetching Topics on Join
-
Урок 129. 00:02:45Debugging Topic Fetching
-
Урок 130. 00:05:54Building the Comment Form
-
Урок 131. 00:07:58Inserting Comments into the Database
-
Урок 132. 00:04:57Remaining Items with Sockets
-
Урок 133. 00:08:42Poison Encoder
-
Урок 134. 00:08:25Rendering a List of Comments
-
Урок 135. 00:06:45Broadcasting Updates
-
Урок 136. 00:06:16Updating the Client
-
Урок 137. 00:03:08The Socket Event Object
-
Урок 138. 00:07:53Authentication with Sockets
-
Урок 139. 00:04:51Transporting Tokens to the Server
-
Урок 140. 00:04:42Verifying the Current Socket User
-
Урок 141. 00:05:18Associating Comments with Users
-
Урок 142. 00:08:02Fetching Users with Comments
-
Урок 143. 00:03:57Rendering Associated Users
-
Урок 144. 00:03:42New in Phoenix 1.3
-
Урок 145. 00:03:26CLI Command Changes
-
Урок 146. 00:04:13Assets Folder Changes
-
Урок 147. 00:05:20Directory Structure Changes
-
Урок 148. 00:07:49Contexts
-
Урок 149. 00:12:31More on Contexts
- Категории
- Источники
- Все курсы
- Разделы
- Книги