SIMPL Academy
SIMPL Academy
  • Видео 257
  • Просмотров 167 348

Видео

Tip #1 - Generate Tic Tac Toe Layout - GitHub Copilot
Просмотров 563 месяца назад
Quickly generate the grid layout for tic tac toe game in HTML using GitHub Copilot.
Learn Coding Faster using GitHub Copilot
Просмотров 1284 месяца назад
This video introduces you to get started to learn coding using artificial intelligence.
Tip #1 - GitHub Copilot AI - Fast Movie Database Creation
Просмотров 824 месяца назад
In this video, you will see how quickly a MySQL database for currently running movies can be created within few minutes using GitHub Copilot AI. Artificial Intelligence helps to develop software faster, which is what is demonstrated in this video.
CHANDRAYAAN 3 - Full Journey Details - Short Version
Просмотров 415Год назад
CHANDRAYAAN 3 - Full Journey Details
Chandrayaan 3 - Full Mission
Просмотров 1,4 тыс.Год назад
Chandrayaan 3 - Full Journey Details
HTML - Link - Exercise
Просмотров 67Год назад
The exercise for Link is provided in this video. Link to resources.zip: github.com/simplacademy/html-learn/blob/master/resources.zip
HTML - External Link - Explained
Просмотров 50Год назад
This video explains how an external link works. It also explains how the link can be opened in a separate browser tab window.
HTML - External Link - Coding
Просмотров 31Год назад
In this video, it will be demonstrated how an external link can be implemented that points to a page in internet.
HTML - External Link
Просмотров 18Год назад
This video explains how a link to a page in internet should work.
HTML - Attribute
Просмотров 43Год назад
HTML Attributes are explained in this video.
HTML - Link - Explained
Просмотров 24Год назад
HTML - Link - Explained
HTML - Link - Coding
Просмотров 35Год назад
HTML - Link - Coding
HTML - Link
Просмотров 16Год назад
HTML - Link
HTML - Comment
Просмотров 22Год назад
HTML - Comment
HTML - Paragraph - Exercise
Просмотров 29Год назад
HTML - Paragraph - Exercise
HTML - Paragraph - Include News Content
Просмотров 39Год назад
HTML - Paragraph - Include News Content
HTML - Paragraph - Include Tags
Просмотров 33Год назад
HTML - Paragraph - Include Tags
HTML - Paragraph - Get News Text File
Просмотров 88Год назад
HTML - Paragraph - Get News Text File
HTML - Paragraph
Просмотров 12Год назад
HTML - Paragraph
HTML - Title - Exercises
Просмотров 17Год назад
HTML - Title - Exercises
HTML - Title - Explained
Просмотров 11Год назад
HTML - Title - Explained
HTML - Title - Coding
Просмотров 34Год назад
HTML - Title - Coding
HTML - Title
Просмотров 18Год назад
HTML - Title
HTML - Heading Exercises
Просмотров 72Год назад
HTML - Heading Exercises
HTML - Download Resource ZIP file
Просмотров 766Год назад
HTML - Download Resource ZIP file
HTML - Hello World - HTML in Internet
Просмотров 10Год назад
HTML - Hello World - HTML in Internet
HTML - Hello World - What is HTML?
Просмотров 18Год назад
HTML - Hello World - What is HTML?
HTML - Hello World - Code Walkthrough
Просмотров 69Год назад
HTML - Hello World - Code Walkthrough
HTML - Hello World - Launch HTML using Live Preview
Просмотров 21Год назад
HTML - Hello World - Launch HTML using Live Preview

Комментарии

  • @adithaabeynayaka7867
    @adithaabeynayaka7867 6 дней назад

    This is very underrated channel...

    • @simplacademy
      @simplacademy 5 дней назад

      Thanks for the feedback. Anything good shines only after marketing. I'm working towards the marketing part. Hope I succeed.

  • @rgosala
    @rgosala 11 дней назад

    Thanks for such a neat explanation and mainly presentation. There is a lot of effort you did in your series. Eventually, your video's will become popular. For your effort Thanks is small word.

    • @simplacademy
      @simplacademy 11 дней назад

      Thanks for the high words. Glad to know it helped.

  • @yurikhazanov1235
    @yurikhazanov1235 24 дня назад

    I really liked your explanation, the diagram provides a visual explanation. bravo for the effort !

  • @usamabaig8591
    @usamabaig8591 27 дней назад

    Amazing my problem solved

  • @ravinamohite9031
    @ravinamohite9031 Месяц назад

    easy to understand for begginers☺

  • @nursingwithahmed
    @nursingwithahmed Месяц назад

    thanks alot

  • @raghuram869
    @raghuram869 2 месяца назад

    The Level of Explanation is very very good. Wonderful Work 🤩🔥

    • @simplacademy
      @simplacademy 2 месяца назад

      Thanks for the feedback. Glad to know it helped.

  • @sotosayable
    @sotosayable 2 месяца назад

    Really nice video. Please I have a question. Say I have a const of products: Name, price, and available (available is a booleen) meaning I want the products to have some products that are not available. How do I represent this in cart such that the products with true in available is represented by a text 'not available, after we click add to cart?

    • @simplacademy
      @simplacademy 2 месяца назад

      Thanks for the feedback. The list of the products in the cart must be implemented like this. Here 'products' is the property in the component class. <tr *ngFor="let product of products"> <td>{{product.name}}</td> <td>{{product.price}}</td> <td *ngIf="!product.available"> Not available </td> </tr>

    • @sotosayable
      @sotosayable 2 месяца назад

      @@simplacademy thank you for the reply, unfortunately it does not work. I will try to explain it again. So I have a list of products that are displayed in the home page cart with the buttons add to cart and View details. I want that when in the list of products, the item available is a boolean. So if the available product has a boolean of false, then the 2 buttons on the homepage of the product shoud not be shown, they should be replaced simply by a text 'Not available'. Will appreciate your help. Thanks.

    • @simplacademy
      @simplacademy 2 месяца назад

      This is how the 'Not Available' text, 'Add to Cart' and 'View details' button can be displayed. I have not included the products *ngFor loop, hope you understand that context. I have provided only the code on how the 'Not Available' text and buttons can be displayed. <span *ngIf="!product.available">Not Available</span> <button *ngIf="product.available">Add to Cart</button> <button>View details</button>

    • @sotosayable
      @sotosayable 2 месяца назад

      @@simplacademy wow! it works. Thanks a millionnnnnnnnn! Sorry for one last question. The cart now has all the descriptions and prices and qtty and availabilty. Is it possible to remove all those items in the carts that have the false and let them remain in the cart that says true? so just the photo of the product and the not avialable text should remain in the false .

    • @simplacademy
      @simplacademy 2 месяца назад

      Not sure if you are referring a product listing screen or cart screen. But everything falls to the inclusion of *ngIf directive in the right element, which you want to show or hide. Based on whatever you have completed, I hope you will be able to figure it out yourself.

  • @shubhamsingh4861
    @shubhamsingh4861 3 месяца назад

    can u provide ur git link

    • @simplacademy
      @simplacademy 3 месяца назад

      github.com/simplacademy/reactive

  • @stormtrooperrush9591
    @stormtrooperrush9591 4 месяца назад

    very helpful thank you so much!

  • @abhishekrautela4384
    @abhishekrautela4384 4 месяца назад

    Not working in my laptop

    • @simplacademy
      @simplacademy 4 месяца назад

      Try pressing Ctrl+Space after typing the emmet abbreviation.

  • @DanielJoshua-ck3ui
    @DanielJoshua-ck3ui 4 месяца назад

    God bless you bro

  • @tatunga10
    @tatunga10 5 месяцев назад

    This is exactly what I wanted, thank you so much!!!

    • @simplacademy
      @simplacademy 5 месяцев назад

      Thanks for the feedback. Glad to know it helped.

  • @MM-ts9jy
    @MM-ts9jy 6 месяцев назад

    I love how in-depth your videos are, not many angular tutorials explain how it works under the hood, and your introductory videos do a really good job at it.

    • @simplacademy
      @simplacademy 6 месяцев назад

      Thanks for the feedback.

  • @staffordnelson9053
    @staffordnelson9053 7 месяцев назад

    Thank you! well explained. Thank you again

    • @simplacademy
      @simplacademy 7 месяцев назад

      Thanks for the feedback.

  • @RahulSingh-ff2bi
    @RahulSingh-ff2bi 7 месяцев назад

    Still not working

  • @elberghaswe2761
    @elberghaswe2761 7 месяцев назад

    Nice video thanks for helping me!

    • @simplacademy
      @simplacademy 7 месяцев назад

      Glad to know it helped.

  • @nas-codes
    @nas-codes 8 месяцев назад

    Components for index.htmk Do not understand it please someone explain

    • @simplacademy
      @simplacademy 8 месяцев назад

      Maybe it should have been explained better. The 'Component for index.html' is applicable only for the root AppModule. The 'bootstrap' property in AppModule helps to convey that the component specified in this property (AppComponent) is what should be represented as component for <app-root> tag in index.html, hence the box 'Component for index.html' was included. It is mistake that it is included for each module, but it is applicable only for the root module which is the AppModule. Hope this clarifies. I will pin your question, so that others can get it clarified quickly.

  • @christaabouarraj521
    @christaabouarraj521 8 месяцев назад

    my images are not showing even though I did exactly what you did. The urls are correct. My images are in the same directory as the project. What do you think is the problem I'm facing, and how can I fix it?

    • @simplacademy
      @simplacademy 8 месяцев назад

      Steps to find the issue: 1. Open the page in browser 2. Open Network tab in Developer Tools 3. Refresh the page 4. Hover over the image files listed and check the URL Check if the URL points to the right file location. If the URL is set with background-image property in a CSS file, then the image file reference should be defined relative to the path where the styles CSS file is present. For example, if the CSS file is present in 'styles' folder and the image file is present in the parent root folder, then the URL should be prefixed with double dot to represent the parent folder '../image-file-name'.

  • @varun__edits5267
    @varun__edits5267 8 месяцев назад

    This is exactly what I wanted ...Such a underrated vid

    • @simplacademy
      @simplacademy 8 месяцев назад

      Thanks for the feedback. Glad to know it helped.

  • @anuragranjan6739
    @anuragranjan6739 8 месяцев назад

    I am a web Developer (Angular , React , Node , Express , Next.js) , Can we together start a new RUclips Chenal ?

    • @simplacademy
      @simplacademy 8 месяцев назад

      Hi @anuragranjan6739. Thanks for reaching out. It would be good, if we can discuss and understand our goals, which will help us to take the next steps. Initiate a private chat discussion in Linked In on my profile www.linkedin.com/in/chandrasekaran-janardhanan-2446068/. We will take it from there.

  • @Boyofway
    @Boyofway 8 месяцев назад

    Done!

  • @Boyofway
    @Boyofway 8 месяцев назад

    Done!

  • @Boyofway
    @Boyofway 8 месяцев назад

    I need to study it again

  • @Boyofway
    @Boyofway 8 месяцев назад

    great explanation! Great questions!

  • @Boyofway
    @Boyofway 8 месяцев назад

    By the way, I love this short video format, excellent! You get to the point and don't need to use misleading hooks.

    • @simplacademy
      @simplacademy 8 месяцев назад

      Thanks. Glad to know the short video format helps.

  • @Boyofway
    @Boyofway 8 месяцев назад

    Done!

  • @Boyofway
    @Boyofway 8 месяцев назад

    Done!

  • @Boyofway
    @Boyofway 8 месяцев назад

    Done!

  • @Boyofway
    @Boyofway 8 месяцев назад

    Done!

  • @Boyofway
    @Boyofway 8 месяцев назад

    Done!

  • @Boyofway
    @Boyofway 8 месяцев назад

    Done!

  • @Boyofway
    @Boyofway 8 месяцев назад

    done!

  • @Boyofway
    @Boyofway 8 месяцев назад

    successful!

  • @Boyofway
    @Boyofway 8 месяцев назад

    Thanks!. Greetings from Lima!

  • @ArtiGalande-lg5bk
    @ArtiGalande-lg5bk 9 месяцев назад

    Thanks a lot sir this is finally working 🙏🏻🙏🏻

  • @DeezNuts-dj6lo
    @DeezNuts-dj6lo 9 месяцев назад

    Thanks bro

  • @baburaomcl574
    @baburaomcl574 9 месяцев назад

    how can we access a particular formcontrol which was in 3rd element of a formarray in both html and ts files like i want to print the value of option formcontrol in 3rd element of formarray in html file. in the above we are able to access values as group but i want a single formcontrol value form random index number of formarray

    • @simplacademy
      @simplacademy 9 месяцев назад

      Check the chapter titled "Link form elements using formGroupName and formControl directives" starting at 14:48 and ending at 18:31. In this chapter, formGroupName directive is defined with index number value as 0, which represents the first item in the form array. If 2 is provided as formGroupName value, then it will display the third item in the array. Hope this explanation helps. If it is not clear, watch this video from the beginning and stop at 18:31. You implementation would end here just by changing the index value to 2 and there is no need to further watch and implement the rest of the details provided in this video. Hope this explanation helps. Do let know if there is any further clarification.

    • @baburaomcl574
      @baburaomcl574 9 месяцев назад

      If we want to access a formarray element at a specific index number we use hobbies.controls[i].value that's ok but I want to access only option formcontrol value not correctanswer formcontrol value in formarray element at a specific index number

    • @baburaomcl574
      @baburaomcl574 9 месяцев назад

      My requirement is I have a formarray with one formcontrol for checkbox and other is for a input field and I have let's say 10 this kind of elements in formarray and I want to show a input field if the checkbox of that checkbox formcontrol is checked for that specific checkbox only. Hope you got my requirement

    • @simplacademy
      @simplacademy 9 месяцев назад

      @@baburaomcl574 Check this Stack Overflow post (stackoverflow.com/questions/61601533/access-value-of-formcontrol-from-formarray-in-reactive-form-in-html), there is an example on how to access the current row form control value. The input element can be included with *ngIf having a condition which checks if checkbox value is true, which will give you the expected result. Let me know if you need more clarification.

  • @jawaherhalsefri7433
    @jawaherhalsefri7433 9 месяцев назад

    You are the Legend of Angular

    • @simplacademy
      @simplacademy 9 месяцев назад

      Thanks for the continued support and feedback.

  • @jawaherhalsefri7433
    @jawaherhalsefri7433 9 месяцев назад

    I can't thank you enough god bless you

    • @simplacademy
      @simplacademy 9 месяцев назад

      Thanks again for the feedback.

  • @jawaherhalsefri7433
    @jawaherhalsefri7433 9 месяцев назад

    Sir your teaching style is amazing I was struggling before I encountered your videos. THANK YOU !

    • @simplacademy
      @simplacademy 9 месяцев назад

      Thanks for the feedback. Really helpful.

  • @theultimategamer7202
    @theultimategamer7202 9 месяцев назад

    Wonderful content, your videos are very helpful to beginners to angular framework....

    • @simplacademy
      @simplacademy 9 месяцев назад

      Thanks for the feedback. Glad to know it helped.

  • @abdurrahman9594
    @abdurrahman9594 10 месяцев назад

    Sir, have you created JavaScript OOPs playlists? Please reply.

    • @simplacademy
      @simplacademy 10 месяцев назад

      I have JavaScript course in Udemy. Check the about section of this channel to know how to get access to the course for free.

    • @abdurrahman9594
      @abdurrahman9594 9 месяцев назад

      Ok Sir, thank you for your reply. You teach amazing@@simplacademy

  • @richochet
    @richochet 11 месяцев назад

    Thank you, short and gets to the point!

  • @sevollit92
    @sevollit92 11 месяцев назад

    Thanks so much that was so helpful!!

    • @simplacademy
      @simplacademy 11 месяцев назад

      Glad to know it helped.

  • @akashkaushik8684
    @akashkaushik8684 11 месяцев назад

    very helpfull, Thank you !!

    • @simplacademy
      @simplacademy 11 месяцев назад

      Glad to know it helped

  • @Charly_CRD
    @Charly_CRD 11 месяцев назад

    This is exactly what I was looking for! Congrats for the simplicity to explain my friend!

    • @simplacademy
      @simplacademy 11 месяцев назад

      Glad to know it helped.

  • @havrilyk4115
    @havrilyk4115 Год назад

    Thank you very much, my friend))

  • @rushikeshtokmurke5921
    @rushikeshtokmurke5921 Год назад

    Very well explained 👍 hopefully it will land safely on 23 Aug ..

    • @simplacademy
      @simplacademy Год назад

      @rushikeshtokmurke5921, thanks for the feedback. Hope it lands safetly.

  • @srir78
    @srir78 Год назад

    One of the Best Course in Angular. Even a kid can learn by watching your Videos. Keep it up your good work. Waiting for React eagerly :)

    • @simplacademy
      @simplacademy Год назад

      @srir78, thanks for the feedback. It is really motivating. I find it difficult to master ReactJS. It is quiet possible that I may not create a course on ReactJS.