SlideShare a Scribd company logo
Light</HTML>
list - ls [options] elements
clean - cl elements
delete - de [options] elements
delete - de [options] elements
DEMO
Dispatch Table
hash of references to executable code
Dispatch Table
my $dispatchTable = {
! a => &func_a,
! b => &func_b,
! q => sub { exit(0) },
};
while ( 1 ) {
! print "Press a key!n";
! chomp (my $input = <STDIN>);
! if (defined $dispatchTable->($input)) {
! ! $dispatchTable->{$input}->();
! }
}
Hash table
Get user input
reference to function argvs
Dispatch Table
my $myFunc = {
! s => &saveFile,
! de => &deletTag,
! cl => &cleanUp,
! ls => &listTags,
! q => sub { $root = $root->delete; exit(0) },
! DEFAULT => sub {print ("Command not found.n")}
};
HTML::TreeBuilder
Parser that builds a HTML syntax tree
http://search.cpan.org/~cjm/HTML-Tree-5.03/lib/HTML/TreeBuilder.pm
HTML::Tree
make parse trees out of
HTML source
HTML::TreeBuilder
builds the parse trees
HTML::Element
parse trees are made up of
element class objects
create tree object
HTML::TreeBuilder
#!/usr/bin/perl -w
use warnings FATAL => 'all';
use strict;
use HTML::TreeBuilder;
use Term::ANSIColor;
(@ARGV == 1) || exit print "Usage: [HTML file].n";
(-e $ARGV[0]) || exit print "Input file does not exist.n";
my $root = HTML::TreeBuilder->new;
$root->parse_file($ARGV[0]) || die "$!";
include module
html
head
title meta
body
p
h1,h2...div
p p
Perl & LWP
by Sean M. Burke
"Fetching web pages, Parsing HTML,
Writing Spiders, & More"
http://lwp.interglacial.com/index.html
Chapter 9
HTML Processing with Trees
Chapter 10
Modifying HTML with Trees
Light</HTML>
GitHub : LightHTML
https://github.com/Conrad-Lo/LightHTML

More Related Content

What's hot

week-14x
week-14xweek-14x
Nette framework (WebElement #27 lightning talk)
Nette framework (WebElement #27 lightning talk)Nette framework (WebElement #27 lightning talk)
Nette framework (WebElement #27 lightning talk)
Adam Štipák
 
wget.pl
wget.plwget.pl
Array menu
Array menuArray menu
Array menu
Sayantan Sur
 
Tips for using Firebird system tables
Tips for using Firebird system tablesTips for using Firebird system tables
Tips for using Firebird system tables
Mind The Firebird
 
PL/SQL Blocks
PL/SQL BlocksPL/SQL Blocks
PL/SQL Blocks
Anar Godjaev
 
An Elephant of a Different Colour: Hack
An Elephant of a Different Colour: HackAn Elephant of a Different Colour: Hack
An Elephant of a Different Colour: Hack
Vic Metcalfe
 
PHP object calisthenics
PHP object calisthenicsPHP object calisthenics
PHP object calisthenics
Giorgio Cefaro
 
Perl Fitxers i Directoris
Perl Fitxers i DirectorisPerl Fitxers i Directoris
Perl Fitxers i Directoris
frankiejol
 
array implementation
 array implementation array implementation
array implementation
Sathya Ds
 
Final ds record
Final ds recordFinal ds record
Final ds record
Ganisius Ganish
 
Migrare da symfony 1 a Symfony2
 Migrare da symfony 1 a Symfony2  Migrare da symfony 1 a Symfony2
Migrare da symfony 1 a Symfony2
Massimiliano Arione
 
Password.php
Password.phpPassword.php
Node.js - Demnächst auf einem Server in Ihrer Nähe
Node.js - Demnächst auf einem Server in Ihrer NäheNode.js - Demnächst auf einem Server in Ihrer Nähe
Node.js - Demnächst auf einem Server in Ihrer Nähe
Ralph Winzinger
 
C program to implement linked list using array abstract data type
C program to implement linked list using array abstract data typeC program to implement linked list using array abstract data type
C program to implement linked list using array abstract data type
loyola ICAM college of engineering and technology
 
Codigos
CodigosCodigos
Codigos
Manuel Valero
 
20191116 custom operators in swift
20191116 custom operators in swift20191116 custom operators in swift
20191116 custom operators in swift
Chiwon Song
 
8.1
8.18.1
Data structure output 1
Data structure output 1Data structure output 1
Data structure output 1
Balaji Thala
 
Array imp of list
Array imp of listArray imp of list
Array imp of list
Elavarasi K
 

What's hot (20)

week-14x
week-14xweek-14x
week-14x
 
Nette framework (WebElement #27 lightning talk)
Nette framework (WebElement #27 lightning talk)Nette framework (WebElement #27 lightning talk)
Nette framework (WebElement #27 lightning talk)
 
wget.pl
wget.plwget.pl
wget.pl
 
Array menu
Array menuArray menu
Array menu
 
Tips for using Firebird system tables
Tips for using Firebird system tablesTips for using Firebird system tables
Tips for using Firebird system tables
 
PL/SQL Blocks
PL/SQL BlocksPL/SQL Blocks
PL/SQL Blocks
 
An Elephant of a Different Colour: Hack
An Elephant of a Different Colour: HackAn Elephant of a Different Colour: Hack
An Elephant of a Different Colour: Hack
 
PHP object calisthenics
PHP object calisthenicsPHP object calisthenics
PHP object calisthenics
 
Perl Fitxers i Directoris
Perl Fitxers i DirectorisPerl Fitxers i Directoris
Perl Fitxers i Directoris
 
array implementation
 array implementation array implementation
array implementation
 
Final ds record
Final ds recordFinal ds record
Final ds record
 
Migrare da symfony 1 a Symfony2
 Migrare da symfony 1 a Symfony2  Migrare da symfony 1 a Symfony2
Migrare da symfony 1 a Symfony2
 
Password.php
Password.phpPassword.php
Password.php
 
Node.js - Demnächst auf einem Server in Ihrer Nähe
Node.js - Demnächst auf einem Server in Ihrer NäheNode.js - Demnächst auf einem Server in Ihrer Nähe
Node.js - Demnächst auf einem Server in Ihrer Nähe
 
C program to implement linked list using array abstract data type
C program to implement linked list using array abstract data typeC program to implement linked list using array abstract data type
C program to implement linked list using array abstract data type
 
Codigos
CodigosCodigos
Codigos
 
20191116 custom operators in swift
20191116 custom operators in swift20191116 custom operators in swift
20191116 custom operators in swift
 
8.1
8.18.1
8.1
 
Data structure output 1
Data structure output 1Data structure output 1
Data structure output 1
 
Array imp of list
Array imp of listArray imp of list
Array imp of list
 

Viewers also liked

210140010 강민지 12주차 수시과제
210140010 강민지 12주차 수시과제210140010 강민지 12주차 수시과제
210140010 강민지 12주차 수시과제Minji Kang
 
소셜매니저 3차미션(130602)
소셜매니저  3차미션(130602)소셜매니저  3차미션(130602)
소셜매니저 3차미션(130602)Hwa Yeon Park
 
Clothes
ClothesClothes
School Laws Protecting Students with Food Allergies
School Laws Protecting Students with Food AllergiesSchool Laws Protecting Students with Food Allergies
School Laws Protecting Students with Food Allergies
Lynda Mitchell
 
Asio4 all v2 instruction manual
Asio4 all v2 instruction manualAsio4 all v2 instruction manual
Asio4 all v2 instruction manual
Jonas Souza
 
76157598 pr-mihai-andrei-aldea-despre-colinde-și-colindat
76157598 pr-mihai-andrei-aldea-despre-colinde-și-colindat76157598 pr-mihai-andrei-aldea-despre-colinde-și-colindat
76157598 pr-mihai-andrei-aldea-despre-colinde-și-colindatRaluca Mihaela
 
Alex
AlexAlex
Alex (2)
Alex (2)Alex (2)
Hipertension portal
Hipertension portalHipertension portal
Hipertension portal
Liz Ruiz
 
都道府県の記念日等の一覧(第1版)
都道府県の記念日等の一覧(第1版)都道府県の記念日等の一覧(第1版)
都道府県の記念日等の一覧(第1版)
GXDXlab
 
A language for learning (thinking maps)
A language for learning (thinking maps)A language for learning (thinking maps)
A language for learning (thinking maps)
Sandra Herrera
 
Powerpoint taylor swift
Powerpoint taylor swiftPowerpoint taylor swift
Powerpoint taylor swift
Denissepaz13
 
Parenteral controlled release drug delivery system -by varsha phirke
Parenteral controlled release drug delivery system -by varsha phirkeParenteral controlled release drug delivery system -by varsha phirke
Parenteral controlled release drug delivery system -by varsha phirke
Varsha Phirke
 
Parenteral controlled release drug delivery system - by varsha phirke
Parenteral controlled release drug delivery system - by varsha phirkeParenteral controlled release drug delivery system - by varsha phirke
Parenteral controlled release drug delivery system - by varsha phirke
Varsha Phirke
 

Viewers also liked (15)

210140010 강민지 12주차 수시과제
210140010 강민지 12주차 수시과제210140010 강민지 12주차 수시과제
210140010 강민지 12주차 수시과제
 
소셜매니저 3차미션(130602)
소셜매니저  3차미션(130602)소셜매니저  3차미션(130602)
소셜매니저 3차미션(130602)
 
Clothes
ClothesClothes
Clothes
 
School Laws Protecting Students with Food Allergies
School Laws Protecting Students with Food AllergiesSchool Laws Protecting Students with Food Allergies
School Laws Protecting Students with Food Allergies
 
Asio4 all v2 instruction manual
Asio4 all v2 instruction manualAsio4 all v2 instruction manual
Asio4 all v2 instruction manual
 
76157598 pr-mihai-andrei-aldea-despre-colinde-și-colindat
76157598 pr-mihai-andrei-aldea-despre-colinde-și-colindat76157598 pr-mihai-andrei-aldea-despre-colinde-și-colindat
76157598 pr-mihai-andrei-aldea-despre-colinde-și-colindat
 
Alex
AlexAlex
Alex
 
Slideshare
SlideshareSlideshare
Slideshare
 
Alex (2)
Alex (2)Alex (2)
Alex (2)
 
Hipertension portal
Hipertension portalHipertension portal
Hipertension portal
 
都道府県の記念日等の一覧(第1版)
都道府県の記念日等の一覧(第1版)都道府県の記念日等の一覧(第1版)
都道府県の記念日等の一覧(第1版)
 
A language for learning (thinking maps)
A language for learning (thinking maps)A language for learning (thinking maps)
A language for learning (thinking maps)
 
Powerpoint taylor swift
Powerpoint taylor swiftPowerpoint taylor swift
Powerpoint taylor swift
 
Parenteral controlled release drug delivery system -by varsha phirke
Parenteral controlled release drug delivery system -by varsha phirkeParenteral controlled release drug delivery system -by varsha phirke
Parenteral controlled release drug delivery system -by varsha phirke
 
Parenteral controlled release drug delivery system - by varsha phirke
Parenteral controlled release drug delivery system - by varsha phirkeParenteral controlled release drug delivery system - by varsha phirke
Parenteral controlled release drug delivery system - by varsha phirke
 

Similar to COMP2021 Final Project - LightHTML

2014 database - course 2 - php
2014 database - course 2 - php2014 database - course 2 - php
2014 database - course 2 - php
Hung-yu Lin
 
My First Ruby
My First RubyMy First Ruby
My First Ruby
Murray Steele
 
Refactor like a boss
Refactor like a bossRefactor like a boss
Refactor like a boss
gsterndale
 
PHP POWERPOINT SLIDES
PHP POWERPOINT SLIDESPHP POWERPOINT SLIDES
PHP POWERPOINT SLIDES
Ismail Mukiibi
 
Data Structure in C Programming Language
Data Structure in C Programming LanguageData Structure in C Programming Language
Data Structure in C Programming Language
Arkadeep Dey
 
Crafting Custom Interfaces with Sub::Exporter
Crafting Custom Interfaces with Sub::ExporterCrafting Custom Interfaces with Sub::Exporter
Crafting Custom Interfaces with Sub::Exporter
Ricardo Signes
 
Php 101: PDO
Php 101: PDOPhp 101: PDO
Php 101: PDO
Jeremy Kendall
 
Introduzione JQuery
Introduzione JQueryIntroduzione JQuery
Introduzione JQuery
orestJump
 
C programming array & shorting
C  programming array & shortingC  programming array & shorting
C programming array & shorting
argusacademy
 
Single linked list
Single linked listSingle linked list
Single linked list
Sayantan Sur
 
Elixir in a nutshell - Fundamental Concepts
Elixir in a nutshell - Fundamental ConceptsElixir in a nutshell - Fundamental Concepts
Elixir in a nutshell - Fundamental Concepts
Héla Ben Khalfallah
 
Php tips-and-tricks4128
Php tips-and-tricks4128Php tips-and-tricks4128
Php tips-and-tricks4128
PrinceGuru MS
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
kramsri
 
FP in scalaで鍛える関数型脳
FP in scalaで鍛える関数型脳FP in scalaで鍛える関数型脳
FP in scalaで鍛える関数型脳
Yuri Inoue
 
perl usage at database applications
perl usage at database applicationsperl usage at database applications
perl usage at database applications
Joe Jiang
 
Data Structure using C
Data Structure using CData Structure using C
Data Structure using C
Bilal Mirza
 
PHP tips and tricks
PHP tips and tricks PHP tips and tricks
PHP tips and tricks
Damien Seguy
 
Ds
DsDs
Template Haskell とか
Template Haskell とかTemplate Haskell とか
Template Haskell とか
Hiromi Ishii
 
DBIx-DataModel v2.0 in detail
DBIx-DataModel v2.0 in detail DBIx-DataModel v2.0 in detail
DBIx-DataModel v2.0 in detail
Laurent Dami
 

Similar to COMP2021 Final Project - LightHTML (20)

2014 database - course 2 - php
2014 database - course 2 - php2014 database - course 2 - php
2014 database - course 2 - php
 
My First Ruby
My First RubyMy First Ruby
My First Ruby
 
Refactor like a boss
Refactor like a bossRefactor like a boss
Refactor like a boss
 
PHP POWERPOINT SLIDES
PHP POWERPOINT SLIDESPHP POWERPOINT SLIDES
PHP POWERPOINT SLIDES
 
Data Structure in C Programming Language
Data Structure in C Programming LanguageData Structure in C Programming Language
Data Structure in C Programming Language
 
Crafting Custom Interfaces with Sub::Exporter
Crafting Custom Interfaces with Sub::ExporterCrafting Custom Interfaces with Sub::Exporter
Crafting Custom Interfaces with Sub::Exporter
 
Php 101: PDO
Php 101: PDOPhp 101: PDO
Php 101: PDO
 
Introduzione JQuery
Introduzione JQueryIntroduzione JQuery
Introduzione JQuery
 
C programming array & shorting
C  programming array & shortingC  programming array & shorting
C programming array & shorting
 
Single linked list
Single linked listSingle linked list
Single linked list
 
Elixir in a nutshell - Fundamental Concepts
Elixir in a nutshell - Fundamental ConceptsElixir in a nutshell - Fundamental Concepts
Elixir in a nutshell - Fundamental Concepts
 
Php tips-and-tricks4128
Php tips-and-tricks4128Php tips-and-tricks4128
Php tips-and-tricks4128
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
 
FP in scalaで鍛える関数型脳
FP in scalaで鍛える関数型脳FP in scalaで鍛える関数型脳
FP in scalaで鍛える関数型脳
 
perl usage at database applications
perl usage at database applicationsperl usage at database applications
perl usage at database applications
 
Data Structure using C
Data Structure using CData Structure using C
Data Structure using C
 
PHP tips and tricks
PHP tips and tricks PHP tips and tricks
PHP tips and tricks
 
Ds
DsDs
Ds
 
Template Haskell とか
Template Haskell とかTemplate Haskell とか
Template Haskell とか
 
DBIx-DataModel v2.0 in detail
DBIx-DataModel v2.0 in detail DBIx-DataModel v2.0 in detail
DBIx-DataModel v2.0 in detail
 

Recently uploaded

Operating System Used by Users in day-to-day life.pptx
Operating System Used by Users in day-to-day life.pptxOperating System Used by Users in day-to-day life.pptx
Operating System Used by Users in day-to-day life.pptx
Pravash Chandra Das
 
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdfNunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
flufftailshop
 
Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
Zilliz
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
kumardaparthi1024
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
akankshawande
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
saastr
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
panagenda
 
Letter and Document Automation for Bonterra Impact Management (fka Social Sol...
Letter and Document Automation for Bonterra Impact Management (fka Social Sol...Letter and Document Automation for Bonterra Impact Management (fka Social Sol...
Letter and Document Automation for Bonterra Impact Management (fka Social Sol...
Jeffrey Haguewood
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
Ivanti
 
AWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptxAWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptx
HarisZaheer8
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
DanBrown980551
 
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Tatiana Kojar
 
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - HiikeSystem Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
Hiike
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
Jakub Marek
 
A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024
Intelisync
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Wask
 
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdfHow to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
Chart Kalyan
 

Recently uploaded (20)

Operating System Used by Users in day-to-day life.pptx
Operating System Used by Users in day-to-day life.pptxOperating System Used by Users in day-to-day life.pptx
Operating System Used by Users in day-to-day life.pptx
 
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdfNunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
 
Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
 
Letter and Document Automation for Bonterra Impact Management (fka Social Sol...
Letter and Document Automation for Bonterra Impact Management (fka Social Sol...Letter and Document Automation for Bonterra Impact Management (fka Social Sol...
Letter and Document Automation for Bonterra Impact Management (fka Social Sol...
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
 
AWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptxAWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptx
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
 
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
 
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - HiikeSystem Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
 
A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
 
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdfHow to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
 

COMP2021 Final Project - LightHTML