Filter By: Difficulty, Page Authenticate Your Users Laravel 5.2 From Scratch – Episode #13 LARAVEL • MAR 1ST, 2016 • BEGINNER • 6:29 ADD TO WATCHLIST Your Questions Answered Laravel 5.2 From Scratch – Episode #12 LARAVEL • FEB 26TH, 2016 • BEGINNER • 1:36 ADD TO WATCHLIST Validation and More Laravel 5.2 From Scratch …
Category: Root
Mar 17
laracast beginner
The Laravel Community LARAVEL • JAN 1ST, 2014 • BEGINNER • 4:31 ADD TO WATCHLIST File Uploads 101 LARAVEL • DEC 27TH, 2013 • BEGINNER • 14:20 ADD TO WATCHLIST Handle HTML Meta Tags LARAVEL • DEC 16TH, 2013 • BEGINNER • 4:25 ADD TO WATCHLIST Vagrant and Sequel Pro LARAVEL • DEC 30TH, 2013 …
Mar 16
Resources for Data Science Based Project Development
Projects mentioned on: http://sitestree.com/prediction-bayesian-regression-concepts-example-projects/ Insurance HealthCare Costs: https://github.com/techshot25/HealthCare Linear and Bayesian modeling in R: Predicting movie popularity https://towardsdatascience.com/linear-and-bayesian-modelling-in-r-predicting-movie-popularity-6c8ef0a44184 Bayesian-Stock-Price-Prediction https://github.com/lschlessinger1/Bayesian-Stock-Price-Prediction Bayesian Prediction: Well (Oil) Production https://github.com/jpgrana/bayesian-approach-predicting-well-production Binary Classification on Stock Market (S&P 500) using Naive Bayes and Logistic Regression https://github.com/NeilPrabhu/Stock-Prediction Naive Bayes Weather Prediction https://github.com/husnainfareed/simple-naive-bayes-weather-prediction/blob/master/bayes.py Regression Predict Fuel Efficiency: https://www.tensorflow.org/tutorials/keras/basic_regression Regression-Example-Predicting-House-Prices https://github.com/andersy005/deep-learning/blob/master/keras/04-A-Regression-Example-Predicting-House-Prices.ipynb Stock Price Prediction …
Mar 16
laracast series episode
Filter By: Difficulty, Type New Blade Directives What’s New in Laravel 5.5 – Episode #15 LARAVEL • AUG 17TH, 2017 • BEGINNER • 2:31 ADD TO WATCHLIST Route Helpers What’s New in Laravel 5.5 – Episode #16 LARAVEL • AUG 17TH, 2017 • BEGINNER • 2:08 ADD TO WATCHLIST The RefreshDatabase Trait What’s New in …
Mar 16
laracast series episode
Filter By: Difficulty, Type, Page Lists Learn Vue 2: Step By Step – Episode #3 JAVASCRIPT • NOV 28TH, 2016 • BEGINNER • 5:27 ADD TO WATCHLIST Setup Vue Devtools Learn Vue 2: Step By Step – Episode #2 JAVASCRIPT • NOV 28TH, 2016 • BEGINNER • 3:03 ADD TO WATCHLIST Basic Data Binding Learn …
Mar 16
laracast series episode
Filter By: Difficulty, Type, Page Authenticate Your Users Laravel 5.2 From Scratch – Episode #13 LARAVEL • MAR 1ST, 2016 • BEGINNER • 6:29 ADD TO WATCHLIST Your Questions Answered Laravel 5.2 From Scratch – Episode #12 LARAVEL • FEB 26TH, 2016 • BEGINNER • 1:36 ADD TO WATCHLIST Validation and More Laravel 5.2 From …
Mar 10
WordPress ( approx 5.6 ) sqls to find all big data, ml, ai, related category ids (term ids)
WordPress ( approx: 5.6 ) sqls to find all big data, ml, ai, related category ids (term ids) SELECT wt.term_id FROM `wp_terms` wt inner join wp_term_taxonomy wtt on (wtt.term_id = wt.term_id) and (wtt.taxonomy=’category’) WHERE (name like ‘%big data%’) or ((name like ‘%cloud%’)) or ((name like ‘%machine learning%’)) or ((name like ‘%security%’)) or ((name like ‘AI’)) …
Mar 10
Pretty Simple Java Code #SCJP
/** * The HelloWorldApp class implements an application that * simply prints “Hello World!” to standard output. */ class HelloWorldApp { public static void main(String[] args) { System.out.println(“Hello Worlld”); } } class ArrayDemo { public static void main(String[] args) { // declares an array of integers int[] anArray; int[] theArray; // allocates memory for 10 …
Mar 10
SCJP: Sun Certified Java Programmer: All that you need to know #SCJP
Introduction to Sun Certified Java Programmer Certification Course Java : SCJP: Important Resources JAVA: Some links: useful for exams like scjp/scja SCJP Essential Knowledge SCJP Practice Exams SCJP Training: Lesson 1: Develop code that declares classes (including abstract and all forms of nested classes), interfaces, and enums, and includes the appropriate use of package and …
Mar 10
SCJP: Topics and Resources : will be continued #SCJP
SCJP topics and related resources are provided. I have skimed through the resources at least one time. Garbage Collection Test area:Given a code example, recognize the point at which an object becomes eligible for garbage collection, determine what is and is not guaranteed by the garbage collection system, and recognize the behaviors of the Object.finalize() …