SlideShare a Scribd company logo
1 of 108
Download to read offline
🍿 Unlocking Real-Time
Web Applications
🏆 The Challenge
Let’s meet
Rodrigo
Rodrigo works on the frontend side of
the complex e-commerce platform.
Backend team just deployed new feature:
the new API endpoint which allows
to check status of the order.
Backend team just deployed new feature:
the new API endpoint which allows
to check status of the order.
Today is Friday, and there is
urgent business requirement
to display order status on the frontend side.
Rodrigo was working on the new feature a whole day
and at 4 PM deployed changes to production.
Rodrigo was working on the new feature a whole day
and at 4 PM deployed changes to production.
Deploy was successful and Rodrigo can
go home or 🍺
Rodrigo was working on the new feature a whole day
and at 4 PM deployed changes to production.
Deploy was successful and Rodrigo can
go home or 🍺
Frontend Backend
Request
Response
Frontend
Request
Response
Backend
🤯 The Problem
Backend is not responding immediately the
status of the order because there are plenty of
operations to process.
Correct status can be retrieved
after few milliseconds.
👨💻 Rodrigo’s Solution
💩
What could
go wrong?
What could
go wrong?
We’ll
refactor
oneway
What could
go wrong?
We’ll
refactor
oneway
#yolodevelopment
Backend is not responding immediately the
status of the order because there are plenty of
operations to process.
Backend is not responding immediately the
status of the order because there are plenty of
operations to process.
Unfortunately there was a bug in the infrastructure.
During the weekend tra
ffi
c increased and backend
wasn’t able respond with valid status.
Frontend
Request
Response
Backend
Order Status Microservice
😭 Monday
Customers who created new orders didn’t get status
Moreover there were thousands of requests to
backend in users’ browsers tabs
¡Hola Amigos!
@PatrykOmiotek
Use the right tools
for speci
fi
c problems…
…to create
elegant solutions
🔓 Unlock Realtime-apps
🙋 What are Realtime apps?
This is done using a variety of technologies, such
as WebSockets, server-sent events,
and long polling.
Real-time web applications are applications that
allow users to receive updates from the server
without having to manually refresh the page.
🧩 Use cases
1. Chat and messages
2. Social media updates
3. News feeds
4. Noti
fi
cations and alerts
5. Collaborative editing tools
6. Stock tickers
7. Real-time gaming
😏 Standard way
Traditionally, a web page has to send a request to the server to
receive new data; that is, the page requests data
from the server.
With server-sent events, it's possible for a server to send new
data to a web page at any time, by pushing messages
to the web page.
These incoming messages can be treated as Events + data
inside the web page.
🎯 What are Server-Sent Events?
Let’s talk about what SSE is not
🥊 WebSockets vs SSE
🥊 WebSockets vs SSE
Eo eo i mem z Freddy
Eo eo i mem z Freddy
Server
Eo eo i mem z Freddy
Server
Eeeooo
Eo eo i mem z Freddy
Server
Eeeooo
Client
Eo eo i mem z Freddy
Server
Eeeooo
Client
Client
Eo eo i mem z Freddy
Server
Eeeooo
Client
Client
Client
Eo eo i mem z Freddy
Server
Eeeooo
Client
Client
Client
Client
Eo eo i mem z Freddy
Server
Eeeooo
Client
Client
Client
Client
Eeeooo
Eo eo i mem z Freddy
Server
Client
Client
Client
Client
Eeeooo
Eeeooo
Eeeooo
Eeeooo
Web Sockets
Eeeooo
Eo eo i mem z Freddy
Server
Client
Client
Client
Client
🤐
🤐
🤐 Eeeooo
🤐
SSE
Eo eo i mem z Freddy
Server
Eeeooo
Client
Client
Client
Client
SSE
Feature WebSockets SSE
Communication channel Full-duplex One-way
Protocol TCP HTTP
Bidirectional communication Yes No
Binary data support Yes No
Latency Low Medium
Scalability High High
Complexity Medium Low
Feature Long polling SSE
Communication channel Bidirectional One-way
Protocol HTTP HTTP
Bidirectional communication Yes No
Binary data support Yes No
Latency Medium Low
Scalability Medium High
Complexity Low Medium
Feature Web Sockets Long polling SSE
Communication channel Full-duplex Bidirectional One-way
Protocol TCP HTTP HTTP
Bidirectional communication Yes Yes No
Binary data support Yes Yes No
Latency Low Medium Low
Scalability High Medium High
Complexity Medium Low Medium
🤓 OK, Show me the code!
Part 1/2
⌨ Server implementation
Part 2/2
🎨 Frontend implementation
🧵 EventSource
An EventSource instance opens
a persistent connection
to an HTTP server,
which sends events in text/event-stream format.
✅ SSE Advantages
• Simple to implement and understand
• Built on top of HTTP
• Error handling via auto-reconnect comes built-in
• Supported by all major browsers
• Scalable, as the server can send events to many
clients simultaneously.
❌ SSE Limitations
• One-way communication (server to client only).
• Not supported natively in all browsers (Microsoft Edge/IE v78
and earlier)
• When used over HTTP 1.1 there’s a limit of 6 open SSE
connections per browser, but when SSE is used over HTTP/2
the maximum number of simultaneous HTTP streams is
negotiated between the server and the client (defaults to 100)
• Overhead compared to WebSockets for certain scenarios
• No support for binary data (only UTF-8 encoded text)
🐞 Error Handling
and
Connection Management
Source: https://www.aklivity.io/post/a-primer-on-server-sent-events-sse
• Handling connection losses and re-establishing
connections.
• Listening to SSE error events in React.
🏃 Optimizations
and
Best Practices
• Throttling messages for performance
• Using a backoff strategy for reconnections
• Closing connections when not needed
▶ Other use cases
Let’s assume Rodrigo is building
AI image processing platform
Let’s assume Rodrigo is building
AI image processing platform
or Real-time noti
fi
cations
or Live news or sport scores.
or Collaborative tools (e.g., shared document editing).
Let’s assume Rodrigo is building
AI image processing platform
or Real-time noti
fi
cations
or Live news or sport scores.
or Collaborative tools (e.g., shared document editing).
because he wants to become
Señor AI Cloud Blockchain Developer ;)
🧮 When operation will complete?
🧮 When operation will complete?
🧮 When operation will complete?
🤷
👌 Tips
🙅 CORS
📖 Headers
🎸 Design, implement, refactor, repeat
✨ State manager
✨ State manager
👨💻 Code
🌈 Conclusion
You can catch me here:
🙏 Thank you
Plan na dziś
• Kodujemy bibliotekę komponentów
• MEWA (Modern and Ef
fi
cient Web Applications)

More Related Content

Similar to Unlocking Realtime Web Applications - 4Developers Katowice 2023

Web is the New Mobile: Building Progressive Web Apps - Erica Stanley - Codemo...
Web is the New Mobile: Building Progressive Web Apps - Erica Stanley - Codemo...Web is the New Mobile: Building Progressive Web Apps - Erica Stanley - Codemo...
Web is the New Mobile: Building Progressive Web Apps - Erica Stanley - Codemo...Codemotion
 
DEF CON 27 - BEN SADEGHIPOUR - owning the clout through ssrf and pdf generators
DEF CON 27 - BEN SADEGHIPOUR  - owning the clout through ssrf and pdf generatorsDEF CON 27 - BEN SADEGHIPOUR  - owning the clout through ssrf and pdf generators
DEF CON 27 - BEN SADEGHIPOUR - owning the clout through ssrf and pdf generatorsFelipe Prado
 
Understanding progressive enhancement - yuiconf2010
Understanding progressive enhancement - yuiconf2010Understanding progressive enhancement - yuiconf2010
Understanding progressive enhancement - yuiconf2010Christian Heilmann
 
GDD Japan 2009 - Designing OpenSocial Apps For Speed and Scale
GDD Japan 2009 - Designing OpenSocial Apps For Speed and ScaleGDD Japan 2009 - Designing OpenSocial Apps For Speed and Scale
GDD Japan 2009 - Designing OpenSocial Apps For Speed and ScalePatrick Chanezon
 
Proper Connections Development for Proper Domino Developers
Proper Connections Development for Proper Domino DevelopersProper Connections Development for Proper Domino Developers
Proper Connections Development for Proper Domino DevelopersMark Myers
 
O'Reilly webcast: Joshua Bixby on Mobile Performance Trends and Predictions
O'Reilly webcast: Joshua Bixby on Mobile Performance Trends and PredictionsO'Reilly webcast: Joshua Bixby on Mobile Performance Trends and Predictions
O'Reilly webcast: Joshua Bixby on Mobile Performance Trends and PredictionsStrangeloop
 
Progressive Web Apps for Education
Progressive Web Apps for EducationProgressive Web Apps for Education
Progressive Web Apps for EducationChris Love
 
Progressive Web Apps by Millicent Convento
Progressive Web Apps by Millicent ConventoProgressive Web Apps by Millicent Convento
Progressive Web Apps by Millicent ConventoDEVCON
 
Intro to WebSockets (in Java)
Intro to WebSockets (in Java)Intro to WebSockets (in Java)
Intro to WebSockets (in Java)osintegrators
 
Creative Automation with Galen Framework
Creative Automation with Galen FrameworkCreative Automation with Galen Framework
Creative Automation with Galen Framework'Ashmeet Sehgal'
 
Rethink Web Harvesting and Scraping
Rethink Web Harvesting and ScrapingRethink Web Harvesting and Scraping
Rethink Web Harvesting and Scrapingscrapeit
 
Junaid Saghir updated cv (3)
Junaid Saghir updated cv (3)Junaid Saghir updated cv (3)
Junaid Saghir updated cv (3)Junaid Saghir
 
Web Server VS Application Server Understanding The Differences.pdf
Web Server VS Application Server  Understanding The Differences.pdfWeb Server VS Application Server  Understanding The Differences.pdf
Web Server VS Application Server Understanding The Differences.pdfTemok IT Services
 

Similar to Unlocking Realtime Web Applications - 4Developers Katowice 2023 (20)

Web is the New Mobile: Building Progressive Web Apps - Erica Stanley - Codemo...
Web is the New Mobile: Building Progressive Web Apps - Erica Stanley - Codemo...Web is the New Mobile: Building Progressive Web Apps - Erica Stanley - Codemo...
Web is the New Mobile: Building Progressive Web Apps - Erica Stanley - Codemo...
 
DEF CON 27 - BEN SADEGHIPOUR - owning the clout through ssrf and pdf generators
DEF CON 27 - BEN SADEGHIPOUR  - owning the clout through ssrf and pdf generatorsDEF CON 27 - BEN SADEGHIPOUR  - owning the clout through ssrf and pdf generators
DEF CON 27 - BEN SADEGHIPOUR - owning the clout through ssrf and pdf generators
 
MYDATA
MYDATAMYDATA
MYDATA
 
Understanding progressive enhancement - yuiconf2010
Understanding progressive enhancement - yuiconf2010Understanding progressive enhancement - yuiconf2010
Understanding progressive enhancement - yuiconf2010
 
NodeJs vs PHP
NodeJs vs PHPNodeJs vs PHP
NodeJs vs PHP
 
GDD Japan 2009 - Designing OpenSocial Apps For Speed and Scale
GDD Japan 2009 - Designing OpenSocial Apps For Speed and ScaleGDD Japan 2009 - Designing OpenSocial Apps For Speed and Scale
GDD Japan 2009 - Designing OpenSocial Apps For Speed and Scale
 
Proper Connections Development for Proper Domino Developers
Proper Connections Development for Proper Domino DevelopersProper Connections Development for Proper Domino Developers
Proper Connections Development for Proper Domino Developers
 
O'Reilly webcast: Joshua Bixby on Mobile Performance Trends and Predictions
O'Reilly webcast: Joshua Bixby on Mobile Performance Trends and PredictionsO'Reilly webcast: Joshua Bixby on Mobile Performance Trends and Predictions
O'Reilly webcast: Joshua Bixby on Mobile Performance Trends and Predictions
 
NodeJS and what is actually does
NodeJS and what is actually doesNodeJS and what is actually does
NodeJS and what is actually does
 
Selenium for Jobseekers
Selenium for JobseekersSelenium for Jobseekers
Selenium for Jobseekers
 
Progressive Web Apps for Education
Progressive Web Apps for EducationProgressive Web Apps for Education
Progressive Web Apps for Education
 
myresume_latest
myresume_latestmyresume_latest
myresume_latest
 
Progressive Web Apps by Millicent Convento
Progressive Web Apps by Millicent ConventoProgressive Web Apps by Millicent Convento
Progressive Web Apps by Millicent Convento
 
Intro to WebSockets (in Java)
Intro to WebSockets (in Java)Intro to WebSockets (in Java)
Intro to WebSockets (in Java)
 
Webhooks
WebhooksWebhooks
Webhooks
 
Creative Automation with Galen Framework
Creative Automation with Galen FrameworkCreative Automation with Galen Framework
Creative Automation with Galen Framework
 
Rethink Web Harvesting and Scraping
Rethink Web Harvesting and ScrapingRethink Web Harvesting and Scraping
Rethink Web Harvesting and Scraping
 
Junaid Saghir updated cv (3)
Junaid Saghir updated cv (3)Junaid Saghir updated cv (3)
Junaid Saghir updated cv (3)
 
Web Server VS Application Server Understanding The Differences.pdf
Web Server VS Application Server  Understanding The Differences.pdfWeb Server VS Application Server  Understanding The Differences.pdf
Web Server VS Application Server Understanding The Differences.pdf
 
Chat Done Right
Chat Done Right Chat Done Right
Chat Done Right
 

More from Patryk Omiotek

TensorFlow for beginners
TensorFlow for beginnersTensorFlow for beginners
TensorFlow for beginnersPatryk Omiotek
 
Web crawlers part-2-20161104
Web crawlers part-2-20161104Web crawlers part-2-20161104
Web crawlers part-2-20161104Patryk Omiotek
 
How the Internet of Things will change our lives?
How the Internet of Things will change our lives?How the Internet of Things will change our lives?
How the Internet of Things will change our lives?Patryk Omiotek
 
How to build own IoT Platform
How to build own IoT PlatformHow to build own IoT Platform
How to build own IoT PlatformPatryk Omiotek
 

More from Patryk Omiotek (6)

TensorFlow for beginners
TensorFlow for beginnersTensorFlow for beginners
TensorFlow for beginners
 
Docker how to
Docker how toDocker how to
Docker how to
 
Web crawlers part-2-20161104
Web crawlers part-2-20161104Web crawlers part-2-20161104
Web crawlers part-2-20161104
 
How the Internet of Things will change our lives?
How the Internet of Things will change our lives?How the Internet of Things will change our lives?
How the Internet of Things will change our lives?
 
How to build own IoT Platform
How to build own IoT PlatformHow to build own IoT Platform
How to build own IoT Platform
 
WordpUp Lublin #1
WordpUp Lublin #1WordpUp Lublin #1
WordpUp Lublin #1
 

Recently uploaded

Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTINGMANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTINGSIVASHANKAR N
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesPrabhanshu Chaturvedi
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 

Recently uploaded (20)

Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTINGMANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and Properties
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 

Unlocking Realtime Web Applications - 4Developers Katowice 2023