<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>components Archives - Artificial Intelligence</title>
	<atom:link href="https://www.aiuniverse.xyz/tag/components/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.aiuniverse.xyz/tag/components/</link>
	<description>Exploring the universe of Intelligence</description>
	<lastBuildDate>Wed, 29 Nov 2023 12:42:52 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>What are the components of Docker and their types?</title>
		<link>https://www.aiuniverse.xyz/what-are-the-components-of-docker-and-their-types/</link>
					<comments>https://www.aiuniverse.xyz/what-are-the-components-of-docker-and-their-types/#respond</comments>
		
		<dc:creator><![CDATA[Maruti Kr.]]></dc:creator>
		<pubDate>Mon, 27 Nov 2023 05:47:31 +0000</pubDate>
				<category><![CDATA[docker]]></category>
		<category><![CDATA[components]]></category>
		<category><![CDATA[Containerization]]></category>
		<category><![CDATA[containers]]></category>
		<category><![CDATA[Docker]]></category>
		<category><![CDATA[Docker Engine]]></category>
		<category><![CDATA[Dockerfile]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[Orchestration]]></category>
		<category><![CDATA[Registries]]></category>
		<category><![CDATA[TYPES]]></category>
		<category><![CDATA[What are the components of Docker and their types?]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=18046</guid>

					<description><![CDATA[<p>Introduction Docker components are the fundamental building blocks of Docker, a platform for building, running, and managing containerized applications. These components work together to provide a consistent <a class="read-more-link" href="https://www.aiuniverse.xyz/what-are-the-components-of-docker-and-their-types/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/what-are-the-components-of-docker-and-their-types/">What are the components of Docker and their types?</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image size-full is-resized"><img fetchpriority="high" decoding="async" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/11/image-43.png" alt="" class="wp-image-18047" width="837" height="478" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/11/image-43.png 698w, https://www.aiuniverse.xyz/wp-content/uploads/2023/11/image-43-300x171.png 300w" sizes="(max-width: 837px) 100vw, 837px" /></figure>



<h2 class="wp-block-heading">Introduction</h2>



<p>Docker components are the fundamental building blocks of Docker, a platform for building, running, and managing containerized applications. These components work together to provide a consistent and efficient way to develop and deploy applications across different environments.</p>



<p><strong>The components in Docker are categorized into two groups: </strong></p>



<ul class="wp-block-list">
<li><strong>Basic</strong></li>



<li><strong>Advanced</strong></li>
</ul>



<h2 class="wp-block-heading">Basic Docker Components:</h2>



<ol class="wp-block-list">
<li><strong>Docker Client: </strong>The Docker client is a command-line tool that allows users to interact with the Docker daemon and manage Docker objects, such as images, containers, and volumes. It provides a user-friendly interface for executing Docker commands and managing Docker environments.</li>



<li><strong>Docker Daemon: </strong>The Docker daemon, also known as the Docker engine, is the backend service that manages Docker containers. It listens for instructions from the Docker client and executes them, creating, running, and managing containers according to the user&#8217;s requests.</li>



<li><strong>Docker Image:</strong> A Docker image is a read-only template that contains the instructions for creating a Docker container. It includes the operating system, application code, dependencies, and configuration files necessary to run the application.</li>



<li><strong>Docker Container:</strong> A Docker container is a running instance of a Docker image. It is an isolated and self-contained environment that packages the application and its dependencies, allowing it to run consistently across different environments.</li>



<li><strong>Docker Registry:</strong> A Docker registry is a centralized location for storing and sharing Docker images. It allows users to pull and push images to make them available for use in different environments.</li>



<li><strong>Docker Networking:</strong> Docker networking facilitates container communication and comprises five primary network drivers described below.</li>
</ol>



<ul class="wp-block-list">
<li><strong>None:</strong> Disabling the networking system prevents container connectivity with others.</li>



<li><strong>Bridge:</strong> This default driver links multiple containers to the same Docker host.</li>



<li><strong>Host: </strong>For scenarios where container-host isolation isn&#8217;t needed, the host network driver removes this isolation.</li>



<li><strong>Overlay:</strong> The overlay network driver enables communication among various swarm services across different hosts.</li>



<li><strong>macvlan:</strong> By assigning a MAC address and directing traffic through it, the macvlan driver makes a container appear as a physical device.</li>
</ul>



<h2 class="wp-block-heading">Advanced Docker Components:</h2>



<ul class="wp-block-list">
<li><strong>Docker Compose:</strong> Docker Compose is a tool for defining and running multi-container Docker applications. It allows users to define the services that make up an application, their dependencies, and how they should be connected together.</li>



<li><strong>Docker Swarm: </strong>Docker Swarm is a clustering tool for managing multiple Docker hosts as a single swarm. It allows users to deploy and manage applications across multiple hosts, providing scalability and fault tolerance.</li>



<li><strong>Docker Buildx:</strong> Docker Buildx is a tool for building Docker images. It provides advanced features for building images, such as support for multi-stage builds, caching, and parallel builds.</li>



<li><strong>Docker Content Trust:</strong> Docker Content Trust is a security feature that allows users to verify the integrity and authenticity of Docker images. It uses cryptographic signatures to ensure that images have not been tampered with.</li>



<li><strong>Docker Desktop:</strong> Docker Desktop is a bundled Docker environment for macOS, Windows, and Linux. It includes the Docker client, daemon, and other tools, making it easy to get started with Docker on local machines.</li>
</ul>
<p>The post <a href="https://www.aiuniverse.xyz/what-are-the-components-of-docker-and-their-types/">What are the components of Docker and their types?</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/what-are-the-components-of-docker-and-their-types/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is angular and How angular Works &#038; Architecture?</title>
		<link>https://www.aiuniverse.xyz/what-is-angular-and-how-angular-worksarchitecture/</link>
					<comments>https://www.aiuniverse.xyz/what-is-angular-and-how-angular-worksarchitecture/#respond</comments>
		
		<dc:creator><![CDATA[Maruti Kr.]]></dc:creator>
		<pubDate>Tue, 22 Aug 2023 08:17:36 +0000</pubDate>
				<category><![CDATA[angular]]></category>
		<category><![CDATA[Angular Framework]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Change Detection]]></category>
		<category><![CDATA[components]]></category>
		<category><![CDATA[Data Binding]]></category>
		<category><![CDATA[Dependency Injection]]></category>
		<category><![CDATA[How angular Works & Architecture?]]></category>
		<category><![CDATA[How to Install and Configure angular ?]]></category>
		<category><![CDATA[Modules]]></category>
		<category><![CDATA[TypeScript]]></category>
		<category><![CDATA[Virtual DOM]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[What are feature of angular ?]]></category>
		<category><![CDATA[What is angular ?]]></category>
		<category><![CDATA[What is the workflow of angular ?]]></category>
		<category><![CDATA[What is top use cases of angular?]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=17617</guid>

					<description><![CDATA[<p>What is angular ? Angular is a popular open-source front-end web application framework developed and maintained by Google. It is primarily used for building dynamic single-page applications <a class="read-more-link" href="https://www.aiuniverse.xyz/what-is-angular-and-how-angular-worksarchitecture/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/what-is-angular-and-how-angular-worksarchitecture/">What is angular and How angular Works &amp; Architecture?</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="631" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/08/image-71-1024x631.png" alt="" class="wp-image-17623" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/08/image-71-1024x631.png 1024w, https://www.aiuniverse.xyz/wp-content/uploads/2023/08/image-71-300x185.png 300w, https://www.aiuniverse.xyz/wp-content/uploads/2023/08/image-71-768x473.png 768w, https://www.aiuniverse.xyz/wp-content/uploads/2023/08/image-71-1536x946.png 1536w, https://www.aiuniverse.xyz/wp-content/uploads/2023/08/image-71.png 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">What is angular ? </h2>



<p>Angular is a popular open-source front-end web application framework developed and maintained by Google. It is primarily used for building dynamic single-page applications (SPAs). that are dynamic, interactive, and responsive.</p>



<h2 class="wp-block-heading">What is top use cases of angular? </h2>



<p>Some of the top use cases of Angular include:</p>



<ol class="wp-block-list">
<li><strong>Web Application Development: </strong>Angular is highly suitable for building complex web applications with rich user interfaces. It offers a wide range of tools and libraries that enable developers to create interactive and responsive web experiences.</li>



<li><strong>Mobile App Development: </strong>Angular can also be used to develop mobile applications using frameworks like Ionic. This allows developers to build cross-platform mobile apps using the same codebase, saving time and effort.</li>



<li><strong>Progressive Web Apps (PWAs):</strong> Angular provides the necessary tools and features to create PWAs, which are web applications that can be installed on a user&#8217;s device and function offline. This enables users to access the app even without an internet connection.</li>
</ol>



<h2 class="wp-block-heading">What are feature of angular ? </h2>



<figure class="wp-block-image size-full is-resized"><img decoding="async" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/08/image-67.png" alt="" class="wp-image-17618" width="457" height="297" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/08/image-67.png 501w, https://www.aiuniverse.xyz/wp-content/uploads/2023/08/image-67-300x195.png 300w" sizes="(max-width: 457px) 100vw, 457px" /></figure>



<p>Features of Angular:</p>



<ul class="wp-block-list">
<li><strong>MVC (Model-View-Controller) architecture:</strong> Angular follows the MVC architecture, which separates the application&#8217;s data, presentation, and behavior. This makes the application easier to understand, test, and maintain.</li>



<li><strong>Two-way Data Binding:</strong> Angular allows for seamless synchronization between the model and the view, ensuring that any changes made in the model are immediately reflected in the view and vice versa.</li>



<li><strong>Dependency Injection:</strong> Angular makes use of dependency injection to manage the application&#8217;s components and their dependencies. This promotes code reusability and simplifies the development process.</li>



<li><strong>Directives:</strong> Angular&#8217;s directives enable developers to extend HTML with new attributes and tags, making it easier to create dynamic and interactive web applications.</li>
</ul>



<h2 class="wp-block-heading">What is the workflow of angular ? </h2>



<p>The workflow of an Angular application typically involves the following steps: </p>



<p><strong>1. </strong>Create an Angular project using the Angular CLI (Command Line Interface). </p>



<p><strong>2. </strong>Define components, services, and modules to structure your application. </p>



<p><strong>3. </strong>Write HTML templates and CSS styles for the user interface. </p>



<p><strong>4. </strong>Implement data binding and handle user interactions within components. </p>



<p><strong>5. </strong>Configure routing for navigating between different views. </p>



<p><strong>6. </strong>Test your application using automated unit tests and end-to-end tests. </p>



<p><strong>7. </strong>Build and deploy your application for production.</p>



<h1 class="wp-block-heading">How angular Works &amp; Architecture?</h1>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="789" height="420" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/08/image-70.png" alt="" class="wp-image-17622" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/08/image-70.png 789w, https://www.aiuniverse.xyz/wp-content/uploads/2023/08/image-70-300x160.png 300w, https://www.aiuniverse.xyz/wp-content/uploads/2023/08/image-70-768x409.png 768w" sizes="auto, (max-width: 789px) 100vw, 789px" /></figure>



<p><strong>How Does Angular Work</strong>:</p>



<p>Angular works by combining HTML templates, CSS styles, and JavaScript code. When a user interacts with the application, Angular handles the events and updates the view accordingly. It uses a concept called two-way data binding, which means that changes in the model are automatically reflected in the view, and vice versa.&nbsp;</p>



<p><strong>Architecture of Angular</strong>: Angular follows a modular and scalable architecture, which makes it easy to maintain and extend the application. It consists of several key components:</p>



<ol class="wp-block-list">
<li><strong>Modules:</strong> Angular applications are divided into modules, which are self-contained units of functionality. Each module can have its own components, services, and other resources.</li>



<li><strong>Components:</strong> Components are the building blocks of Angular applications. They encapsulate the user interface and handle user interactions. Each component consists of a template, styles, and code.</li>



<li><strong>Services:</strong> Services provide functionality that can be shared across multiple components. They are used to manage data, perform HTTP requests, and handle other tasks.</li>



<li><strong>Directives: </strong>Directives are used to extend the functionality of HTML elements. They allow you to add custom behavior to existing elements or create new elements.</li>



<li><strong>Templates:</strong> Templates define the structure and layout of the user interface. They are written in HTML and can include Angular-specific syntax.</li>



<li><strong>Dependency Injection:</strong> Angular uses dependency injection to manage the dependencies between different components and services. This allows for loose coupling and easier testing.</li>
</ol>



<h2 class="wp-block-heading">How to Install and Configure angular ? </h2>



<p><strong>Installing and Configuring Angular:</strong></p>



<ol class="wp-block-list">
<li><strong>Install Node.js:</strong> Download and install Node.js from <a href="https://nodejs.org/">https://nodejs.org</a>.</li>



<li><strong>Install Angular CLI:</strong> Open a terminal and run the following command to install the Angular CLI globally:</li>
</ol>



<pre class="wp-block-code"><code>npm install -g @angular/cli
</code></pre>



<h2 class="wp-block-heading">Step by Step Tutorials for angular for hello world program</h2>



<p><strong>Step-by-Step Tutorial for a Hello World Program in Angular:</strong></p>



<ol class="wp-block-list">
<li><strong>Create a New Project:</strong></li>
</ol>



<pre class="wp-block-code"><code>ng new hello-world-app
cd hello-world-app
</code></pre>



<p>2. <strong>Generate a Component:</strong></p>



<pre class="wp-block-code"><code>ng generate component hello
</code></pre>



<p><strong>3. Edit the Component Template:</strong></p>



<p>Open <code>src/app/hello/hello.component.html</code> and replace its content with:</p>



<pre class="wp-block-code"><code>&lt;h1&gt;Hello, Angular!&lt;/h1&gt;
</code></pre>



<p>4. <strong>Use the Component:</strong></p>



<p>Open <code>src/app/app.component.html</code> and replace its content with:</p>



<pre class="wp-block-code"><code>&lt;app-hello&gt;&lt;/app-hello&gt;
</code></pre>



<p>5. <strong>Start the Development Server:</strong></p>



<pre class="wp-block-code"><code>ng serve
</code></pre>



<p>This will start the development server. Open your browser and navigate to <code>http://localhost:4200</code> to see your &#8220;Hello, Angular!&#8221; message.</p>
<p>The post <a href="https://www.aiuniverse.xyz/what-is-angular-and-how-angular-worksarchitecture/">What is angular and How angular Works &amp; Architecture?</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/what-is-angular-and-how-angular-worksarchitecture/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to create a new project in Jira?</title>
		<link>https://www.aiuniverse.xyz/how-to-create-a-new-project-in-jira/</link>
					<comments>https://www.aiuniverse.xyz/how-to-create-a-new-project-in-jira/#respond</comments>
		
		<dc:creator><![CDATA[rahulkr]]></dc:creator>
		<pubDate>Thu, 13 Jan 2022 10:17:27 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[components]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[Filters]]></category>
		<category><![CDATA[issues]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[Report]]></category>
		<category><![CDATA[SCRUM]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=15644</guid>

					<description><![CDATA[<p>Hi dear, welcome to the fascinating way of Jira&#8217;s concept of learning. Today I will tell you about the creation of projects in Jira. This is the <a class="read-more-link" href="https://www.aiuniverse.xyz/how-to-create-a-new-project-in-jira/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/how-to-create-a-new-project-in-jira/">How to create a new project in Jira?</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-image"><figure class="aligncenter size-large is-resized"><img loading="lazy" decoding="async" src="https://www.aiuniverse.xyz/wp-content/uploads/2022/01/IT_blog-1024x576.jpg" alt="" class="wp-image-15645" width="783" height="440" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2022/01/IT_blog-1024x576.jpg 1024w, https://www.aiuniverse.xyz/wp-content/uploads/2022/01/IT_blog-300x169.jpg 300w, https://www.aiuniverse.xyz/wp-content/uploads/2022/01/IT_blog-768x432.jpg 768w, https://www.aiuniverse.xyz/wp-content/uploads/2022/01/IT_blog-1536x864.jpg 1536w, https://www.aiuniverse.xyz/wp-content/uploads/2022/01/IT_blog.jpg 1920w" sizes="auto, (max-width: 783px) 100vw, 783px" /></figure></div>



<p>Hi dear, welcome to the fascinating way of Jira&#8217;s concept of learning. Today I will tell you about the creation of projects in Jira. This is the most common and important feature because if you are using Jira then it is very important for you to know how to create the project in Jira so that you can start your journey with Jira. You will see what is the agenda in this article? So, in this article, we will learn how to create a <a href="https://www.devopsschool.com/">project</a>, what the classic project is and how to work with that, and how to create boards so, we will start from the first one. You will see first how to create projects so, let’s go to the cloud instance. There will be the cloud instance that you have created. In this section, you will see there is the default page of a Jira. If you want to change your default page in Jira then you can do this I will explain the setting later in this course in the article</p>



<h2 class="wp-block-heading">How to create a project?</h2>



<p>We will, we are going to create the projects so, you will go into the project section and you will see, you will haven’t create any project yet so, it will show you currently have no projects so for creating the project you will click on the create project button and you will see, it gives you options to enter your project name and to choose the template right now it’s showing the scrum template but if you want to change your project template then you can simply click on the change template and you will get a load of options available. There, you can choose according to your requirements the Kanban, scrum, task tracking, and bug tracking templates and many more are available there but you will use the scrum template so. You will go with that scrum one and select that scrum one. You will mention the project name and project name is project a. Once you will click on the advanced option you will see the key of a project. The key of a project should be very descriptive and easy to use. What is the logic behind the project key? It takes the first letter of our project name and if you want to name and if you want to change the project key then you would recommend changing it at the time of the creation of the projects because it is very difficult to change the project T later once you will create the project and adding issues or your requirements in the project so I would recommend you to change your project T then please change at the time of the creations so you will go and click on create button it will land you in that page where you will see the backlog options in the backlog you can create your requirements in the form of a story in the form of the task and you can create the epics. </p>



<p>I will explain to you what are the effects stories and tasks you can see the other issues types are available story tasks bugs and there are the options of creating the epic so, what are these issues types? So, you will see, what are options are available in that project you will see when you will create the project in Jira then it creates automatically a bowl. You can say this is a PA board if you want to create your own board then you will click on the plus icon and you can create the board it could be a scrum or it could be a Kanban board it’s up to you but for now, you will cancel it and the second option is a backlog as I told you, you can collect your requirements in the backlog and the third one is the active sprint then you don’t have any experience available there.      </p>



<h2 class="wp-block-heading">What is a classic project?</h2>



<p>So, it will look like as there are the three columns are available to do in progress and then I will explain to you how you can change these columns and how can you add more columns in this active sprint board and there are report options are available. As you will see, there are a lot of reports are available burndown charts, burnup charts sprint reports velocity, and the reports which are related to the issue analysis forecast and management and the others. You will see, there are no available sprints for this board that’s why this is the reason it will not show any report there so once you will start your sprint then how can you start your sprint? You will be able to see the report there so, you will back to the other one. You will see relays this is the best option. With the help of these release options you can create the versions and how you will create diversion you can manage your releases there next option is issues and filters all issues that you will create in that project will be listed down there so, you can choose all issues and it will show you all the issues in a list. I will show you how but this time you don’t have any issues so, you cannot see it and you will see there the other options are available. You will see open issues your reported issues recently viewed issues or recently created resort or updated issues as well so, I shall show you once you will create issues in the project and the next project is pages. You can show any pages which are related to your project there and the next one is the components. You can create the components and you can categorize your issues as for the components that are the best feature in the Jira and you can add the other items may be.</p>



<p> If you will click on that then you can add the repose repository link pages Ning or any shortcut which are frequently used so you will go into the last one and which is a project setting in that option that contains a lot of features. So first, we will start from the details you will see that you can change the project name and the project key there but you will be able to see that option because you will be admin and have access to change that project key but you will haven’t admin access then you can’t change it you can mention any URL but you can’t change the project type. If you want to change the project type then you cannot do it there for this you will have to create a new project and move your all the issues on that particular project type and there you can select an image and you may be put your project low logo and any other related images. You can write their description and mention the project lead there and you can set the default assignee as well the next option is people. In this option, you can add the people which are going to work into your project. So simply, you can add the people by clicking that arrow options you can choose the role and type the name then it will show automatically has done. I will explain to you later how you will create the roles and how can you add more team members? So that you can add the people to your project. The third one is a summary where you will be able to see the complete summary of your project. </p>



<h4 class="wp-block-heading">Related videos: </h4>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy"  id="_ytid_43043"  width="660" height="371"  data-origwidth="660" data-origheight="371" src="https://www.youtube.com/embed/9i108R9RczA?enablejsapi=1&#038;autoplay=0&#038;cc_load_policy=0&#038;cc_lang_pref=&#038;iv_load_policy=1&#038;loop=0&#038;rel=1&#038;fs=1&#038;playsinline=0&#038;autohide=2&#038;theme=dark&#038;color=red&#038;controls=1&#038;disablekb=0&#038;" class="__youtube_prefs__  epyt-is-override  no-lazyload" title="YouTube player"  allow="fullscreen; accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen data-no-lazy="1" data-skipgform_ajax_framebjll=""></iframe>
</div></figure>
<p>The post <a href="https://www.aiuniverse.xyz/how-to-create-a-new-project-in-jira/">How to create a new project in Jira?</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/how-to-create-a-new-project-in-jira/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Difference between AIOps and Artificial intelligence (AI)</title>
		<link>https://www.aiuniverse.xyz/difference-between-aiops-and-artificial-intelligence-ai/</link>
					<comments>https://www.aiuniverse.xyz/difference-between-aiops-and-artificial-intelligence-ai/#respond</comments>
		
		<dc:creator><![CDATA[aiuniverse]]></dc:creator>
		<pubDate>Tue, 04 Jan 2022 13:02:39 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[Machine Learning]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[advantages]]></category>
		<category><![CDATA[AIOps]]></category>
		<category><![CDATA[components]]></category>
		<category><![CDATA[Definition]]></category>
		<category><![CDATA[DevOps]]></category>
		<category><![CDATA[Differences between]]></category>
		<category><![CDATA[disadvantages]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[MLOps]]></category>
		<category><![CDATA[Need]]></category>
		<category><![CDATA[Stages]]></category>
		<category><![CDATA[training place]]></category>
		<category><![CDATA[TYPES]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=15617</guid>

					<description><![CDATA[<p>I am going to tell you the Difference between AIOps and Artificial intelligence (AI) on the basis of their Definition and how they work and what are <a class="read-more-link" href="https://www.aiuniverse.xyz/difference-between-aiops-and-artificial-intelligence-ai/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/difference-between-aiops-and-artificial-intelligence-ai/">Difference between AIOps and Artificial intelligence (AI)</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="624" height="357" src="https://www.aiuniverse.xyz/wp-content/uploads/2022/01/AIOps.png" alt="" class="wp-image-15619" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2022/01/AIOps.png 624w, https://www.aiuniverse.xyz/wp-content/uploads/2022/01/AIOps-300x172.png 300w" sizes="auto, (max-width: 624px) 100vw, 624px" /></figure>



<p>I am going to tell you the Difference between AIOps and Artificial intelligence (AI) on the basis of their Definition and how they work and what are the components of them. So let’s start.</p>



<p></p>



<h2 class="wp-block-heading"><strong><span class="has-inline-color has-vivid-red-color">What is AIOps?</span></strong></h2>



<p>AIOps stands for artificial intelligence for operations team promises to improve the events correlation, speed root cause analysis, and drive automation.</p>



<p>In other words, the ability to drive the automated process by using automation, whether the process is around incident management, remediation.</p>



<p><strong>Let&#8217;s take an example-</strong> If you are getting so much alerts noise at the time of monitoring you could either ignore them or put lots of effort to solve that, but the AIOps is driven to drive the resolution to that issue with the help of automation, that means not much effort, work done in less time or say in a smarter way.</p>



<p>&nbsp;AIOps is all about delivering a better customer experience, that’s why much more customers are adopting AI machine learning. With AIOps you can predict and fix most common IT problems before they impact customer experience and free up the IT teams to innovate.</p>



<p>AIOps leverages big data and collects data from different platforms like ops tools and devices to automatically spot and react to the issue in real-time.</p>



<p>The goal is to increase the speed of delivery of the services to improve the efficiency of IT services and in other words to provide a superior user experience.</p>



<p>It’s clear that AIOps break down the siloed operations and enable the generation of insights that can be communicated to stakeholders and it can help in driving automation and collaboration.</p>



<p></p>



<h2 class="wp-block-heading"><strong><span class="has-inline-color has-vivid-red-color">Need of AIOps</span></strong></h2>



<p>AIOPs offer clarity to performance data and dependencies throughout all environments, examine the data to take out the important events which are associated with outages or slow down, and automatically alert members to problems, the root causes, and recommended solutions.</p>



<h2 class="wp-block-heading"><strong><span class="has-inline-color has-vivid-red-color">Components of AIOps</span></strong></h2>



<p>1) Extensive and diverse IT Data</p>



<p>2) Aggregated big data platform</p>



<p>3) Machine learning</p>



<p>4) Observe</p>



<p>5) Engage</p>



<p>6) ACT</p>



<p>7) Automation</p>



<p></p>



<h2 class="wp-block-heading"><strong><span class="has-inline-color has-vivid-red-color">AIOPs bridges three different IT disciplines –</span></strong></h2>



<p>1) Service management</p>



<p>2) Performace management</p>



<p>3) Automation</p>



<p></p>



<h1 class="wp-block-heading"><strong><span class="has-inline-color has-vivid-red-color">What is artificial intelligence (AI)?</span></strong></h1>



<figure class="wp-block-gallery columns-1 is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" decoding="async" width="1024" height="576" src="https://www.aiuniverse.xyz/wp-content/uploads/2022/01/Artificial-intelligence-1024x576.jpg" alt="" data-id="15620" data-full-url="https://www.aiuniverse.xyz/wp-content/uploads/2022/01/Artificial-intelligence.jpg" data-link="https://www.aiuniverse.xyz/?attachment_id=15620" class="wp-image-15620" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2022/01/Artificial-intelligence-1024x576.jpg 1024w, https://www.aiuniverse.xyz/wp-content/uploads/2022/01/Artificial-intelligence-300x169.jpg 300w, https://www.aiuniverse.xyz/wp-content/uploads/2022/01/Artificial-intelligence-768x432.jpg 768w, https://www.aiuniverse.xyz/wp-content/uploads/2022/01/Artificial-intelligence-1536x864.jpg 1536w, https://www.aiuniverse.xyz/wp-content/uploads/2022/01/Artificial-intelligence.jpg 1920w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure></li></ul></figure>



<p>AI refers to the automation of tasks by feeding data or by taking the help of machine learning to learn new things by getting data from the internet, locally saved data, or from the instruction that has been installed to work like as instructed.</p>



<p>Machine learning is a kind of brain to AI that helps it to think or decide like a human brain but not completely because humans are creative. We can do anything by using our brains that can’t do machines.</p>



<p>AI had been thought of in 1955 and introduced in 1956 in a seminar by John McCarthy, that&#8217;s why we call him the father of AI as well.</p>



<p>It is said AI is our future but it’s not true AI is present as well as future.</p>



<p>Some examples that we are using currently are Alexa, Siri on iPhone, Google Assistant, Tesla car, Cortana on windows. All these are some examples of present AI that we are using and Google maps are also one of them and many more.</p>



<p>Artificial Intelligence (AI) in the field of computer science.</p>



<p></p>



<h2 class="wp-block-heading"><strong><span class="has-inline-color has-vivid-red-color">Stages of AI</span></strong></h2>



<ol class="wp-block-list" type="1"><li><strong>General AI</strong></li><li><strong>Narrow AI</strong></li><li><strong>Artificial super intelligence</strong></li></ol>



<p><strong>General AI</strong> means lots of works and activities can be done. Humans can dance, eat and do many more activities, in the same way, AI can also do multiple tasks. But unfortunately, we don’t have that much evolved AI right now. We can make it do any particular task that we want to make it done. In other words, we have only narrow AI’s right now.</p>



<p><strong>Narrow AI</strong> means it is focused on any particular task that is assigned to it such as an application is designed to take a photo but a human can do anything with that photo. So this is the difference between AI and humans. (General and narrow AI).</p>



<p><strong>Artificial super-intelligence </strong>means the machine which will surpass humans in thinking, behaving, etc, and can do much more which we can’t imagine. But we don’t have such kind of super-intelligence right now but. It is like hypothetical robots that have been shown in movies.</p>



<h2 class="wp-block-heading"><strong><span class="has-inline-color has-vivid-red-color">Advantages and Disadvantages of AI</span></strong></h2>



<h3 class="wp-block-heading"><strong><span style="color:#33268a" class="has-inline-color">Advantages</span></strong></h3>



<ul class="wp-block-list"><li>Workloads can be decreased.</li><li>Time can be saved.</li><li>Errors can be reduced</li><li>Automation</li><li>To remember things easily</li><li>We can use robots instead of humans as cops</li><li>Designing and construction without hard work</li><li>Can work without breaks</li><li>Collection of data and many more.</li><li>Solve problems and perform complicated tasks</li></ul>



<h3 class="wp-block-heading"><strong><span style="color:#3e32a4" class="has-inline-color">Disadvantages</span></strong></h3>



<ul class="wp-block-list"><li>Humans will become lazy.</li><li>If somehow anyone can succeed in manipulating the AI then it can be dangerous to human’s kinds.</li><li>Machines can keep an eye on us all the time by using cameras and many more, which means no privacy.</li><li>It can give unemployment to people</li><li>High cost of maintenance</li><li>Can’t sense like humans</li><li>Lack of creativity</li></ul>



<h2 class="wp-block-heading"><strong><span class="has-inline-color has-vivid-red-color">Types of AI</span></strong></h2>



<ul class="wp-block-list"><li>Reactive machine AI</li><li>Limited memory AI</li><li>Theory of mind AI</li><li>Self-aware AI</li></ul>



<h2 class="has-text-align-center wp-block-heading"><strong><span class="has-inline-color has-vivid-red-color">Training Place</span></strong></h2>



<p>I would like to tell you about one of the best places to get trained and certification in <strong><a href="https://www.devopsschool.com/certification/master-in-devops-engineering.html" target="_blank" rel="noreferrer noopener">DevOps, DevSecOps, <strong>SRE</strong></a></strong>, <strong><a href="https://www.devopsschool.com/certification/aiops-training-course.html" target="_blank" rel="noreferrer noopener">AIOps</a>, <a href="https://www.devopsschool.com/certification/mlops-training-course.html" target="_blank" rel="noreferrer noopener">MLOps</a>, <a href="https://devopsschool.com/courses/gitops/index.html" target="_blank" rel="noreferrer noopener">GitOps</a>, <a href="https://www.devopsschool.com/certification/master-artificial-intelligence-course.html" target="_blank" rel="noreferrer noopener">AI</a>, and <a href="https://www.devopsschool.com/certification/master-machine-learning-course.html" target="_blank" rel="noreferrer noopener">Machine learning</a></strong> courses is <strong><a href="https://www.devopsschool.com/" target="_blank" rel="noreferrer noopener">DevOpsSchool</a>. </strong>This Platform offers the best trainers who have good experience in DevOps and also they provide a friendly eco-environment where you can learn comfortably and free to ask anything regarding your course and they are always ready to help you out whenever you need, that’s why they provide pdf’s, video, etc. to help you.</p>



<p>They also provide real-time projects to increase your knowledge and to make you tackle the real face of the working environment. It will increase the value of yours as well as your resume. So do check this platform if you guys are looking for any kind of training in any particular course and tools.</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy"  id="_ytid_28967"  width="660" height="371"  data-origwidth="660" data-origheight="371" src="https://www.youtube.com/embed/LB9D-HDdAFg?enablejsapi=1&#038;autoplay=0&#038;cc_load_policy=0&#038;cc_lang_pref=&#038;iv_load_policy=1&#038;loop=0&#038;rel=1&#038;fs=1&#038;playsinline=0&#038;autohide=2&#038;theme=dark&#038;color=red&#038;controls=1&#038;disablekb=0&#038;" class="__youtube_prefs__  epyt-is-override  no-lazyload" title="YouTube player"  allow="fullscreen; accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen data-no-lazy="1" data-skipgform_ajax_framebjll=""></iframe>
</div></figure>
<p>The post <a href="https://www.aiuniverse.xyz/difference-between-aiops-and-artificial-intelligence-ai/">Difference between AIOps and Artificial intelligence (AI)</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/difference-between-aiops-and-artificial-intelligence-ai/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Artificial Intelligence in Electrical Engineering</title>
		<link>https://www.aiuniverse.xyz/artificial-intelligence-in-electrical-engineering/</link>
					<comments>https://www.aiuniverse.xyz/artificial-intelligence-in-electrical-engineering/#respond</comments>
		
		<dc:creator><![CDATA[aiuniverse]]></dc:creator>
		<pubDate>Mon, 22 Mar 2021 06:16:30 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[components]]></category>
		<category><![CDATA[department]]></category>
		<category><![CDATA[Electrical]]></category>
		<category><![CDATA[ENGINEERING]]></category>
		<category><![CDATA[Professor]]></category>
		<guid isPermaLink="false">http://www.aiuniverse.xyz/?p=13675</guid>

					<description><![CDATA[<p>Source &#8211; https://assamtribune.com/ Dr Sandip Bordoloi,&#160;Associate Professor, Department of Electrical Engineering, GIMT, Guwahati. Electrical engineers work on a wide range of components, devices, machines, and systems, from <a class="read-more-link" href="https://www.aiuniverse.xyz/artificial-intelligence-in-electrical-engineering/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/artificial-intelligence-in-electrical-engineering/">Artificial Intelligence in Electrical Engineering</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Source &#8211; https://assamtribune.com/</p>



<p><strong>Dr Sandip Bordoloi,&nbsp;</strong>Associate Professor, Department of Electrical Engineering, GIMT, Guwahati.</p>



<p>Electrical engineers work on a wide range of components, devices, machines, and systems, from tiny microchips to huge power station generators. Electrical systems, many a times, are so complex that they require expert systems to monitor and supervise them. Such supervisory systems may comprise high-end computers that use complex algorithms and software to regulate the flow of electrical energy obtained from different sources to domestic and industrial consumers.</p>



<p>A modern expert system such as Artificial Intelligence can pave the way to leverage data for ‘data interpretation’ and ‘decision-making’. The application of Artificial Intelligence technology on power systems is an active area of research and significant success has been achieved in this area to date. So, what is Artificial Intelligence and how can it be associated with Electrical Engineering? “Artificial Intelligence (AI) is a wide-ranging branch of computer science concerned with building smart machines capable of performing tasks that typically require human intelligence”. Recent progress in areas like machine learning, big data analysis, and natural language processing has affected almost every area in academics, industry and business and, therefore, engineering is no exception. AI is the simulation of the process of data interaction of human thinking in a machine, so as to produce a smart machine, which can think like a human being to provide a problem, respond and deal with the problem<strong>.&nbsp;</strong>Machine learning and big data analysis can help leverage AI to build and optimise electrical systems by providing AI technology with new data inputs for interpretation and decision-making. In addition, harnessing AI’s potential may reveal chances of boosting system performance while addressing problems more efficiently.</p>



<p>AI is used to program machines to learn and mimic the actions of humans. These machines are able to learn with experience and perform human-like tasks. For years, researchers, engineers and scientists have been fascinated with the concept of how machines can be taught to replicate tasks ordinarily done by humans. Machines can now be fed with a huge amount of data to make them more ‘Artificially Intelligent’. The concept of AI is not new. Different forms of intelligent systems have been incorporated in Electrical Engineering for a long time, some of which are discussed below:</p>



<p><strong>Expert systems</strong>: An expert system (ES) is a software system that captures human expertise for supporting decision-making. These systems are useful for online operations in the control field because they incorporate symbolic and rule-based knowledge, in the form of if-then rules to solve problems. The expert system consists of knowledge base, database, reasoning machine, interpretation mechanism, knowledge acquisition and user interface.</p>



<p><strong>Fuzzy logic control systems: “</strong>Fuzzy logic is a basic control system that relies on the degrees of state of the input and the output depends on the state of the input and rate of change of this state”. The fuzzy control system uses a rule-based system for how machines will respond to inputs that account for a continuum of possible conditions, rather than straightforward binary rules.</p>
<p>The post <a href="https://www.aiuniverse.xyz/artificial-intelligence-in-electrical-engineering/">Artificial Intelligence in Electrical Engineering</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/artificial-intelligence-in-electrical-engineering/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
