Skip to main content

Posts

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 '+','-'...

Angular 17 basic CRUD Operation using ASP.NET WEB API

 Angular 17 basic CRUP Operation using ASP.NET WEB API:- First create Web API in ASP.NET CORE MVC: here i have created student model class and create API using code first approach. using System.ComponentModel.DataAnnotations; namespace WebApplication2.Models {     public class Student     {         [Key]         public long rno { get; set; }         public string? name { get; set; }     } } Code of APIController using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using System.Linq.Expressions; using WebApplication2.Models; namespace WebApplication2.Controllers {     [Route("api/[controller]")]     [ApiController]     public class StudentsController : ControllerBase     {         private readonly StudentDbContext _db;         public StudentsController(StudentDbContex...

Machine learning Life cycle

 Machine Learning Life Cycle: Machine learning has given the computer systems the abilities to automatically learn without being explicitly programmed. But how does a machine learning system work? So, it can be described using the life cycle of machine learning. Machine learning life cycle is a cyclic process to build an efficient machine learning project. The main purpose of the life cycle is to find a solution to the problem or project. Machine learning life cycle involves seven major steps, which are given below: Gathering Data Data preparation Data Wrangling Analyse Data Train the model Test the model Deployment Deployment The most important thing in the complete process is to understand the problem and to know the purpose of the problem. Therefore, before starting the life cycle, we need to understand the problem because the good result depends on the better understanding of the problem. In the complete life cycle process...

Classification of Machine Learning

  At a broad level, machine learning can be classified into three types: 1.   Supervised learning 2.   Unsupervised learning 3.   Reinforcement learning 1) Supervised Learning Supervised learning is a type of machine learning method in which we provide sample labeled data to the machine learning system in order to train it, and on that basis, it predicts the output. The system creates a model using labeled data to understand the datasets and learn about each data, once the training and processing are done then we test the model by providing a sample data to check whether it is predicting the exact output or not. The goal of supervised learning is to map input data with the output data. The supervised learning is based on supervision, and it is the same as when a student learns things in the supervision of the teacher. The example of supervised learning is  spam filtering . Supervised learning can be grouped further in two categories of algorithms...

Machine Learning Tutorials:-

 What is Machine Learning? Machine learning is a growing technology which enables computers to learn automatically from past data. Machine learning uses various algorithms for building mathematical models and making predictions using historical data or information. Currently, it is being used for various tasks such as image recognition, speech recognition, email filtering, Facebook auto-tagging, recommender system, and many more. In the real world, we are surrounded by humans who can learn everything from their experiences with their learning capability, and we have computers or machines which work on our instructions. But can a machine also learn from experiences or past data like a human does? So here comes the role of  Machine Learning . How ML work with AI? Machine Learning is said as a subset of  artificial intelligence  that is mainly concerned with the development of algorithms which allow a computer to learn from the data and past experiences on their own. Th...