Foro Wanako1
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.

Foro Wanako1

Programas Gratuitos, Desatendidos y Mucho más!!!
 
PortalPortal  ÍndiceÍndice  BuscarBuscar  Últimas imágenesÚltimas imágenes  ConectarseConectarse  RegistrarseRegistrarse  
Buscar
 
 

Resultados por:
 
Rechercher Búsqueda avanzada
Los posteadores más activos del mes
tano1221
Complete Front-End Project Build a Game  (2020) Vote_lcapComplete Front-End Project Build a Game  (2020) Voting_barComplete Front-End Project Build a Game  (2020) Vote_rcap 
ПΣӨƧӨFƬ
Complete Front-End Project Build a Game  (2020) Vote_lcapComplete Front-End Project Build a Game  (2020) Voting_barComplete Front-End Project Build a Game  (2020) Vote_rcap 
ℛeℙ@¢ᴋ€r
Complete Front-End Project Build a Game  (2020) Vote_lcapComplete Front-End Project Build a Game  (2020) Voting_barComplete Front-End Project Build a Game  (2020) Vote_rcap 
missyou123
Complete Front-End Project Build a Game  (2020) Vote_lcapComplete Front-End Project Build a Game  (2020) Voting_barComplete Front-End Project Build a Game  (2020) Vote_rcap 
Engh3
Complete Front-End Project Build a Game  (2020) Vote_lcapComplete Front-End Project Build a Game  (2020) Voting_barComplete Front-End Project Build a Game  (2020) Vote_rcap 
大†Shinegumi†大
Complete Front-End Project Build a Game  (2020) Vote_lcapComplete Front-End Project Build a Game  (2020) Voting_barComplete Front-End Project Build a Game  (2020) Vote_rcap 
ronaldinho424
Complete Front-End Project Build a Game  (2020) Vote_lcapComplete Front-End Project Build a Game  (2020) Voting_barComplete Front-End Project Build a Game  (2020) Vote_rcap 
Julio 2024
LunMarMiérJueVieSábDom
1234567
891011121314
15161718192021
22232425262728
293031    
CalendarioCalendario
Últimos temas
» Blue-Cloner / Blue-Cloner Diamond 13.40.860
Complete Front-End Project Build a Game  (2020) EmptyHoy a las 7:40 am por missyou123

» Any Video Downloader Pro 8.8.18
Complete Front-End Project Build a Game  (2020) EmptyHoy a las 7:38 am por missyou123

» All Remixes 1.3.0
Complete Front-End Project Build a Game  (2020) EmptyHoy a las 7:37 am por missyou123

» AIMP 5.30.2554 Multilingual
Complete Front-End Project Build a Game  (2020) EmptyHoy a las 7:35 am por missyou123

» CCleaner 6.25.11131 Pro/Tech/Buss Retail+ CCEnhancer 4.5.7
Complete Front-End Project Build a Game  (2020) EmptyAyer a las 10:10 pm por tano1221

»  ScaleUP v1.4.3 [AE + PR] Win
Complete Front-End Project Build a Game  (2020) EmptyAyer a las 9:52 pm por ℛeℙ@¢ᴋ€r

» Topaz Gigapixel AI 7.2.3 (x64)
Complete Front-End Project Build a Game  (2020) EmptyAyer a las 9:39 pm por ℛeℙ@¢ᴋ€r

» Bandicam 2024 v7.1.2.2451 + Portable (x64)
Complete Front-End Project Build a Game  (2020) EmptyAyer a las 9:31 pm por ronaldinho424

» DirPrintOK 6.99
Complete Front-End Project Build a Game  (2020) EmptyAyer a las 7:58 pm por ПΣӨƧӨFƬ

Sondeo
Visita de Paises
free counters
Free counters

Comparte | 
 

 Complete Front-End Project Build a Game (2020)

Ver el tema anterior Ver el tema siguiente Ir abajo 
AutorMensaje
Invitado
Invitado



Complete Front-End Project Build a Game  (2020) Empty
MensajeTema: Complete Front-End Project Build a Game (2020)   Complete Front-End Project Build a Game  (2020) EmptyLun Jun 01, 2020 3:32 am

Complete Front-End Project Build a Game  (2020) 3fc8b30f892a8a321350201bdf0dae2e

Complete Front-End Project: Build a Game (2020)
WEBRip | English | MP4 | 1920 x 1080 | AVC ~589 kbps | 29.970 fps
A_VORBIS | 192 Kbps | 48.0 KHz | 2 channels | 3h 39mn | 1.31 GB
Genre: eLearning Video / Development, Programming
Learn to architect a full-featured front-end project from scratch while building a game with vanilla JavaScript, HTML, and CSS. Throughout the course, you'll learn tips to organize your front-end code, manage application state using state machines, and automate writing better code using tools like ESLint, Parcel, and Prettier. Have fun using professionally made art to build a digital pet game!

Published: May 26, 2020

Table of Contents
Introduction
Introduction
00:00:00 - 00:09:21
Introduction
Brian Holt gives an overview of the course content, reviews the course prerequisites, and covers the setup instructions.
The Project
00:09:22 - 00:20:08
The Project
Brian gives an overview of both the pet game and technological requirements, explains that the project is built in Vanilla JavaScript, and demonstrates what the final project looks like.
Frontend Infrastructure
Hello World
00:20:09 - 00:31:35
Hello World
Brian gives a tour of the project repository, demonstrates how to not index specific files by adding them to a gitignore file, and gives a review of the main git commands needed for this course.
Build Process
00:31:36 - 00:45:29
Build Process
Brian demonstrates how to install and use the webpack bundler to start a build process, including testing and dev scripts, and starts the first steps of the project.
Code Style
00:45:30 - 00:50:40
Code Style
Brian argues that to ensure code quality, it is best practice for teams to use the same linter rules. This allows developers to avoid code reviews that enforce arbitrary stylistic coding standards.
Code Formatting
00:50:41 - 00:56:47
Code Formatting
Brian introduces Prettier, a code formatter for JavaScript in the form of an npm package, and demonstrates how to install it.
Editor Setup
00:56:48 - 01:01:22
Editor Setup
Brian introduces editor setups that make code more readable, and creates an .editorconfig file that contains most of the editing rules the project follows. An editor file is useful because it enforces the same linting and formatting rules across different editors.
Linting
01:01:23 - 01:08:59
Linting
Brian demonstrates how to code an esltintrc.json file containing all of the linting rules that the project follows, and shows how to turn on and off specific linting rules.
Testing & Type Checking
01:09:00 - 01:10:54
Testing & Type Checking
Brian demonstrates how to set up the testing framework Jest, and informs students about what to do if they fall behind.
Architecture
Organizing Your Code
01:10:55 - 01:16:23
Organizing Your Code
Brian explains that large code bases are difficult to organize and navigate through, and encourages to organize code for deletability. By optimizing a code base for delitability, any dead code that is no longer used gets deleted immediately and maintains the code's readability.
Init the Project
01:16:24 - 01:31:09
Init the Project
Brian demonstrates how to start the project by live coding the index.html page, and by adding the project dependencies to the package.json.
Debugging ESLint
01:31:10 - 01:35:25
Debugging ESLint
Brian demonstrates how to check that ESLint is installed correctly on the VS Code editor.
State Machine
01:35:26 - 01:43:36
State Machine
Brian explains that a finite state machine occurs when the behavior of a system can only be at one specific state at a time, and gives an overview of the different finite states that the fox pet goes through during a game.
The Game
Building the UI: HTML
01:43:37 - 01:51:17
Building the UI: HTML
Brian starts live coding the digital pet game by first creating an HTML file and then using Emmet in VS Code as a shortcut to efficiently create HTML code, forming the main elements needed.
Building the UI: CSS
01:51:18 - 02:08:36
Building the UI: CSS
Brian live codes the CSS file of the digital pet game project, and demonstrates how to build out the stying in an organized and efficient way.
Unhiding Elements
02:08:37 - 02:14:30
Unhiding Elements
Brian demonstrates how to unhide an element and modify it, explains the steps to follow to modify CSS, and answers a question from the audience about how the game's animations work under the hood.
Interacting with the UI: Adding Buttons
02:14:31 - 02:25:09
Interacting with the UI: Adding Buttons
Brian live codes a buttons.js file that allows users to interact with the digital pet game, and builds functions and closures to select buttons.
Interacting with the UI: Creating Constants
02:25:10 - 02:30:26
Interacting with the UI: Creating Constants
Brian explains that it is best practice to separate the interface from the state handling in an application, and demonstrates how to separate the two.
States
Adding New States
02:30:27 - 02:41:56
Adding New States
Brian demonstrates how to create new states, and refactors the gameState.js file by adding new actions that the fox pet can execute once it is awake.
Adding Helper Functions
02:41:57 - 02:52:15
Adding Helper Functions
Brian live codes helper functions to be able to modify the DOM of the application, and adds conditionals to modify the state of the weather in the game.
Transitioning Between States
02:52:16 - 03:06:29
Transitioning Between States
Brian improves the game by adding day and night states to the game, and associating different actions that the fox pet can do during the two states.
Refactoring
03:06:30 - 03:13:55
Refactoring
Brian refactors the gameState.js file by adding logic statements to various states, and adds the different timers for the fox to switch from one state to the next: from awake tu hungry.
Building a New Action
03:13:56 - 03:25:25
Building a New Action
Brian adds a new functionality to the code of the fox pet game by reusing functions that are already available to allow the pet to do more, and adding another layer of difficulty to the game.
Resetting States
03:25:26 - 03:33:49
Resetting States
Brian finishes the application by adding code that resets all of the states, and allowing users to start a new game.
Wrapping Up
Wrapping Up
03:33:50 - 03:39:23
Wrapping Up
Brian wraps up the course, reviews the course material, and gives examples of challenges students can work on to enhance or change the game.

General
Complete name : 2. Building the UI- CSS.mp4
Format : WebM
Format version : Version 2
File size : 102 MiB
Duration : 17 min 18 s
Overall bit rate mode : Variable
Overall bit rate : 822 kb/s
Writing application : Lavf57.71.100
Writing library : Lavf57.71.100
FileExtension_Invalid : webm

Video
ID : 2
Format : VP8
Codec ID : V_VP8
Duration : 17 min 18 s
Bit rate : 589 kb/s
Width : 1 920 pixels
Height : 1 080 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 29.970 (30000/1001) FPS
Compression mode : Lossy
Bits/(Pixel*Frame) : 0.009
Stream size : 72.9 MiB (72%)
Language : English
Default : Yes
Forced : No

Audio
ID : 1
Format : Vorbis
Format settings, Floor : 1
Codec ID : A_VORBIS
Duration : 17 min 18 s
Bit rate mode : Variable
Bit rate : 192 kb/s
Channel(s) : 2 channels
Sampling rate : 48.0 kHz
Compression mode : Lossy
Delay relative to video : -3 ms
Stream size : 23.8 MiB (23%)
Writing application : Lavc57.89.100
Writing library :
Language : English
Default : Yes
Forced : No

Screenshots

Complete Front-End Project Build a Game  (2020) 716dbacd36084603913aa8a6aaf0671e

Complete Front-End Project Build a Game  (2020) 67951b21d98d51e88a4afb3a004de0c9

Complete Front-End Project Build a Game  (2020) 69be57dd60ab7b4e4337c332d0e06656

Download link:
Citación :
rapidgator_net:
https://rapidgator.net/file/2746f9bb4e381ebad95917dfb1a71b38/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part01.rar.html
https://rapidgator.net/file/70cb76b2572833d3135eed100d736efb/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part02.rar.html
https://rapidgator.net/file/e317f572f9027c544406f542773c6057/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part03.rar.html
https://rapidgator.net/file/0fad098bad929334beb68c539eba4cdf/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part04.rar.html
https://rapidgator.net/file/7cfbc1702f283c12d696169c45169d7f/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part05.rar.html
https://rapidgator.net/file/02ba8f5a861290f69786a54714bc88b0/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part06.rar.html
https://rapidgator.net/file/a5794dfed4c46984fc926392a19788b5/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part07.rar.html
https://rapidgator.net/file/54a47ccdf6178e907921233542a035fb/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part08.rar.html
https://rapidgator.net/file/6be121ed6d1feac379d0b0809af9d0f9/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part09.rar.html

nitroflare_com:
https://nitroflare.com/view/2926944EE2F4EDF/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part01.rar
https://nitroflare.com/view/20F9F18ACF91578/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part02.rar
https://nitroflare.com/view/734EC0C61935F3A/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part03.rar
https://nitroflare.com/view/71FECE016C1D455/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part04.rar
https://nitroflare.com/view/9F0CEA41D321D90/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part05.rar
https://nitroflare.com/view/E616A69FC2DC96B/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part06.rar
https://nitroflare.com/view/3B6DA3D520CE89C/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part07.rar
https://nitroflare.com/view/6C2D609448E919B/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part08.rar
https://nitroflare.com/view/88007D56048BD5D/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part09.rar

uploadgig_com:
http://uploadgig.com/file/download/B1a7C85d9aC0716d/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part01.rar
http://uploadgig.com/file/download/685D68cfb77ec59e/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part02.rar
http://uploadgig.com/file/download/feab04820CF5CEe9/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part03.rar
http://uploadgig.com/file/download/B09a90f4453f6Ab4/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part04.rar
http://uploadgig.com/file/download/5cF0eBa313F310e9/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part05.rar
http://uploadgig.com/file/download/706690Cb6e33A238/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part06.rar
http://uploadgig.com/file/download/2624468CA45e6D0e/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part07.rar
http://uploadgig.com/file/download/7685d395DD4E14aD/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part08.rar
http://uploadgig.com/file/download/Fd6bce95A64F87fA/uc2f6.Complete.FrontEnd.Project.Build.a.Game.2020.part09.rar

Links are Interchangeable - No Password - Single Extraction
Volver arriba Ir abajo
 

Complete Front-End Project Build a Game (2020)

Ver el tema anterior Ver el tema siguiente Volver arriba 
Página 1 de 1.

 Temas similares

-
» Complete Unity 2D Game Development from Scratch 2020
» Weekend Project : Build a Blackjack Game using Python 3
» Learn Javascript - Create Platformer Game real project using Javascript 2020
» BJJ Fanatics - Building The Greatest Gi Game: Front Attacks
» Primavera P6 Complete Course of Project Planning 2020

Permisos de este foro:No puedes responder a temas en este foro.
Foro Wanako1 :: Programas o Aplicaciónes :: Ayuda, Tutoriales-