22 December, 2020
Vue 3 Full Course for Beginners to Advanced - Building 10 Projects
Programing Coderfunda
December 22, 2020
Vue
No comments
Vue 3 Full Course for Beginners to Advanced - Building 10 Projects
Vue js tutorial full course for beginners to advanced. Building 10 projects in 10 hours
Using Vue 3 composition API - setup, teleport, reactivity, and ref Vue 3 Tutorial will start from very basics and teach you how to use TensorFlow and firebase with your vuejs in this full course of 10 hours by building 10 different apps
🌟 Technologies Covered 🌟
🔸 Tensorflow JS
🔸 Netlify
🔸 Vue 3
🔸 Vuex v4
🔸 Vue Router v4
🔸 Firebase Authentication
🔸 Firebase Real-Time Database
🔸 CrudCrud & reqres API
Vue3 full course tutorial starts from what is Vue to Deploying it on netlify
🌟 Course Contents 🌟
⏳ (00:00:00) Course Intro
⏳ (00:06:19) Understanding Vue vs React
⏳ (00:13:19) First Vue App
⏳ (00:45:13) Vue Devtool and Vetur Extension
⏳ (01:22:27) DC Heros List
⏳ (02:37:19) Calendar App
⏳ (03:15:12) Vue Router
⏳ (03:37:35) Markdown App
⏳ (03:54:56) Vue Virtual DOM
⏳ (04:07:01) Slider Carousel App
⏳ (04:37:12) Login Modal App
⏳ (05:00:00) Firebase Authentication
⏳ (05:48:07) Vue 3 Teleport
⏳ (05:51:30) Vue 3 composition API
⏳ (06:10:10) Calculator App
⏳ (06:54:31) Reusable Modal App
⏳ (07:28:24) Real Time Chat App
⏳ (08:00:21) Vuex 4
⏳ (08:19:05) Custom Vue js Middleware
⏳ (08:41:40) User Crud App
⏳ (09:37:02) Object Detection with Tensorflow
⏳ (10:15:31) Deploy On Netlify
Source code - https://github.com/bitfumes/vue3-for-beginners
Vue 3 Full Course for Beginners to Advanced - Building 10 Projects
Programing Coderfunda
December 22, 2020
Vue
No comments
Vue 3 Full Course for Beginners to Advanced - Building 10 Projects
Vue js tutorial full course for beginners to advanced. Building 10 projects in 10 hours
Using Vue 3 composition API - setup, teleport, reactivity, and ref Vue 3 Tutorial will start from very basics and teach you how to use TensorFlow and firebase with your vuejs in this full course of 10 hours by building 10 different apps
🌟 Technologies Covered 🌟
🔸 Tensorflow JS
🔸 Netlify
🔸 Vue 3
🔸 Vuex v4
🔸 Vue Router v4
🔸 Firebase Authentication
🔸 Firebase Real-Time Database
🔸 CrudCrud & reqres API
Vue3 full course tutorial starts from what is Vue to Deploying it on netlify
🌟 Course Contents 🌟
⏳ (00:00:00) Course Intro
⏳ (00:06:19) Understanding Vue vs React
⏳ (00:13:19) First Vue App
⏳ (00:45:13) Vue Devtool and Vetur Extension
⏳ (01:22:27) DC Heros List
⏳ (02:37:19) Calendar App
⏳ (03:15:12) Vue Router
⏳ (03:37:35) Markdown App
⏳ (03:54:56) Vue Virtual DOM
⏳ (04:07:01) Slider Carousel App
⏳ (04:37:12) Login Modal App
⏳ (05:00:00) Firebase Authentication
⏳ (05:48:07) Vue 3 Teleport
⏳ (05:51:30) Vue 3 composition API
⏳ (06:10:10) Calculator App
⏳ (06:54:31) Reusable Modal App
⏳ (07:28:24) Real Time Chat App
⏳ (08:00:21) Vuex 4
⏳ (08:19:05) Custom Vue js Middleware
⏳ (08:41:40) User Crud App
⏳ (09:37:02) Object Detection with Tensorflow
⏳ (10:15:31) Deploy On Netlify
Source code - https://github.com/bitfumes/vue3-for-beginners
21 December, 2020
Redirect HTTP to HTTPS via .htaccess Laravel
Programing Coderfunda
December 21, 2020
.htaccess, https, Laravel
No comments
Redirect HTTP to HTTPS via .htaccess Laravel
Redirect HTTP to HTTPS via .htaccess Laravel
Programing Coderfunda
December 21, 2020
.htaccess, https, Laravel
No comments
Redirect HTTP to HTTPS via .htaccess Laravel
Get the first element of an array in PHP
Programing Coderfunda
December 21, 2020
Array
No comments
Get the first element of an array in PHP
Get the first element of an array in PHP
Programing Coderfunda
December 21, 2020
Array
No comments
Get the first element of an array in PHP
Convert tree structure into flat array in php
Programing Coderfunda
December 21, 2020
No comments
1. Fetching data from database and converting it into tree structure my array looks like this. <?php array(1) { [6]=> array(1) { ["sub_id"]=> array(3) { [15]=> array(1) { ["sub_id"]=> array(0) { } } [16]=> array(1) { ["sub_id"]=> array(0) { } } [21]=> array(1) { ["sub_id"]=> array(0) { } } } } } ?>
But i want flat array of only keys array{6,15,16,21}
Answer : I have created a function for your output. Please try this. <?php $result = get_elements($array);
function get_elements($array) { $result = array(); foreach($array as $key => $row) { $result[] = $key; if(count($row['sub_id']) > 0) { $result = array_merge($result,get_elements($row['sub_id'])); } } return $result; } ?>
Convert tree structure into flat array in php
Programing Coderfunda
December 21, 2020
No comments
1. Fetching data from database and converting it into tree structure my array looks like this. <?php array(1) { [6]=> array(1) { ["sub_id"]=> array(3) { [15]=> array(1) { ["sub_id"]=> array(0) { } } [16]=> array(1) { ["sub_id"]=> array(0) { } } [21]=> array(1) { ["sub_id"]=> array(0) { } } } } } ?>
But i want flat array of only keys array{6,15,16,21}
Answer : I have created a function for your output. Please try this. <?php $result = get_elements($array);
function get_elements($array) { $result = array(); foreach($array as $key => $row) { $result[] = $key; if(count($row['sub_id']) > 0) { $result = array_merge($result,get_elements($row['sub_id'])); } } return $result; } ?>
20 December, 2020
How to Flatten a Multidimensional Array?
Programing Coderfunda
December 20, 2020
Array
No comments