Search Results for: html
-
-
-
-
-
-
-
How to design a website from beginner to advanced using some free websites and Youtube Channels?
For every developer who wants to learn from basic to advanced you should follow some techniques and website. that will help you to grow your knowledge and your understanding. so for this you should follow these sites. whenever i want to learn new things. i follow these below sites and useful tools to design and…
-
List of Top Site Reliability Engineering(SRE) Implementation Tools in 2020!!!
First lets undererstand what is SRE AKA Site Reliability Engineering? Now , lets understand what is Difference between DevOps and SRE? Monitoring in Site Reliability Engineering (SRE) Monitoring is one of the primary means by which service owners keep track of a system’s health and availability. As such, monitoring strategy should be constructed thoughtfully. A…
-
What is SRE (site reliability engineering)?
SRE(site reliability engineering) was first coined in 2003 at Google as a drive towards reliability. As Google asked their software engineers to prioritize reliability as they collectively worked towards efficiency and scalability goals, new approaches were needed to solve the underlying weaknesses in traditional paradigms. Over time, these approaches coalesced into Site Reliability Engineering as…
-
What is DevOps Vs SRE (site reliability engineering)?
https://www.devopsschool.com/certification/sre-certified-professional-srecp.html
-
How to Handle Long processing asynchronous request through Queue using database in Laravel?
in this blog you are going to see that whenever you want to send email to multiple user then your view page takes a lot of time. so how can you decrease the load time and send email in background. first of all you should create a folder Jobs under app and add two files…
-
-
-
Terraform interpolation explained with example programs
What is interpolation? Interpolation is the estimation of a value or set of values based on their context. In other words, Interpolation is a useful mathematical and statistical tool used to estimate values between two points. What is Terraform interpolation? In Terraform, string interpolation (or variable interpolation, variable substitution, or variable expansion) is the process…
-
Terraform taint and untaint explained with example programs and tutorials
What is meaning of taint? a trace of a bad or undesirable substance or quality. What is tainted? spoiled; damaged in quality, taste, or value: What is Terraform taint? The terraform taint command manually marks a Terraform-managed resource as tainted, forcing it to be destroyed and recreated on the next apply. Use case of Terraform…
-
-
Know more about Master In DevOps Engineering(MDE) – First Session!!!
This “Masters in DevOps Engineering (MDE)” Program is the only course in the WORLD which can make you an expert and proficient Architect in DevOps, DevSecOps and Site Reliability Engineering (SRE) principles together. Our curriculum has been determined by comprehensive research on 10000+ job descriptions across the globe and epitome of 200+ years of industry…
-
-
-
Top 5 Code Coverage Tools | Best Test Coverage Tools
What is Code Coverage?Code Coverage is a software which is used by the programmer.Code Coverage are mainly used for measuring the Lines, Blocks and Arc which they have added in their programms. It means they check the number of line they have coded that are working or not, how it shows the function and few…
-
How to deploy Laravel application on AWS EC2
In the first step you should login to your putty using user name and password. After Login you should run command sudo -s for root access then you should change your directory to Xampp htdocs location so for that you should type command cd /opt/lampp/htdocs Now you should clone your project directory from bitbucket using…
-
-
jQuery Syntax!
The jQuery syntax is tailor-made for selecting HTML elements and performing some action on the element(s). Basic syntax is: $(selector).action() A $ sign to define/access jQuery A (selector) to “query (or find)” HTML elements A jQuery action() to be performed on the element(s) Examples: $(this).hide() – hides the current element. $(“p”).hide() – hides all <p> elements. $(“.test”).hide() – hides all elements with class=”test”. $(“#test”).hide() –…
-
What is jQuery? A Brief Look!
jQuery is a fast and concise JavaScript Library created by John Resig in 2006 with a nice motto: Write less, do more. jQuery simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is a JavaScript toolkit designed to simplify various tasks by writing less code. Here is the list of…
-
Objects in java-script explained!
Objects are used to store keyed collections of various data and more complex entities. In JavaScript, objects penetrate almost every aspect of the language. So we must understand them first before going in-depth anywhere else. An object can be created with figure brackets {…} with an optional list of properties. A property is a “key: value” pair, where key is…
-
Searching, Column Sorting with Pagination using Ajax in Laravel 5.5
Step 1 : Instal Laravel Application If you have not install Laravel application, then you have to open command prompt, and run composert command, and then after you can run below command this command will download Laravel application, and install at define destination. Step 2 : Bootstrap 4 upgrade in laravel 5.5 Laravel 5.5 has…
-
What is JavaScript – All You Need To Know About JavaScript
What is JavaScript? ” JavaScript is a high level, interpreted, programming language used to make web pages more interactive. “ JavaScript is a scripting language used to create and control dynamic website content, i.e. anything that moves, refreshes, or otherwise changes on your screen without requiring you to manually reload a web page. Features like: animated graphics photo…
-
How to generate class diagrams, UML diagrams and architect diagrams for php programs/projects?
There are many options avaialble which may help you for generating class diagrams, UML diagrams and architect diagrams for php programs/projects? GraphMLThis class can be used to generate UML diagrams from PHP code using GraphML. It traverses a given directory to locate and parse PHP files. It scans the files for classes and their variables…
-
npm error: stack Error: EACCES: permission denied
Error Solutions:
-
What is Open Graph Protocol?
Open Graph was first introduced by Facebook in 2010. It promotes integration between Facebook and other website. By integrating Open Graph meta tags into your page’s content, you can identify which elements of your page you want to show when someone share’s your page. For example, you could use the og:image tag to specify what…
