Skip to content

Commit

Permalink
Added week 5-7 Notes
Browse files Browse the repository at this point in the history
Added week 5-7 Notes
  • Loading branch information
madhurimarawat authored Dec 5, 2024
1 parent bda4834 commit 30efdb3
Show file tree
Hide file tree
Showing 23 changed files with 191 additions and 0 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,191 @@
<!--
Author: Madhurima Rawat
Date: 21 November 2024
Brief: This table provides a comparison of different XaaS (Anything as a Service) models, including PaaS, SaaS, IaaS, and DaaS.
It outlines their key properties such as full form, definition, examples, purposes, features, user roles, customization,
real-life examples, and market share. This comparison aims to help users understand the differences and use cases for each service model.
Additional Details:
- Color Palette: The table uses a pastel color scheme with alternating shades such as coral, cyan, lavender, and light teal
to ensure the content is visually appealing and easy to follow.
- Emoji Usage: Each column header is paired with a relevant emoji (e.g., 🏗️ for PaaS, ☁️ for SaaS, 🖥️ for IaaS, 📊 for DaaS),
enhancing the table's engagement and accessibility.
- Design: The alternating row colors make the table easy to read, with highlighted header cells for clear differentiation.
The design is simple and effective, ensuring that the information is presented in a digestible format.
- Purpose: The goal of this table is to provide a quick and insightful comparison of the four major XaaS models, which are
widely used in cloud computing. It aims to help businesses and individuals make informed decisions on which service model suits
their needs based on specific criteria like user role, features, and customization.
-->


<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XaaS Comparison Table</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f7f7ff;
margin: 20px;
color: #333;
text-align: center;
}

h1 {
color: #FF6347;
}

table {
width: 100%;
border-collapse: collapse;
font-family: Arial, sans-serif;
}

th,
td {
padding: 12px;
border: 1px solid #ccc;
}

th {
background-color: #FF6347;
color: #fff;
}

tr:nth-child(2) th,
tr:nth-child(2) td {
background-color: #ffe4e1;
}

tr:nth-child(3) th,
tr:nth-child(3) td {
background-color: #e6e6fa;
}

tr:nth-child(4) th,
tr:nth-child(4) td {
background-color: #e0ffff;
}

tr:nth-child(5) th,
tr:nth-child(5) td {
background-color: #ffebcd;
}

tr:nth-child(6) th,
tr:nth-child(6) td {
background-color: #ffcccb;
}

tr:nth-child(7) th,
tr:nth-child(7) td {
background-color: #e0f2f1;
}

tr:nth-child(8) th,
tr:nth-child(8) td {
background-color: #fafad2;
}

tr:nth-child(9) th,
tr:nth-child(9) td {
background-color: #d0f0c0;
}

td:first-child {
font-weight: bold;
}

tr:last-child th,
tr:last-child td {
background-color: #FFFEA3;
}
</style>
</head>

<body>
<h1>Service Models Comparison 🌐</h1>
<table>
<tr>
<th>Properties 📜</th>
<th>PaaS 🏗️</th>
<th>SaaS ☁️</th>
<th>IaaS 🖥️</th>
<th>DaaS 📊</th>
</tr>
<tr>
<td>Full Form 🔤</td>
<td>Platform as a Service</td>
<td>Software as a Service</td>
<td>Infrastructure as a Service</td>
<td>Data as a Service</td>
</tr>
<tr>
<td>Definition 📖</td>
<td>Platform for developers to build apps</td>
<td>Ready-to-use software hosted on the cloud</td>
<td>Virtualized computing resources</td>
<td>Data delivered as a service</td>
</tr>
<tr>
<td>Examples 📚</td>
<td>Heroku, Google App Engine</td>
<td>Google Workspace, Dropbox</td>
<td>AWS EC2, Microsoft Azure</td>
<td>Tableau, Snowflake</td>
</tr>
<tr>
<td>Purpose 🎯</td>
<td>App development and deployment</td>
<td>User-friendly productivity tools</td>
<td>Flexible infrastructure for any workload</td>
<td>Empowering data analysis and insights</td>
</tr>
<tr>
<td>Key Features 🔑</td>
<td>Middleware, APIs, scalability</td>
<td>Accessibility, ease of use</td>
<td>Scalability, cost-effectiveness</td>
<td>Real-time data delivery</td>
</tr>
<tr>
<td>User Role 🧑‍💻</td>
<td>Developers</td>
<td>End users</td>
<td>IT teams</td>
<td>Data analysts</td>
</tr>
<tr>
<td>Customization ✨</td>
<td>High</td>
<td>Low</td>
<td>Medium</td>
<td>Medium</td>
</tr>
<tr>
<td>Real-Life Examples 🌟</td>
<td>Salesforce Lightning, AWS Elastic Beanstalk</td>
<td>Slack, Trello, Zoom</td>
<td>Google Compute Engine, DigitalOcean</td>
<td>Amazon Redshift, BigQuery</td>
</tr>
<tr>
<td>Market Share % 📊</td>
<td>19%</td>
<td>47%</td>
<td>29%</td>
<td>5%</td>
</tr>
</table>
</body>

<br>
<footer>
<p style="color: #FF6347; font-size: 20px;"><b>&copy; 2024 Madhurima Rawat. All rights reserved.</b></p>
</footer>

</html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 30efdb3

Please sign in to comment.