Source: https://www.youtube.com/watch?v=ILsA4nyG7I0
We collect tons of free videos about programming from YouTube. These videos includes introductions, tutorials, languages of programming. It is a great place you start your journey of coding. Become a professional programmer, let’s start!
Saturday, December 30, 2017
[Brandon Rohrer] How Deep Neural Networks Work
You will set up a deep learning server and train your first image classification model (Convolutional Neural Network or CNN), which will learn to almost perfectly distinguish dogs from cats.
Source: https://www.youtube.com/watch?v=ILsA4nyG7I0
Source: https://www.youtube.com/watch?v=ILsA4nyG7I0
Wednesday, November 1, 2017
[CrashCourse] Machine Learning & Artificial Intelligence:
So we've talked a lot in this series about how computers fetch and display data, but how do they make decisions on this data? From spam filters and self-driving cars, to cutting edge medical diagnosis and real-time language translation, there has been an increasing need for our computers to learn from data and apply that knowledge to make predictions and decisions. This is the heart of machine learning which sits inside the more ambitious goal of artificial intelligence. We may be a long way from self-aware computers that think just like us, but with advancements in deep learning and artificial neural networks our computers are becoming more powerful than ever.
Friday, August 11, 2017
[OpenAI] Dendi vs. OpenAI at The International 2017
A bot which beats the world’s top professionals at 1v1 matches of Dota 2 under standard tournament rules.
Source: https://www.youtube.com/watch?v=wiOopO9jTZw
Saturday, July 29, 2017
[Hitesh Choudhary] What is machine learning and how to learn it ?
Machine learning is just to give trained data to a program and get better result for complex problems. It is very close to data mining.
Source: https://www.youtube.com/watch?v=63NTeLmDANo
Source: https://www.youtube.com/watch?v=63NTeLmDANo
Sunday, June 18, 2017
[Traversy Media] Deploy Laravel To Shared Hosting The Easy Way
In this video I will show you how to easily deploy a Laravel application to a shared hosting account with InMotion hosting. We will deploy without having to type in one command. Everything will be done via Cpanel and FTP.
Source: https://www.youtube.com/watch?v=6g8G3YQtQt4
Source: https://www.youtube.com/watch?v=6g8G3YQtQt4
Saturday, June 3, 2017
[Traversy Media] Laravel From Scratch [Part 12] - File Uploading & Finishing Up
In this video we will wrap up our application and add file uploading for blog posts. I hope you guys enjoyed this Laravel series. I will look into deployment soon!
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=AL8PCThJ9c4
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=AL8PCThJ9c4
[Traversy Media] Laravel From Scratch [Part 11] - Access Control
In this video we will implement access control so guests can not add posts and users can only edit and delete their own posts.
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=quiUytHXutM
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=quiUytHXutM
[Traversy Media] Laravel From Scratch [Part 10] - Model Relationships
In this video we will create a relationship between users and blog posts. We will add the users posts to their dashboard and make it so when they insert a post the user id also gets put in the table.
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=42l4nHl_aUM
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=42l4nHl_aUM
[Traversy Media] Laravel From Scratch [Part 9] - User Authentication
In this video we will add user authentication. We also need to add a user_id column in the posts table in the database. We will implement full login and register functionality.
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=ORus3-By4lk
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=ORus3-By4lk
[Traversy Media] Laravel From Scratch [Part 8] - Edit & Delete Data
In this video we will create the post edit form using Laravel Collective. We will also add the delete functionality and look at method spoofing.
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=PAP8IS_ak6w
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=PAP8IS_ak6w
[Traversy Media] Laravel From Scratch [Part 7] - Forms & Saving Data
In this video we will be creating a form using Laravel Collective to submit blog posts to the database.
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=-QapNzUE4V0
[Traversy Media] Laravel From Scratch [Part 6] - Fetching Data With Eloquent
In this video I will show you how to start working with Eloquent which is an ORM (Object Relational Mapper) and it makes working with the database models VERY easy
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=emyIlJPxZr4
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=emyIlJPxZr4
[Traversy Media] Laravel From Scratch [Part 5] - Models & Database Migrations
In this video we will start to work with models and database migrations. We will use MySQL as our data store. We will be creating a model and database table for our blog posts
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=neSHAWdE44c
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=neSHAWdE44c
[Traversy Media] Laravel From Scratch [Part 4] - Blade Templating & Compiling Assets
In this video I will talk about blade templating. We will look at passing in data, interpolation, adding logic to our views. I will also show you how to compile assets using Laravel Mix. We will compile Sass files to regular css.
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=bSG2YMqJJys
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=bSG2YMqJJys
[Traversy Media] Laravel From Scratch [Part 3] - Basic Routing & Controllers
In this video we will create some routes and a controller for our pages. Ill show you how to load a view from a controller function
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=sLFNVXY0APk
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=sLFNVXY0APk
[Traversy Media] Laravel From Scratch [Part 2] - Environment Setup & Laravel Installation
In this video we will setup our environment. We will be using XAMPP which gives us an Apache server with PHP and MySQL. We will install Laravel with Composer and we will be using the Git Bash terminal and integrate it with Visual Studio Code
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=H3uRXvwXz1o
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=H3uRXvwXz1o
Friday, June 2, 2017
[Traversy Media] Laravel From Scratch [Part 1] - Series Introduction
In this video I will talk about what Laravel is and also give you a demo of what we will be building. Laravel is the most popular open source PHP framework and uses the MVC (Model View Controller) design pattern.
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=EU7PRmCpx-0
CODE: Complete Code For This Series https://github.com/bradtraversy/lsapp
Source: https://www.youtube.com/watch?v=EU7PRmCpx-0
Wednesday, May 24, 2017
[Eduonix] Learn How To Create Basic Laravel Website
Eduonix brings this exclusive video for you in which you will learn how to create a basic Laravel website. This series contains different aspects of Laravel such as routes, views, controller models, migrations and so on. In the end, you will be able to create your own website using Laravel 5.
Source: https://www.youtube.com/watch?v=jnvu1GpylP0
Source: https://www.youtube.com/watch?v=jnvu1GpylP0
Monday, March 27, 2017
[MATLAB]
Explore deep learning fundamentals in this MATLAB® Tech Talk. You’ll learn why deep learning has become so popular, and walk through 3 concepts: what deep learning is, how it is used in the real world, and how you can get started.
Source: https://www.youtube.com/watch?v=3cSjsTKtN9M
Source: https://www.youtube.com/watch?v=3cSjsTKtN9M
Monday, January 16, 2017
[Lex Fridman] Introduction to Deep Learning and Self-Driving Cars
This is lecture 1 of course 6.S094: Deep Learning for Self-Driving Cars taught in Winter 2017.
Source: https://www.youtube.com/watch?v=1L0TKZQcUtA
Source: https://www.youtube.com/watch?v=1L0TKZQcUtA
Subscribe to:
Comments (Atom)