Personal Blog

Hero Illustration

Posts

  • Day 10: Revision and Q&A

    ,

    Terminal Commands For Processes There are two commands available in Linux to track running processes. These two commands are Top and Ps. Using top: using ps: Command Description PID process ID TTY terminal type TIME total time the process has been running CMD name of the command that launches the process Details for PS command To kill the…

    Go to post

  • Day 9: Cover Important Topics

    ,

    PHP Static Keyword Static methods can be called without creating the class of the object. Basically creating class properties of methods with static makes them accessible without instantiation of the class. NOTE: Before PHP 8.0.0, calling non-static methods statically was deprecated We cannot access static properties as non-static means by creating their objects. Class Abstraction…

    Go to post

  • Day 8: PHP Language reference and JS Basics

    ,

    Module: Programming LanguagesTopics: HTML & CSS, PHP & MYSQL and JavaScript PHP Classes and Object Php includes OOP concepts as well some of them are Class Abstraction, Object Inheritance, and more. Object Inheritance Just like we see the importance of Interheretance in other languages like cpp. PHP also uses these principles in its object class.…

    Go to post

  • Day 7: HTML & CSS

    ,

    Module: Programming LanguagesTopics: HTML & CSS Introduction to HTML In order to build the website, it is required to use the HTML to create the skeleton of the webpage. HTML is all about elements we can use elements to display different type of content on the webpage. Tags decide how the Elements will display on…

    Go to post