LEARNING FOR LIFE

Get Yourself a Better Life! Free eLearning Download

  • Technical
    • Internet & Networking
    • Security & Hacking
    • AI | Artificial intelligence
    • OS & Server
    • WEB/HTML/CSS/AJAX
    • Database & SQL
    • Programming
    • Perl & PHP
    • .Net & Java
    • Mobile Development
    • C/C++/C#
    • Game Development
    • Unix & Linux
    • MAC OS X
    • Windows
    • OFFICE
    • Operation Systems
    • Hardware
  • Graphic & Media
    • Photography
    • 3D
    • Adobe Product Training
    • Art & Drawing & Painting
    • Film & Film Making
    • Game Designing
    • Music Training
    • Tutorials for designer
  • Business
    • Business & Investing
    • Writing & Affiliate
    • Marketing
    • Sales
    • Economics & Finances
    • Seo & Site Traffic
    • Stock & ForEX
  • Life Stype
    • Self Improvement | MP
    • Mindset | NLP
    • Fashion / Clothing / Grooming
    • Seduction
    • Fighting / Martial Arts
    • Food / Drink / Cooking
    • Health / Fitness / Massage
    • Languages / Accents
    • Magic / Illusions / Tricks
    • Psychology / Body Language
  • Engineering & Science
    • Cultures & History
    • Electrical & Architecture
    • Mathematics & Physics
    • Medical
  • Entertainment
    • Comic
    • Manga
    • Novel
    • Magazine
  • PC Game
    • Mac Game
    • Xbox Game
    • Play Station Game

Egghead.io – Understanding Javascripts Prototypal Inheritance-APoLLo

31/12/2020 Learning for Life Leave a Comment

Egghead.io – Understanding Javascripts Prototypal Inheritance-APoLLo
English | Size: 91.67 MB
Category: Tutorial

How do inherent prototypes work?
You might not think this question applies to you, especially if you come from a classical background. But if you use objects, functions, or arrays, you’re probably already using prototypes, and can benefit from learning the logic behind them. [Read more…]

Programming egghead.io, Inheritance, Javascripts, Prototypal, Understanding

Egghead.io – CSS Selectors In Depth

25/12/2020 Learning for Life Leave a Comment

Egghead.io – CSS Selectors In Depth-APoLLo
English | Size: 134.57 MB
Category: Developer

Cascading style sheet (CSS) selectors are the glue that connects styling to HTML content. Understanding how they work enables a developer to write more semantic markup and keeps styling modular for better project maintenance. [Read more…]

WEB/HTML/CSS/AJAX Apollo, CSS, egghead.io, In-Depth, Selectors

Egghead.io – Create A News App With Vue.Js and Nuxt

02/09/2020 Learning for Life Leave a Comment

Egghead.io – Create A News App With Vue.Js And Nuxt-APoLLo
English | Size:
Category:

This course walks you through the steps of creating a News web app using Vue.js and the Nuxt framework. You will learn how to create dynamic pages for each section of your application and load, store, display, filter, and style the data. Then end result will be a News app with multiple category pages, comments for each section, and user pages. [Read more…]

Programming App, Create, egghead.io, News, Vue JS

Egghead.io – Learn Http In Angular-APoLLo

31/08/2020 Learning for Life Leave a Comment

Egghead.io – Learn Http In Angular-APoLLo
English | Size: 227.03 MB
Category: Tutorial

Client-server communication is at the heart of any modern web application. In this course we will take a look at how to communicate with your backend API in Angular, specifically with the new Http module(@angular/common/http) introduced and used in Angular 4.3.1 and later. [Read more…]

WEB/HTML/CSS/AJAX Angular, Apollo, egghead.io, HTTP, Learn

Egghead.io – Introduction To The Python 3 Programming Language

30/08/2020 Learning for Life Leave a Comment

Egghead.io – Introduction To The Python 3 Programming Language-APoLLo
English | Size: 216.98 MB
Category: Tutorial

In Introduction to Python, we will start at the beginning: Installing python 3 and using virtual environments. With a working environment, we will learn how to manipulate strings and numbers, and gain working knowledge of data structures and flow control. We will build on that by introducing modules and classes and learn how to interact with our python applications using command line switches, console input and files. [Read more…]

Programming egghead.io, Introduction, Language, Programming, Python 3

Egghead.io – Develop React Applications With Mobx And Typescript

30/08/2020 Learning for Life Leave a Comment

Egghead.io – Develop React Applications With Mobx And Typescript-APoLLo
English | Size: 115.56 MB
Category: Tutorial

Developing logic-rich applications is a key skill to have.
The TypeScript-React combination helps you unlock that skill, and it’s a great developer experience in terms of writing understandable and refactorable HTML. But the default state management for React has a long way to go to feel simple and maintainable – and that’s where MobX makes your life so much easier. MobX keeps things simple without using complicated setups like provider and connect that provide way too little value for all the mental overhead. [Read more…]

Programming Applications, Develop, egghead.io, MobX, React

Egghead.io – Test React Components With Enzyme And Jest-APoLLo

28/08/2020 Learning for Life Leave a Comment

Egghead.io – Test React Components With Enzyme And Jest-APoLLo
English | Size: 273.93 MB
Category: Tutorial

In this course we are going to work through properly setting up Enzyme with Jest to test rendered components. This includes the nitty gritty of making our testing environment work with various versions of React. After we get our environment setup ready, we’ll work through the different ways we can render a component within our test pages. With a rendered component we can now test component methods and properties to assert that they are what is intended. [Read more…]

Programming Components, egghead.io, Enzyme, React, Test

Egghead.io – JSON Web Token JWT Authentication with Node js and Auth0

27/08/2020 Learning for Life Leave a Comment

Egghead.io – JSON Web Token JWT Authentication with Node js and Auth0-APoLLo
English | Size: 111.27 MB
Category: Tutorial

JSON Web Token (JWT) is a low overhead option for authentication that is easy to implement and scales with your application. There is no need to store session data as everything you need is stored in an encoded string sent in the JWT, significantly reducing database overhead for your servers. [Read more…]

WEB/HTML/CSS/AJAX egghead.io, JSON, JWT, token, Web

Egghead.io – Advanced Static Types In Typescript

27/08/2020 Learning for Life Leave a Comment

Egghead.io – Advanced Static Types In Typescript-APoLLo
English | Size: 193.36 MB
Category: Tutorial

This course explores the capabilities of TypeScript’s type system and shows how to use advanced static types in practice. For example, you’ll learn how to write safer code by using non-nullable types and being explicit about null and undefined in the type system. [Read more…]

Programming Advanced, egghead.io, Static, Types, TypeScript

Egghead.io – Quickly Transform Data With Transducers

26/08/2020 Learning for Life Leave a Comment

Egghead.io – Quickly Transform Data With Transducers-APoLLo
English | Size: 176.95 MB
Category: Tutorial

In this course, we will go through the concept of transducers and build them up from basic principles. We will go over the problems with regular composed transformations, and show how we end up with unnecessary data and intermediate collections. We go on to learn how we can use transducers for performance gains when operating on large data sets, as well as how they’re an excellent fit for processing other iterable data, like generators. Not just arrays. [Read more…]

Internet & Networking Data, egghead.io, Quickly, Transducers, Transform

  • 1
  • 2
  • 3
  • …
  • 6
  • Next Page »
  • AI Agents with Dify – Build No-Code AI Agents with Dify | Udemy
  • 100 Hours Web Development Bootcamp – Build 23 React Projects | Udemy
  • HAKIN9: IT Security Magazine (Volume 14; Issue No. 01-12)
  • HAKIN9: IT Security Magazine (Volume 13; Issue No. 01-12)
  • Become a Java Full Stack Developer with React & Spring Boot | Udemy

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

2019 2020 2021 2022 2023 2024 Advanced AWS Azure BBC Beginners BitBook BOOKWARE Certified Cisco Cloud Comic Complete Course Data Design eBook Fundamentals Guide Hybrid iLEARN Introduction JavaScript Learn Learning LinkedIn Linux Lynda Masterclass Microsoft Packt Pluralsight Programming Python Security Skillshare Training Udemy Using XQZT

Copyright © 2025 · Equilibre on Genesis Framework · WordPress · Log in