This series is a goldmine for legacy angular. I am thankful for this extremely valuable information that has been delivered in this series.
@devdrivenai26 күн бұрын
Nobody, absolutely nobody on the whole Internet explains as clear as you, mate. Thank you, and thank you again!
@VishalSharma-rn7mt2 ай бұрын
Awesome
@VishalSharma-rn7mt2 ай бұрын
Awesome
@Gunjan-ho3bv2 ай бұрын
Really Appreciate it!!!
@CAPS_AMERICA4 ай бұрын
VERY GOOD! HOPE THIS GETS UPDATED TO LATEST VS2022
@rajeshmanicavasagam6 ай бұрын
Thank you so much. Great video.
@caiomazza74899 ай бұрын
what if i wanted to include an array made by a for loop
@ВікторЗеленін-д1ч10 ай бұрын
cool video)
@bojanasamardzioska304011 ай бұрын
thanks, I didn't know there were three solutions for data binding like the examples in the video.
@ewibowo74 Жыл бұрын
Great guru! Thank you.
@tiksG Жыл бұрын
Its great 👍
@pradipspeaks9395 Жыл бұрын
"emp as o" is much easier to comprehend. It's easy to reason and directly coming from data model view.
@pradipspeaks9395 Жыл бұрын
Very nice 💯 So clear explanation 🙏
@SounakSaha-nh5qm Жыл бұрын
Beautiful Video
@anshulvairagade1604 Жыл бұрын
you are so good at teaching, thanks a ton for this great tutorial
@den_3696 Жыл бұрын
Thanks for the guide. Saved me a lot of time.
@junaeidahmed6344 Жыл бұрын
ur sound quality is like...iam hearing from radio....
@souravshee4570 Жыл бұрын
Thanks a lot sir😊
@ayyappareddy4461 Жыл бұрын
Thank you sir well explained....
@balee9601 Жыл бұрын
Thank You, this helped me !!!!
@REKHAMARIMUTHU-f7z Жыл бұрын
"a": { "fieldA": "R" } "b": { c: [ { "fieldB": "test", "fieldC": "sample" } ] } } Can someone assist if I want to watch fieldA, fieldB and fieldC together, what can be used?
@ruchitawagh6579 Жыл бұрын
Why have you stopped creating new videos? Sir your videos are really helping us grow. I have been waiting for your videos since long time. Please keep posting your videos.
@christopherp1997 Жыл бұрын
Really awesome
@henrycovil2629 Жыл бұрын
The best Java Script video on KZbin!!!
@dragonstudio12122 жыл бұрын
i like your video
@NareshKushwaha-rp7rh2 жыл бұрын
can we use routing with our live server in vscode or we have to install xampp becasue it's not working
@mukhtiaralilander25872 жыл бұрын
What a teaching method and skills you have mashallah I am really inspired.
@saichaithvik2 жыл бұрын
Thanks .. Excellent
@sanakhan41532 жыл бұрын
Wonderful video thanks, well I have done NodeJS from KZbin, I want to learn more about Nodejs with Sql database, Advance understanding, Like how to connect 4 5 tables and show data in array of objects format, How to make nested query or subqueries like... I mean if wanna do table match with two table product and order Product ID with Order table by matching product ID data { customerId : 1: customerName : "abc", orders:[ { orderId : 1 orderName : "xyz" }, { orderId : 9 orderName : "pqr" } ] }, { customerId: 2: customerName : "pqr", orders:[ { orderId : 6 orderName : "xyz" }, { orderId : 2 orderName : "pqr" } ] }
@ram999urs32 жыл бұрын
Worst explanation screen Not coming properly
@amarasrilekha80912 жыл бұрын
very clear explanation
@srikanthj80852 жыл бұрын
we are not seeing new videos nowadays? or moved to another channel ?
@vedangkavathiya86522 жыл бұрын
Thank you sooooooooooooooooooooooooo much. You earned one more subscriber. You made my concept crystal clear 🙂
@vaishalimokashi5902 жыл бұрын
I am trying the example from 4 to 5 days. I have refeered many many souces. but it is not working
@dotanbeck1442 жыл бұрын
great explanation. thanks!
@dotanbeck1442 жыл бұрын
IS this true for angular 1 as well?? (especially the passing the functions?) for some reason I cannot do it. here is theexplanation: stackoverflow.com/questions/74093005/passing-function-from-parent-scope-to-child-directive-angular-1
@IssamZeinoun2 жыл бұрын
do you do consulting work?
@AliBaba-hn8tv2 жыл бұрын
I am six years late to your video but your teaching on this particular topic is still the best. Wish you good health and I hope you are okay. Thank you.
@cangorkemgunes2 жыл бұрын
I have a domain and hosting. How can i deploy it online? Is it suitable to deploy it online?
@matheusguifer2 жыл бұрын
please enable auto captions for the deaf and of hearing
@arasdestructores2 жыл бұрын
Man you are awesome, can't find any video of this kind 👌👌👌👍
@RafaelMendes-yw2jm2 жыл бұрын
So how can I resolve something when finishes an ui-view, lets say that I have an internal ui-view called parent that is the parent structure of my bootstraping, how can run something only after my ui-view="parent" ? I tried: resolve: { parent: [() => { console.log('parent resolved') }] }
@Satishkumar-rx7oy2 жыл бұрын
thanks you sir, making the easy explanation
@mugileeshwaranj.s84842 жыл бұрын
hi , can you pls do a video, how to upload and read excel file data and display in html table using angularJS without using any third party API or libs?
@joaorocha2782 жыл бұрын
excelent!!!!
@conan5012 жыл бұрын
This is super helpful. Thank you and have a blessed day.
@jeffersont46102 жыл бұрын
Spanish please :(
@natanaelcaetano87122 жыл бұрын
Hello. Is possible to do it with react tsx?
@emir77612 жыл бұрын
Clean explanation !!! Many thanks.
@todayonthebench2 жыл бұрын
I am curious about the point at 27:20 Do we really need to put the socket.on inside of the server.on function? Somehow server.on("connect" function(socket) {console.log("text"); socket.on("data" function(d) {console.log("%s", d); }); )}; supposedly output on every incoming package, despite the socket.on being inside another function that only executes its contents on new connections. So the whole part at 31:05 logically shouldn't happen. Since at 13:10 it is clearly shown that server.on("connect" function() {console.log("text"); )}; doesn't output with each new package sent unless it is a new connection. So nothing inside of server.on("connect" function() {code}); should execute more than once, and exclusively on a new connection, since that is when server.on("connection" triggers. This is all frankly counterintuitive and confusing, since where is the line between stuff that only executes when server.on("connection" is triggered, and when stuff is generally just running under the local variable space of server.on("connection" function() { , since these two are quite different things. I however consider this a major fault of Node.JS and not of the tutorial, the tutorial is honestly one of the better coding tutorials I have watched. Though, personally I would have server.on("connection" function(socket) export our socket object to a less local domain where our socket.on events is handled outside of server.on
@devdrivenaiАй бұрын
Agreed about the tutorial. Very rare to find so good, thorough tutorials. Shame the channel doesn't upload anymore. Hope they reconsider! About your confusion: as I understand it, the 'connection' event occurs on the server, whereas events like 'data' belong to the socket. But the socket (basically, the connection to client) is created upon the 'connection' event of the server. I think what might sound confusing is the 'on'. If you're familiar with some basic front end, think 'addEventListener' as a mental model (not exactly, just as a model for thinking about it), when you add the event listener, nothing happens, only once is added the element (in this case, the socket) listens for it and only then executes the handler function. Doing it per socket allows to have concurrent connections and each one with their own events and listeners. Think about 'on' like: "once server receives a connection, then create a socket instance and to that instance let's add listeners for events on that instance". It's important to notice the difference between the instances of the server ("servers") and the instances of the socket ("connections" of the/each server). Cheers for the interest and thoroughness! 👊