Skip to main content

Posts

Showing posts from February, 2024

Join Devops Training at Shiva Concept Solution Indore

Join Devops Training at Shiva Concept Solution Indore:-   🚀 Upgrade Your Skills with Our Exclusive DevOps Training Program! 🚀      Are you ready to make your career as a devops engineer 🌐✨    🔧 Unlock the Power of DevOps: Join our comprehensive DevOps Training Program and gain hands-on experience with industry-leading tools and best practices. From continuous integration to automated testing, we've got you covered! 🎓 What You'll Learn: CI/CD Pipelines: Streamline your development and deployment processes. GIT & Github for VCS LINUX and Shell Scripting AWS for cloud computing & deployment JENKINS for CI/CD Selenium & Jmeter for Testing Containerization with Docker: Master container technology for efficient and scalable applications. Infrastructure as Code (IaC): Automate infrastructure management for faster and consistent deployments. Monitoring and Logging: Ensure system reliability and performance with robust monitoring solutions. Collabor...

How to customize admin dashboard in wordpress

 How to customize admin dashboard in wordpress:- If you want to show any dynamic content under wordpress dashboard page without using page template, then we can customize wp-admin/index.php file and display database content here. Now i am providing complete code to fetch data from database and display in dashboard page. <?php /**  * Dashboard Administration Screen  *  * @package WordPress  * @subpackage Administration  */ /** Load WordPress Bootstrap */ require_once __DIR__ . '/admin.php' ; /** Load WordPress dashboard API */ require_once ABSPATH . 'wp-admin/includes/dashboard.php' ; require_once ABSPATH . 'wp-admin/admin-header.php' ; ? > <div class = "wrap" >         <h1> Welcome in SCS </h1>         <div style = " margin-left: 40px;margin-top: 50px;float:left;" >     <p> View Student Record Here </p>     <table border = "1" >    ...

Match case or switch case in Python

  Match case or switch case in Python:- It  is  used to solve option based or choice based program. it is similar to ladder if--else. ch='i' match ch:  case 'a':     print('vowel')  case 'e':     print('vowel')  case 'i':     print('vowel')  case 'o':     print('vowel')  case 'u':     print('vowel')  case _:     print('consonent') var=value match option:     case optionvalue:        statement     ...     ...     case _:       default statement option==optionvalue 1)  WAP to check number is one digit or above one digit? 2)  WAP to check character is numeric or alphabet? 3)  WAP to check that char is in upper case or lower case? 4)  WAP to check Leap Year 5)  WAP to check greater number 6)  WAP to calculation addition, substration, multiplication and division when user press '+','-'...